/* 体育直播主题 - 紫罗兰 + 琥珀金 官方风 */
:root {
    --primary: #5b21b6;
    --primary-dark: #3b0764;
    --primary-light: #7c3aed;
    --accent: #d97706;
    --accent-light: #fbbf24;
    --accent-soft: #fef3c7;
    --bg: #f5f3ff;
    --surface: #ffffff;
    --text: #1e1b4b;
    --text-muted: #6366a0;
    --border: #ddd6fe;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(91, 33, 182, 0.06), 0 4px 16px rgba(91, 33, 182, 0.05);
    --header-h: 64px;
    --max-w: 1160px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
}

.zb9f8acontainer {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========== 头部导航 ========== */
.zb9f8aheader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--border);
}

.zb9f8aheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
    position: relative;
}

.zb9f8alogo h1 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.zb9f8alogo h1 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.zb9f8alogo-tagline {
    font-size: 0.72rem;
    color: var(--accent);
    margin-top: 2px;
    font-weight: 500;
}

.zb9f8amain-nav ul {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    flex-wrap: wrap;
}

.zb9f8amain-nav a {
    display: block;
    padding: 0.4rem 0.7rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.zb9f8amain-nav a:hover,
.zb9f8amain-nav .zb9f8athis a,
.zb9f8amain-nav li.zb9f8athis a {
    color: var(--primary);
    background: var(--accent-soft);
}

.zb9f8amenu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.zb9f8amenu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    margin: 3px auto;
    transition: transform 0.25s, opacity 0.25s;
}

.zb9f8amenu-toggle.zb9f8aactive span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.zb9f8amenu-toggle.zb9f8aactive span:nth-child(2) {
    opacity: 0;
}

.zb9f8amenu-toggle.zb9f8aactive span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

section[id] {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ========== 首页 Hero ========== */
.zb9f8ahero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 2.75rem 0 2.25rem;
    position: relative;
    overflow: hidden;
}

.zb9f8ahero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.zb9f8ahero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.zb9f8ahero-badge {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(217, 119, 6, 0.25);
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.zb9f8ahero-copy h2 {
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    line-height: 1.3;
    margin-bottom: 0.85rem;
    font-weight: 800;
    color: var(--primary-dark);
    border: none;
    padding: 0;
    letter-spacing: -0.02em;
}

.zb9f8ahero-lead {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    line-height: 1.75;
    max-width: 540px;
}

.zb9f8ahero-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.35rem;
}

.zb9f8ahero-points li {
    font-size: 0.82rem;
    padding: 0.3rem 0.65rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text);
}

.zb9f8adownload-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.zb9f8adl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: 1px solid transparent;
}

.zb9f8adl-main {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.zb9f8adl-main:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(91, 33, 182, 0.3);
}

.zb9f8adl-alt {
    background: var(--surface);
    color: var(--primary);
    border-color: var(--border);
}

.zb9f8adl-alt:hover {
    border-color: var(--primary-light);
    background: var(--bg);
}

.zb9f8ahero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border);
}

.zb9f8ahero-metrics > div {
    min-width: 0;
}

.zb9f8ahero-metrics strong {
    display: block;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 800;
    line-height: 1.2;
}

.zb9f8ahero-metrics span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.zb9f8ahero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zb9f8ahero-img {
    max-height: 260px;
    width: auto;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* 简介条 */
.zb9f8aintro-strip {
    background: var(--primary-dark);
    padding: 1.5rem 0;
}

.zb9f8aintro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.zb9f8aintro-item {
    text-align: center;
    padding: 0.85rem 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 0;
}

.zb9f8aintro-item:last-child {
    border-right: none;
}

.zb9f8aintro-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--accent-light);
    margin-bottom: 0.35rem;
}

.zb9f8aintro-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.zb9f8aintro-strip > .zb9f8acontainer > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    text-align: center;
    max-width: 880px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zb9f8aintro-strip > .zb9f8acontainer > p strong {
    color: var(--accent-light);
}

/* ========== 通用板块 ========== */
.zb9f8amain-content {
    padding: 2rem 0 2.75rem;
}

.zb9f8asection {
    margin-bottom: 1.5rem;
}

