/* GLYPH 风格库 - 展开排版 */
body {
    background-color: #f5f7ff;
    color: #1e293b;
    margin: 0;
    font-size: 14px;
}
.main-stage {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.top-deck {
    height: 64px;
    background: #fff;
    border-bottom: 2px solid #6366f1;
    position: sticky;
    top: 0;
    z-index: 2000;
}
.deck-inner {
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: #6366f1;
}
.card-unit {
    background: #fff;
    border: 1px solid #e0e7ff;
    border-radius: 0px;
    margin-bottom: 20px;
    box-shadow: none;
    overflow: hidden;
}
.card-head {
    padding: 15px 20px;
    background: #fcfcfc;
    border-bottom: 1px solid #e0e7ff;
    font-weight: 800;
    display: flex;
    align-items: center;
}
.card-head::before {
    content: "";
    width: 3px;
    height: 14px;
    background: #6366f1;
    margin-right: 12px;
}
.ann-bar {
    background: #fff;
    border: 1px solid #e0e7ff;
    border-left: 5px solid #6366f1;
    padding: 16px 20px;
    border-radius: 0px;
    margin-bottom: 30px;
}
/* Ribbon 列表核心样式 */
.stripe-item {
    display: flex;
    align-items: center;
    padding: 22px 25px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: 0.3s;
}
.stripe-item:hover {
    background: #f8fafc;
    transform: translateX(6px);
}
.thumb-vessel {
    width: 48px; height: 48px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 20px;
}
.thumb-vessel img {
    width: 100%; height: 100%; object-fit: cover;
}
.info-nexus { flex: 1; }
.info-nexus h3 { margin: 0 0 5px; color: #1e293b; font-size: 16px; }
.info-nexus span { font-size: 12px; color: #94a3b8; }
.worth-val {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ef4444;
    margin: 0 30px;
}
.action-btn {
    background: #6366f1;
    color: #fff;
    padding: 7px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}
/* 详情页双栏设计 */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-top: 20px;
}
.buy-card {
    background: #fff;
    border: 1px solid #e0e7ff;
    border-radius: 0px;
    padding: 30px;
    position: sticky;
    top: 100px;
}
.input-portal {
    width: 100%;
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0 15px;
    margin: 10px 0 20px;
    box-sizing: border-box;
}
.footer-nexus {
    padding: 60px 0;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid #e0e7ff;
    margin-top: 100px;
}
@media (max-width: 850px) {
    .detail-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}