/* PAGE HERO */
.page-hero {
    background: var(--dark);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(184, 41, 47, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 60% at 10% 80%, rgba(201, 168, 76, 0.07) 0%, transparent 50%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: var(--gold-light);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-size: clamp(26px, 4vw, 42px);
    color: #fff;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    line-height: 1.85;
}

.hero-stats-row {
    display: flex;
    gap: 28px;
    flex-shrink: 0;
}

.hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    font-family: 'Noto Serif SC', serif;
}

.hero-stat strong em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* CATEGORY TABS */
.cat-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 64px;
    z-index: 90;
}

.cat-inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-inner::-webkit-scrollbar {
    display: none;
}

.cat-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    border: none;
    background: none;
    font-family: inherit;
}

.cat-tab i {
    font-size: 13px;
}

.cat-tab:hover {
    color: var(--primary);
}

.cat-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.cat-tab .count {
    font-size: 10px;
    background: rgba(184, 41, 47, 0.1);
    color: var(--primary);
    padding: 1px 7px;
    border-radius: 10px;
}

.cat-tab.active .count {
    background: var(--primary);
    color: #fff;
}

/* MAIN LAYOUT */
.main-layout {
    padding: 44px 0 70px;
    display: grid;
    grid-template-columns:1fr 300px;
    gap: 32px;
    align-items: start;
}

/* ---- FEATURED ---- */
.featured-card {
    display: grid;
    grid-template-columns:1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 28px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.featured-card:hover {
    box-shadow: var(--shadow-deep);
    transform: translateY(-3px);
}

.featured-img {
    aspect-ratio: auto;
    min-height: 240px;
    background: linear-gradient(140deg, var(--dark-2), var(--mid));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 40%, rgba(184, 41, 47, 0.3) 0%, transparent 65%);
}

.featured-img i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.feat-cat-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
}

.feat-hot {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.art-meta i {
    color: var(--primary);
}

.featured-body h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.45;
}

.featured-body h2 a:hover {
    color: var(--primary);
}

.featured-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9;
    flex: 1;
}

.art-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Noto Serif SC', serif;
    flex-shrink: 0;
}

.author-row span {
    font-size: 12px;
    color: var(--text-muted);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 8px;
}

/* ---- ARTICLE LIST ---- */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-title h3 {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title a {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-title a:hover {
    color: var(--primary);
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.article-row {
    display: flex;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 18px;
    transition: all 0.25s;
    align-items: flex-start;
}

.article-row:hover {
    box-shadow: var(--shadow);
    transform: translateX(3px);
}

.art-thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--dark-2), var(--mid));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.art-thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.art-thumb i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.15);
}

.art-thumb-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 40%, rgba(184, 41, 47, 0.2) 0%, transparent 70%);
}

.art-row-body {
    flex: 1;
    min-width: 0;
}

.art-row-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.cat-pill {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 10px;
}

.pill-guide {
    background: rgba(184, 41, 47, 0.08);
    color: var(--primary);
}

.pill-rate {
    background: rgba(201, 168, 76, 0.12);
    color: #a07820;
}

.pill-policy {
    background: rgba(66, 133, 244, 0.1);
    color: #2563eb;
}

.pill-tips {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.pill-abroad {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.art-row-body h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.45;
}

.art-row-body h4 a:hover {
    color: var(--primary);
}

.art-row-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 8px;
}

.art-row-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

.art-row-meta i {
    color: var(--primary);
    font-size: 10px;
}

/* ---- GRID 2-COL ---- */
.article-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.25s;
}

.article-card:hover {
    box-shadow: var(--shadow-deep);
    transform: translateY(-3px);
}

.card-img {
    aspect-ratio: 2.2;
    background: linear-gradient(135deg, var(--dark-2), var(--mid));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img i {
    font-size: 44px;
    color: rgba(255, 255, 255, 0.05);
}

.card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 40%, rgba(184, 41, 47, 0.2) 0%, transparent 65%);
}

.card-img .feat-cat-badge {
    bottom: 10px;
    left: 10px;
}

.card-body {
    padding: 18px;
}

.card-body h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
}

.card-body h4 a:hover {
    color: var(--primary);
}

.card-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-meta span {
    font-size: 11px;
    color: var(--text-muted);
}

.card-meta i {
    color: var(--primary);
    font-size: 10px;
}

/* ---- SIDEBAR ---- */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.side-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.side-header {
    padding: 16px 20px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-header i {
    color: var(--primary);
    font-size: 14px;
}

.side-header h4 {
    font-size: 14px;
    font-weight: 700;
}

.side-body {
    padding: 16px 20px;
}

/* Hot Articles */
.hot-list {
    list-style: none;
}

.hot-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}