.zb9f8apanel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.zb9f8asection-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.zb9f8asection-head h2 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin: 0;
    border: none;
    padding: 0;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.zb9f8asection-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.5;
}

.zb9f8atab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.zb9f8anav-btn {
    padding: 0.32rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

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

.zb9f8anav-btn.zb9f8aactive {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* 徽章 */
.zb9f8abadge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.zb9f8abadge-live {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.zb9f8abadge-soon {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(217, 119, 6, 0.25);
}

.zb9f8abadge-replay {
    background: var(--bg);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* 直播卡片 - Bento 布局 */
.zb9f8alive-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.zb9f8alive-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--bg);
    min-width: 0;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.zb9f8alive-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.zb9f8alive-card:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
}

.zb9f8alive-card:nth-child(2),
.zb9f8alive-card:nth-child(3) {
    grid-column: span 3;
}

.zb9f8alive-card:nth-child(4) {
    grid-column: span 6;
}

.zb9f8alive-hot {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-color: var(--primary);
}

.zb9f8alive-hot h3,
.zb9f8alive-hot .zb9f8acard-foot {
    color: rgba(255, 255, 255, 0.95);
}

.zb9f8alive-card h3 {
    font-size: 0.92rem;
    margin: 0.45rem 0 0.6rem;
    line-height: 1.35;
    padding-right: 3.5rem;
}

.zb9f8alive-hot h3 {
    font-size: 1.05rem;
}

.zb9f8alive-card .zb9f8abadge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
}

.zb9f8amatch-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: auto;
    padding: 0.5rem 0;
}

.zb9f8amatch-row span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.zb9f8amatch-row em {
    flex-shrink: 0;
    font-style: normal;
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 0.15rem 0.35rem;
    background: var(--surface);
    border-radius: 3px;
}

.zb9f8alive-hot .zb9f8amatch-row em {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.zb9f8acard-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    font-size: 0.74rem;
    color: var(--text-muted);
    padding-top: 0.65rem;
    margin-top: 0.65rem;
    border-top: 1px solid var(--border);
}

.zb9f8alive-hot .zb9f8acard-foot {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* 热门对决 */
.zb9f8afeature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.zb9f8afeature-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--surface);
    min-width: 0;
    overflow: hidden;
    border-left: 3px solid var(--primary-light);
}

.zb9f8afeature-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    gap: 0.5rem;
}

.zb9f8ascoreboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    padding: 0.65rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.zb9f8ascoreboard > div {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.zb9f8ascoreboard strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 0.1rem;
}

.zb9f8ateam-ico {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.1rem;
}

.zb9f8avs {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-light);
}

.zb9f8afeature-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.6rem;
}

.zb9f8atag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.zb9f8atag-row span {
    font-size: 0.7rem;
    padding: 0.12rem 0.4rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--text-muted);
}

/* 赛事排期 - 时间轴 */
.zb9f8aschedule-list {
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
}

.zb9f8aschedule-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--border);
}

.zb9f8aschedule-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0 0.75rem 0.85rem;
    border-bottom: 1px solid var(--border);
    min-width: 0;
    position: relative;
}

.zb9f8aschedule-item::before {
    content: "";
    position: absolute;
    left: -1.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    border: 2px solid var(--surface);
    box-shadow: 0 0 0 2px var(--border);
}

.zb9f8aschedule-item:last-child {
    border-bottom: none;
}

.zb9f8aschedule-item time {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
}

.zb9f8aschedule-body {
    min-width: 0;
}

.zb9f8aschedule-body h3 {
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
    line-height: 1.35;
}

.zb9f8aschedule-body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 新闻 - 杂志布局 */
.zb9f8anews-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.zb9f8anews-main {
    grid-row: span 3;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: var(--primary-dark);
    color: #fff;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.zb9f8anews-time {
    font-size: 0.72rem;
    opacity: 0.75;
}

.zb9f8anews-main h3 {
    font-size: 1rem;
    margin: 0.45rem 0;
    line-height: 1.4;
}

.zb9f8anews-main p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.65;
    margin-bottom: auto;
    padding-bottom: 0.75rem;
}