.hot-item:last-child {
    border: none;
    padding-bottom: 0;
}

.hot-num {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

.hot-num.n1 {
    background: var(--primary);
    color: #fff;
}

.hot-num.n2 {
    background: var(--gold);
    color: var(--dark);
}

.hot-num.n3 {
    background: rgba(184, 41, 47, 0.12);
    color: var(--primary);
}

.hot-num.other {
    background: var(--light-bg);
    color: var(--text-muted);
}

.hot-text a {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    margin-bottom: 3px;
}

.hot-text a:hover {
    color: var(--primary);
}

.hot-text span {
    font-size: 11px;
    color: var(--text-muted);
}


/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.newsletter-box i {
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 12px;
    display: block;
}

.newsletter-box h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
    line-height: 1.7;
}

.nl-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nl-input input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: #fff;
    font-family: inherit;
    outline: none;
}

.nl-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.nl-input input:focus {
    border-color: rgba(201, 168, 76, 0.4);
}

.nl-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.nl-btn:hover {
    opacity: 0.9;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-inner p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-inner a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin-left: 16px;
}

.footer-inner a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .main-layout {
        grid-template-columns:1fr;
    }

    .sidebar {
        position: static;
    }

    .featured-card {
        grid-template-columns:1fr;
    }

    .featured-img {
        min-height: 180px;
    }
}

@media (max-width: 600px) {
    .article-grid {
        grid-template-columns:1fr;
    }

    .hero-stats-row {
        display: none;
    }

    .art-thumb {
        width: 64px;
        height: 64px;
    }
}


/* ARTICLE HERO */
.art-hero {
    background: var(--dark);
    padding: 56px 0 0;
    position: relative;
    overflow: hidden;
}

.art-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 80% 60%, rgba(184, 41, 47, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 5% 80%, rgba(201, 168, 76, 0.07) 0%, transparent 55%);
}

.art-hero-inner {
    position: relative;
    z-index: 1;
}

.art-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-cat {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
}

.hero-hot {
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.art-hero h1 {
    font-size: clamp(22px, 3.5vw, 40px);
    color: #fff;
    margin-bottom: 20px;
    max-width: 800px;
    font-weight: 900;
}

.art-hero-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.info-item i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* COVER IMAGE AREA */
.art-cover {
    margin-top: 36px;
    width: 100%;
    aspect-ratio: 2.8;
    background: linear-gradient(140deg, var(--dark-2) 0%, var(--mid) 60%, #3a1a1c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.art-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(184, 41, 47, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 45%);
}

.art-cover img {
    width: 100%;
    object-fit: contain;
}

.art-cover i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}

/* BODY LAYOUT */
.body-layout {
    padding: 48px 0 80px;
    display: grid;
    grid-template-columns:1fr 288px;
    gap: 36px;
    align-items: start;
}

/* ARTICLE CONTENT */
.art-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

/* PROGRESS BAR */
.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: width 0.1s linear;
}

/* PROSE */
.prose {
    padding: 32px 32px 36px;
}

.prose p {
    font-size: 15px;
    color: #3a2a26;
    line-height: 2;
    margin-bottom: 20px;
}

.prose h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.prose h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin: 28px 0 12px;
}