.zb9f8anews-main .zb9f8atag-row span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.zb9f8anews-side {
    display: contents;
}

.zb9f8anews-mini {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem;
    background: var(--bg);
    min-width: 0;
    overflow: hidden;
}

.zb9f8anews-mini h3 {
    font-size: 0.88rem;
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.zb9f8anews-mini p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 数据榜 */
.zb9f8astats-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.zb9f8astats-col {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 0;
    background: var(--surface);
}

.zb9f8astats-col h3 {
    font-size: 0.85rem;
    padding: 0.6rem 0.85rem;
    background: var(--bg);
    color: var(--primary-dark);
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.zb9f8arank-list {
    list-style: none;
    padding: 0.4rem 0.5rem;
}

.zb9f8arank-list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.35rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    min-width: 0;
}

.zb9f8arank-list li:last-child {
    border-bottom: none;
}

.zb9f8arank-list li > span:not(.zb9f8arank-n) {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zb9f8arank-n {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.zb9f8arank-list strong {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
}

/* 首页文章 */
.zb9f8aarticle-home-header {
    align-items: center;
}

.zb9f8aarticle-more {
    display: inline-block;
    padding: 0.38rem 0.9rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
    border: 1px solid var(--accent);
}

.zb9f8aarticle-more:hover {
    background: #b45309;
    border-color: #b45309;
}

.zb9f8aarticle-home-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.zb9f8aarticle-home-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    min-width: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.zb9f8aarticle-home-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.zb9f8aarticle-home-thumb {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.zb9f8aarticle-home-thumb img {
    width: 100%;
    height: 96px;
    object-fit: cover;
}

.zb9f8aarticle-home-body {
    padding: 0.6rem;
}

.zb9f8aarticle-home-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    gap: 0.25rem;
}

.zb9f8aarticle-home-body h3 {
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zb9f8aarticle-home-body h3 a {
    color: var(--text);
    text-decoration: none;
}

.zb9f8aarticle-home-body h3 a:hover {
    color: var(--primary);
}

/* ========== 页脚 ========== */
.zb9f8afooter {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem 0 1.25rem;
    margin-top: 0;
    border-top: 3px solid var(--accent);
}

.zb9f8afooter-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.zb9f8afooter-section h3 {
    color: var(--accent-light);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.zb9f8afooter-section p,
.zb9f8afooter-section li {
    font-size: 0.85rem;
    line-height: 1.65;
}

.zb9f8afooter-section ul {
    list-style: none;
}

.zb9f8afooter-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.zb9f8afooter-section a:hover {
    color: var(--accent-light);
}

.zb9f8acopyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.zb9f8acopyright a {
    color: var(--accent-light);
    text-decoration: none;
}

.zb9f8asitemap-links a {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0.15rem;
}

.zb9f8asitemap-links a:hover {
    color: var(--accent-light);
}

/* ========== 内页通用 ========== */
.zb9f8apage-banner {
    background: var(--primary-dark);
    color: #fff;
    padding: 1.65rem 0 1.35rem;
    border-bottom: 3px solid var(--accent);
}

.zb9f8apage-title {
    font-size: 1.4rem;
    margin-bottom: 0.45rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.35;
}

.zb9f8apage-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
    max-width: 720px;
    line-height: 1.6;
}

.zb9f8abreadcrumb {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.zb9f8abreadcrumb a {
    color: var(--accent-light);
    text-decoration: none;
}

.zb9f8abreadcrumb a:hover {
    text-decoration: underline;
}

.zb9f8abreadcrumb span {
    margin: 0 0.3rem;
}

.zb9f8ainner-main {
    padding: 1.5rem 0 2.5rem;
}

.zb9f8ainner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.25rem;
    align-items: start;
}

.zb9f8ainner-content {
    min-width: 0;
}

.zb9f8aarticle-panel,
.zb9f8alist-panel,
.zb9f8arelated-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.15rem;
    overflow: hidden;
}

.zb9f8aarticle-header h1 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.7rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.zb9f8aarticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.zb9f8aarticle-meta a {
    color: var(--accent);
    text-decoration: none;
}

.zb9f8aarticle-cover {
    margin: 1rem 0;
}

.zb9f8athumb-cover {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.zb9f8aarticle-content {
    line-height: 1.8;
    font-size: 0.94rem;
    color: var(--text);
    word-break: break-word;
}

.zb9f8aarticle-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 0.65rem 0;
    border: 1px solid var(--border);
}

.zb9f8aarticle-gallery-item {
    margin: 0.85rem 0;
    text-align: center;
}

.zb9f8aarticle-gallery-item figcaption {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.zb9f8adiyfield {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border);
}

.zb9f8ameta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.zb9f8atagitem a {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
}

.zb9f8atagitem a:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}

.zb9f8aarticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.15rem;
}

.zb9f8aprenext-item {
    flex: 1;
    font-size: 0.88rem;
    min-width: 0;
    word-break: break-word;
}

.zb9f8aprenext-next {
    text-align: right;
}

.zb9f8apanel-title {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
}

.zb9f8arelated-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zb9f8arelated-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    min-width: 0;
}

.zb9f8arelated-item:last-child {
    border-bottom: none;
}

.zb9f8arelated-thumb {
    flex: 0 0 100px;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.zb9f8arelated-thumb img {
    width: 100px;
    height: 68px;
    object-fit: cover;
}

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

.zb9f8arelated-body h3 {
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.zb9f8arelated-body h3 a {
    color: var(--text);
    text-decoration: none;
}

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

.zb9f8arelated-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 列表页 */
.zb9f8alist-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zb9f8alist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    min-width: 0;
}

.zb9f8alist-item:last-child {
    border-bottom: none;
}

.zb9f8alist-thumb {
    flex: 0 0 150px;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.zb9f8alist-thumb img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}

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

.zb9f8alist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.zb9f8alist-cat {
    color: var(--accent);
    font-weight: 600;
}

.zb9f8alist-title {
    font-size: 1.02rem;
    margin: 0 0 0.35rem;
    line-height: 1.4;
}

.zb9f8alist-title a {
    color: var(--text);
    text-decoration: none;
}

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

.zb9f8alist-intro {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.zb9f8apagebar {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.zb9f8apagebar .pagelist,
.zb9f8apagelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zb9f8apagebar .pagelist a,
.zb9f8apagebar .pagelist span,
.zb9f8apagelist a,
.zb9f8apagelist span {
    display: inline-block;
    padding: 0.38rem 0.7rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 0.84rem;
}

.zb9f8apagebar .pagelist a:hover,
.zb9f8apagelist a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.zb9f8apagebar .pagelist .thisclass,
.zb9f8apagebar .pagelist .thisclass a,
.zb9f8apagelist .thisclass,
.zb9f8apagelist .thisclass a {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    font-weight: 600;
}

/* 侧栏 */
.zb9f8asidebar {
    position: sticky;
    top: calc(var(--header-h) + 12px);
}

.zb9f8asidebar-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    overflow: hidden;
}

.zb9f8asidebar-title {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
}

.zb9f8asidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zb9f8asidebar-list li {
    margin-bottom: 0.3rem;
}

.zb9f8asidebar-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
}

.zb9f8asidebar-list a:hover,
.zb9f8asidebar-list .zb9f8athis a {
    color: var(--primary);
}

.zb9f8asidebar-articles {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zb9f8asidebar-article-item {
    display: flex;
    gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    min-width: 0;
}

.zb9f8asidebar-article-item:last-child {
    border-bottom: none;
}

.zb9f8asidebar-thumb {
    flex: 0 0 64px;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.zb9f8asidebar-thumb img {
    width: 64px;
    height: 48px;
    object-fit: cover;
}

.zb9f8asidebar-article-info {
    flex: 1;
    min-width: 0;
}

.zb9f8asidebar-article-info > a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 0.15rem;
}

.zb9f8asidebar-article-info > a:hover {
    color: var(--primary);
}

.zb9f8asidebar-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* 网站地图 */
.zb9f8asitemap-page .zb9f8ainner-main {
    padding: 1.5rem 0;
}

.zb9f8asitemap-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.zb9f8asitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}

.zb9f8asitemap-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-word;
}