/* TAGS */
.art-tags {
    padding: 0 32px 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.art-tags span {
    font-size: 12px;
    color: var(--text-muted);
}

.tag-pill {
    font-size: 12px;
    padding: 4px 13px;
    border-radius: 20px;
    background: var(--light-bg);
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.tag-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* SHARE */
.art-share {
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.share-left {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-left i {
    color: var(--primary);
}

.share-btns {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.share-btn.wechat:hover {
    border-color: #07c160;
    color: #07c160;
}

.share-btn.weibo:hover {
    border-color: #e6162d;
    color: #e6162d;
}

/* RELATED */
.related-section {
    margin-top: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.related-header {
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-header i {
    color: var(--primary);
}

.related-header h4 {
    font-size: 14px;
    font-weight: 700;
}

.related-list {
    list-style: none;
}

.related-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.related-item:last-child {
    border: none;
}

.related-item:hover {
    background: var(--light-bg);
}

.rel-thumb {
    width: 58px;
    height: 43.5px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dark-2), var(--mid));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rel-thumb img{
    width: 100%;
}
.rel-thumb i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.15);
}

.rel-body a {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    line-height: 1.45;
}

.rel-body a:hover {
    color: var(--primary);
}

.rel-body span {
    font-size: 11px;
    color: var(--text-muted);
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 84px;
}

.side-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.side-header {
    padding: 15px 20px 13px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-header i {
    color: var(--primary);
    font-size: 14px;
}

.side-header h4 {
    font-size: 14px;
    font-weight: 700;
}

.side-body {
    padding: 16px 20px;
}

/* HOT LIST */
.hot-list {
    list-style: none;
}

.hot-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.hot-item:last-child {
    border: none;
    padding-bottom: 0;
}

.hot-num {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-top: 2px;
}

.n1 {
    background: var(--primary);
    color: #fff;
}

.n2 {
    background: var(--gold);
    color: var(--dark);
}

.n3 {
    background: rgba(184, 41, 47, 0.12);
    color: var(--primary);
}

.nother {
    background: var(--light-bg);
    color: var(--text-muted);
}

.hot-text a {
    font-size: 12px;
    font-weight: 500;
    display: block;
    line-height: 1.45;
    margin-bottom: 2px;
}

.hot-text a:hover {
    color: var(--primary);
}

.hot-text span {
    font-size: 10px;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .body-layout {
        grid-template-columns:1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .prose {
        padding: 20px;
    }

    .art-tags, .art-share {
        padding-left: 20px;
        padding-right: 20px;
    }

    .art-cover {
        aspect-ratio: 2;
    }
}

/* 外层滚动容器 */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOS 惯性滚动 */
    border-radius: 12px;
    border: 1px solid rgba(184, 41, 47, 0.12);
    margin: 24px 0;
    /* 手机端滑动提示渐变遮罩（右侧） */
    background:
            linear-gradient(to right, #fff 0%, transparent 40px) left center / 40px 100% no-repeat,
            linear-gradient(to left,  #fff 0%, transparent 40px) right center / 40px 100% no-repeat,
            linear-gradient(to right, rgba(0,0,0,0.06), transparent) left center / 20px 100% no-repeat,
            linear-gradient(to left,  rgba(0,0,0,0.06), transparent) right center / 20px 100% no-repeat,
            #fff;
    background-attachment: local, local, scroll, scroll, local;
}

/* 表格本体 */
.table-wrap table {
    width: 100%;
    min-width: 560px; /* 触发横向滚动的最小宽度 */
    border-collapse: collapse;
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
    color: #2C1F1D;
    line-height: 1.6;
}

/* 表头 */
.table-wrap thead tr {
    background: #1A1210;
}
.table-wrap thead td {
    padding: 13px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    letter-spacing: 0.3px;
}
/* 第一列表头（指标列）颜色稍淡 */
.table-wrap thead td:first-child {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}
/* U卡列高亮标题 */
.table-wrap thead td:nth-child(2) {
    color: #E8CB7A;
}

/* 表体行 */
.table-wrap tbody tr {
    border-bottom: 1px solid rgba(184, 41, 47, 0.08);
    transition: background 0.15s;
}
.table-wrap tbody tr:last-child {
    border-bottom: none;
}
.table-wrap tbody tr:hover {
    background: rgba(184, 41, 47, 0.025);
}
/* 奇偶行交替背景 */
.table-wrap tbody tr:nth-child(even) td {
    background: rgba(250, 247, 242, 0.6);
}
.table-wrap tbody tr:nth-child(even):hover td {
    background: rgba(184, 41, 47, 0.025);
}

/* 单元格 */
.table-wrap tbody td {
    padding: 13px 18px;
    vertical-align: middle;
    color: #3a2a26;
}
/* 第一列（指标名称） */
.table-wrap tbody td:first-child {
    color: #7A6560;
    font-weight: 500;
    white-space: nowrap;
    background: rgba(250, 247, 242, 0.9);
    position: sticky;
    left: 0;
    z-index: 1;
    border-right: 1px solid rgba(184, 41, 47, 0.1);
}
/* U卡数据列（第二列）轻度高亮 */
.table-wrap tbody td:nth-child(2) {
    background: rgba(184, 41, 47, 0.03);
    color: #2C1F1D;
}
.table-wrap tbody tr:hover td:nth-child(2) {
    background: rgba(184, 41, 47, 0.06);
}

/* strong 加粗样式 */
.table-wrap td strong {
    font-weight: 700;
    color: #1A1210;
}
.table-wrap thead td strong{
    color: #fff !important;
}
/* U卡列的 strong 用品牌红色 */
.table-wrap tbody td:nth-child(2) strong {
    color: #B8292F;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .table-wrap {
        border-radius: 10px;
        margin: 16px 0;
    }
    .table-wrap table {
        font-size: 13px;
    }
    .table-wrap thead td,
    .table-wrap tbody td {
        padding: 11px 14px;
    }
    /* 手机端固定第一列宽度，防止太宽 */
    .table-wrap tbody td:first-child {
        min-width: 100px;
        max-width: 120px;
        font-size: 12px;
    }
}