.zb9f8asitemap-list a:hover {
    color: var(--primary);
}

/* ========== 响应式 ========== */
@media (max-width: 1100px) {
    .zb9f8alive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .zb9f8alive-card:nth-child(1),
    .zb9f8alive-card:nth-child(2),
    .zb9f8alive-card:nth-child(3),
    .zb9f8alive-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .zb9f8aarticle-home-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .zb9f8ahero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zb9f8ahero-lead {
        max-width: none;
    }

    .zb9f8ahero-visual {
        order: -1;
    }

    .zb9f8ahero-img {
        max-height: 200px;
    }

    .zb9f8aintro-grid {
        grid-template-columns: 1fr;
    }

    .zb9f8aintro-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0.65rem 0;
    }

    .zb9f8aintro-item:last-child {
        border-bottom: none;
    }

    .zb9f8afeature-grid,
    .zb9f8astats-columns {
        grid-template-columns: 1fr;
    }

    .zb9f8anews-layout {
        grid-template-columns: 1fr;
    }

    .zb9f8anews-main {
        grid-row: span 1;
    }

    .zb9f8ainner-layout {
        grid-template-columns: 1fr;
    }

    .zb9f8asidebar {
        position: static;
    }

    .zb9f8aarticle-home-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    :root {
        --header-h: 56px;
    }

    .zb9f8acontainer {
        padding: 0 14px;
    }

    .zb9f8amenu-toggle {
        display: flex;
    }

    .zb9f8amain-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 0.5rem;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .zb9f8amain-nav.zb9f8aactive {
        display: block;
    }

    .zb9f8amain-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .zb9f8amain-nav a {
        padding: 0.6rem 0.75rem;
    }

    .zb9f8ahero {
        padding: 1.5rem 0 1.25rem;
    }

    .zb9f8ahero-points {
        gap: 0.35rem;
    }

    .zb9f8ahero-metrics {
        gap: 1rem;
    }

    .zb9f8apanel {
        padding: 1rem;
    }

    .zb9f8asection-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .zb9f8atab-row {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .zb9f8alive-grid {
        grid-template-columns: 1fr;
    }

    .zb9f8aschedule-list {
        padding-left: 1rem;
    }

    .zb9f8aschedule-item {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        padding-left: 0.65rem;
    }

    .zb9f8aschedule-item::before {
        left: -1.05rem;
    }

    .zb9f8aschedule-item .zb9f8abadge {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 0.15rem;
    }

    .zb9f8aarticle-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zb9f8afooter-content {
        grid-template-columns: 1fr;
    }

    .zb9f8alist-item {
        flex-direction: column;
    }

    .zb9f8alist-thumb {
        flex: none;
        width: 100%;
    }

    .zb9f8alist-thumb img {
        width: 100%;
        height: auto;
        max-height: 180px;
    }

    .zb9f8arelated-item {
        flex-direction: column;
    }

    .zb9f8arelated-thumb {
        flex: none;
        width: 100%;
    }

    .zb9f8arelated-thumb img {
        width: 100%;
        height: auto;
        max-height: 160px;
    }

    .zb9f8aarticle-nav {
        flex-direction: column;
    }

    .zb9f8aprenext-next {
        text-align: left;
    }

    .zb9f8alive-card h3 {
        padding-right: 0;
        padding-top: 1.5rem;
    }

    .zb9f8alive-card .zb9f8abadge {
        top: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .zb9f8alogo h1 {
        font-size: 1rem;
    }

    .zb9f8alogo-tagline {
        font-size: 0.68rem;
    }

    .zb9f8adownload-group {
        flex-direction: column;
    }

    .zb9f8adl-btn {
        width: 100%;
    }

    .zb9f8ahero-metrics {
        flex-direction: column;
        gap: 0.75rem;
    }

    .zb9f8aarticle-home-grid {
        grid-template-columns: 1fr;
    }

    .zb9f8asitemap-list {
        grid-template-columns: 1fr;
    }
}

@media (hover: none) {
    .zb9f8alive-card:hover,
    .zb9f8aarticle-home-card:hover {
        transform: none;
        box-shadow: none;
    }
}
