/* ===== 设计令牌：靛蓝紫 + 琥珀金（全新配色） ===== */
:root {
    --c-primary: #312E81;
    --c-primary-dark: #1E1B4B;
    --c-accent: #F59E0B;
    --c-accent-soft: #FEF3C7;
    --c-accent-2: #6366F1;
    --c-live: #10B981;
    --c-bg: #F4F4F8;
    --c-surface: #FFFFFF;
    --c-text: #1E1B4B;
    --c-muted: #64748B;
    --c-border: #E2E8F0;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(49, 46, 129, 0.06), 0 4px 16px rgba(49, 46, 129, 0.05);
    --header-h: 62px;
    --max-w: 1160px;
    --gap: 1.125rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--c-accent-2);
    text-decoration: none;
}

a:hover {
    color: var(--c-accent);
}

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

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

/* ===== 顶栏 ===== */
.z7b9e7header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--c-primary-dark);
    border-bottom: 2px solid var(--c-accent);
}

.z7b9e7header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 0.75rem;
}

.z7b9e7logo {
    min-width: 0;
    flex-shrink: 1;
}

.z7b9e7logo h1 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.z7b9e7logo h1 a {
    color: #fff;
}

.z7b9e7logo-tagline {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.z7b9e7main-nav {
    flex-shrink: 0;
}

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

.z7b9e7main-nav a {
    display: block;
    padding: 0.38rem 0.6rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.z7b9e7main-nav a:hover,
.z7b9e7main-nav .z7b9e7this a {
    background: rgba(245, 158, 11, 0.15);
    color: var(--c-accent);
}

.z7b9e7menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.z7b9e7menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}

.z7b9e7menu-toggle.z7b9e7active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.z7b9e7menu-toggle.z7b9e7active span:nth-child(2) {
    opacity: 0;
}

.z7b9e7menu-toggle.z7b9e7active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== 首页 Hero ===== */
.z7b9e7hero {
    background: var(--c-primary-dark);
    color: #fff;
    padding: 2.25rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.z7b9e7hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2), var(--c-accent));
}

.z7b9e7hero-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.z7b9e7hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.22rem 0.7rem;
    background: rgba(245, 158, 11, 0.18);
    color: var(--c-accent);
    border-radius: 2px;
    margin-bottom: 0.7rem;
}

.z7b9e7hero-main h2 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: #fff;
}

.z7b9e7hero-lead {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.9rem;
    max-width: 520px;
    line-height: 1.7;
}

.z7b9e7hero-lead strong {
    color: var(--c-accent);
    font-weight: 600;
}

.z7b9e7hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.z7b9e7hero-tags span {
    font-size: 0.72rem;
    padding: 0.18rem 0.5rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 3px;
}

.z7b9e7download-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.z7b9e7dl-btn {
    padding: 0.42rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s;
}

.z7b9e7dl-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.z7b9e7dl-primary {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-primary-dark);
}

.z7b9e7dl-primary:hover {
    background: #D97706;
    border-color: #D97706;
    color: #fff;
}

.z7b9e7hero-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.z7b9e7hero-stat {
    text-align: center;
    padding: 0.5rem 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    min-width: 0;
}

.z7b9e7hero-stat strong {
    display: block;
    font-size: 1.1rem;
    color: var(--c-accent);
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.z7b9e7hero-stat span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.z7b9e7hero-aside {
    display: flex;
    justify-content: center;
    align-items: center;
}

.z7b9e7hero-frame {
    position: relative;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    max-width: 100%;
}

.z7b9e7hero-img {
    max-height: 260px;
    width: auto;
    margin: 0 auto;
}

/* ===== 主内容区 ===== */
.z7b9e7main-content {
    padding: 1.5rem 0 2.25rem;
}

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

.z7b9e7section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.65rem 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--c-border);
}

.z7b9e7section-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
    flex: 1;
}

.z7b9e7label-dot {
    flex-shrink: 0;
    width: 4px;
    height: 1.4rem;
    background: var(--c-accent);
    border-radius: 2px;
    margin-top: 0.15rem;
}

.z7b9e7section-head h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-primary);
    margin: 0 0 0.2rem;
}

.z7b9e7section-head p {
    font-size: 0.84rem;
    color: var(--c-muted);
    margin: 0;
    line-height: 1.5;
}

.z7b9e7section-head-row {
    align-items: center;
}

.z7b9e7tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    flex-shrink: 0;
}

.z7b9e7nav-btn {
    padding: 0.32rem 0.75rem;
    font-size: 0.78rem;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    background: var(--c-bg);
    color: var(--c-muted);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.z7b9e7nav-btn:hover {
    border-color: var(--c-accent-2);
    color: var(--c-accent-2);
}

.z7b9e7nav-btn.z7b9e7active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

/* ===== 直播大厅 ===== */
.z7b9e7live-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
}

.z7b9e7live-item {
    border: 1px solid var(--c-border);
    border-left: 3px solid var(--c-accent-2);
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--c-bg);
    min-width: 0;
    overflow: hidden;
}

.z7b9e7live-item.z7b9e7is-live {
    border-left-color: var(--c-live);
    background: linear-gradient(135deg, #ECFDF5 0%, var(--c-bg) 100%);
}

.z7b9e7live-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.z7b9e7live-status time {
    font-size: 0.78rem;
    color: var(--c-muted);
}

.z7b9e7badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.12rem 0.45rem;
    border-radius: 3px;
}

.z7b9e7badge-live {
    background: #D1FAE5;
    color: #047857;
}

.z7b9e7badge-soon {
    background: var(--c-accent-soft);
    color: #B45309;
}

.z7b9e7badge-replay {
    background: #E2E8F0;
    color: var(--c-muted);
}

.z7b9e7live-item h3 {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
    color: var(--c-text);
}

.z7b9e7match-line {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.z7b9e7match-line em {
    font-style: normal;
    color: var(--c-muted);
    font-weight: 400;
    margin: 0 0.3rem;
}

.z7b9e7match-line-lg {
    font-size: 0.95rem;
    padding: 0.35rem 0;
}

.z7b9e7live-desc {
    font-size: 0.8rem;
    color: var(--c-muted);
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.z7b9e7card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.55rem;
    font-size: 0.72rem;
    color: var(--c-muted);
    padding-top: 0.45rem;
    border-top: 1px solid var(--c-border);
}

/* ===== 平台介绍 ===== */
.z7b9e7platform {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.z7b9e7platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
}

.z7b9e7platform-intro {
    background: var(--c-primary);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    min-width: 0;
    overflow: hidden;
}

.z7b9e7platform-intro h2 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    color: #fff;
}

.z7b9e7platform-intro p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 0.65rem;
}

.z7b9e7platform-intro strong {
    color: var(--c-accent);
}

.z7b9e7platform-note {
    font-size: 0.8rem !important;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--c-accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 0 !important;
}

.z7b9e7feature-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
}

.z7b9e7feature-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1rem;
    min-width: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.z7b9e7feature-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.4rem;
}

.z7b9e7feature-card h3 {
    font-size: 0.88rem;
    color: var(--c-primary);
    margin-bottom: 0.3rem;
}

.z7b9e7feature-card p {
    font-size: 0.8rem;
    color: var(--c-muted);
    line-height: 1.55;
}

/* ===== 焦点赛事 ===== */
.z7b9e7match-rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

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

.z7b9e7match-row-live {
    border-color: rgba(16, 185, 129, 0.35);
    background: linear-gradient(90deg, #ECFDF5 0%, var(--c-bg) 40%);
}

.z7b9e7match-row-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.76rem;
    color: var(--c-muted);
}

.z7b9e7scoreboard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.35rem 0;
}

.z7b9e7team {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.z7b9e7team-ico {
    font-size: 1.3rem;
    display: block;
}

.z7b9e7team-nm {
    display: block;
    font-size: 0.8rem;
    margin: 0.15rem 0;
    word-break: break-word;
}

.z7b9e7scoreboard strong {
    font-size: 1.2rem;
    color: var(--c-primary);
}

.z7b9e7vs {
    flex-shrink: 0;
    font-size: 0.72rem;
    color: var(--c-muted);
    font-weight: 700;
}

.z7b9e7match-note {
    font-size: 0.76rem;
    color: var(--c-muted);
    margin-top: 0.4rem;
    padding-top: 0.4rem;
    border-top: 1px solid var(--c-border);
}

/* ===== 赛程表 ===== */
.z7b9e7schedule-list {
    list-style: none;
}

.z7b9e7schedule-item {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 0.55rem;
    overflow: hidden;
    min-width: 0;
}

.z7b9e7schedule-item:last-child {
    margin-bottom: 0;
}

.z7b9e7schedule-time {
    flex: 0 0 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.75rem 0.5rem;
    background: var(--c-primary);
    color: #fff;
    text-align: center;
}

.z7b9e7schedule-time time {
    font-size: 1rem;
    font-weight: 700;
}

.z7b9e7tag-hd {
    font-size: 0.65rem;
    padding: 0.12rem 0.35rem;
    background: rgba(245, 158, 11, 0.25);
    color: var(--c-accent);
    border-radius: 2px;
    white-space: nowrap;
}

.z7b9e7schedule-body {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--c-bg);
}

.z7b9e7schedule-body strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    word-break: break-word;
}

.z7b9e7schedule-body span {
    font-size: 0.76rem;
    color: var(--c-muted);
    line-height: 1.45;
}

/* ===== 资讯 ===== */
.z7b9e7news-stack {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.z7b9e7news-lead {
    padding: 1.15rem;
    background: var(--c-primary-dark);
    color: #fff;
    border-radius: var(--radius);
    min-width: 0;
    overflow: hidden;
}

.z7b9e7news-time {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.z7b9e7news-lead h3 {
    font-size: 1rem;
    margin: 0.4rem 0;
    line-height: 1.4;
    color: #fff;
}

.z7b9e7news-lead p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

.z7b9e7news-lead strong {
    color: var(--c-accent);
}

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

.z7b9e7news-item {
    padding: 0.85rem;
    border: 1px solid var(--c-border);
    border-top: 3px solid var(--c-accent-2);
    border-radius: var(--radius);
    background: var(--c-bg);
    min-width: 0;
    overflow: hidden;
}

.z7b9e7news-item h3 {
    font-size: 0.86rem;
    margin-bottom: 0.3rem;
    line-height: 1.35;
    color: var(--c-text);
}

.z7b9e7news-item p {
    font-size: 0.78rem;
    color: var(--c-muted);
    line-height: 1.5;
}

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

.z7b9e7stats-panel {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-bg);
    min-width: 0;
}

.z7b9e7stats-panel h3 {
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    background: var(--c-primary);
    color: #fff;
}

.z7b9e7stats-panel ol {
    list-style: none;
    padding: 0.35rem 0;
}

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

.z7b9e7stats-panel li:last-child {
    border-bottom: none;
}

.z7b9e7rank {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--c-accent-soft);
    color: #B45309;
    border-radius: 50%;
}

.z7b9e7player {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.z7b9e7stats-panel li strong {
    flex-shrink: 0;
    color: var(--c-accent-2);
    font-weight: 700;
}

/* ===== 首页文章 ===== */
.z7b9e7link-more {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.38rem 0.9rem;
    background: var(--c-accent);
    color: var(--c-primary-dark) !important;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.z7b9e7link-more:hover {
    background: #D97706;
    color: #fff !important;
}

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

.z7b9e7article-home-card {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-bg);
    min-width: 0;
    transition: box-shadow 0.2s;
}

.z7b9e7article-home-card:hover {
    box-shadow: var(--shadow);
}

.z7b9e7article-home-thumb {
    display: block;
    overflow: hidden;
}

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

.z7b9e7article-home-body {
    padding: 0.55rem 0.65rem 0.65rem;
}

.z7b9e7article-home-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.2rem;
    font-size: 0.65rem;
    color: var(--c-muted);
    margin-bottom: 0.3rem;
}

.z7b9e7article-home-meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.z7b9e7article-home-body h3 a {
    color: var(--c-text);
}

.z7b9e7article-home-body h3 a:hover {
    color: var(--c-accent-2);
}

/* ===== 页脚 ===== */
.z7b9e7footer {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 1.75rem 0 1.25rem;
    margin-top: 0.25rem;
}

.z7b9e7footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.z7b9e7footer-section h3 {
    font-size: 0.9rem;
    color: var(--c-accent);
    margin-bottom: 0.55rem;
}

.z7b9e7footer-section p,
.z7b9e7footer-section li {
    font-size: 0.82rem;
    line-height: 1.6;
}

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

.z7b9e7footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.z7b9e7footer-section a:hover {
    color: var(--c-accent);
}

.z7b9e7copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    opacity: 0.7;
}

.z7b9e7copyright a {
    color: var(--c-accent);
}

.z7b9e7sitemap-links a {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0.2rem;
}

.z7b9e7sitemap-links a:hover {
    color: var(--c-accent);
}

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

.z7b9e7page-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: #fff;
    word-break: break-word;
}

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

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

.z7b9e7breadcrumb a {
    color: var(--c-accent);
}

.z7b9e7breadcrumb span {
    margin: 0 0.25rem;
}

.z7b9e7inner-main {
    padding: 1.5rem 0 2.25rem;
}

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

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

.z7b9e7article-panel,
.z7b9e7list-panel,
.z7b9e7related-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    box-shadow: var(--shadow);
    margin-bottom: var(--gap);
    overflow: hidden;
}

.z7b9e7article-header h1 {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--c-primary);
    word-break: break-word;
}

.z7b9e7article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.82rem;
    color: var(--c-muted);
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--c-border);
}

.z7b9e7article-meta a {
    color: var(--c-accent-2);
}

.z7b9e7article-cover {
    margin: 0.85rem 0;
    overflow: hidden;
    border-radius: var(--radius);
}

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

.z7b9e7article-content {
    line-height: 1.85;
    font-size: 0.93rem;
    color: var(--c-text);
    word-break: break-word;
    overflow-wrap: break-word;
}

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

.z7b9e7article-gallery-item {
    margin: 0.85rem 0;
    text-align: center;
    overflow: hidden;
}

.z7b9e7article-gallery-item figcaption {
    font-size: 0.8rem;
    color: var(--c-muted);
    margin-top: 0.35rem;
}

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

.z7b9e7meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin-top: 1rem;
}

.z7b9e7tagitem a {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    font-size: 0.78rem;
    color: var(--c-muted);
}

.z7b9e7tagitem a:hover {
    border-color: var(--c-accent-2);
    color: var(--c-accent-2);
    background: #EEF2FF;
}

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

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

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

.z7b9e7panel-title {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid var(--c-accent);
    color: var(--c-primary);
}

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

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

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

.z7b9e7related-thumb {
    flex: 0 0 100px;
    overflow: hidden;
    border-radius: var(--radius);
}

.z7b9e7related-thumb img {
    width: 100px;
    height: 68px;
    object-fit: cover;
    border-radius: var(--radius);
}

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

.z7b9e7related-body h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.z7b9e7related-body h3 a {
    color: var(--c-text);
}

.z7b9e7related-body h3 a:hover {
    color: var(--c-accent-2);
}

.z7b9e7related-body p {
    font-size: 0.82rem;
    color: var(--c-muted);
}

/* ===== 列表页 ===== */
.z7b9e7list-items {
    list-style: none;
}

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

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

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

.z7b9e7list-thumb img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
}

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

.z7b9e7list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    font-size: 0.78rem;
    color: var(--c-muted);
    margin-bottom: 0.3rem;
}

.z7b9e7list-cat {
    color: var(--c-accent-2);
}

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

.z7b9e7list-title a {
    color: var(--c-text);
    word-break: break-word;
}

.z7b9e7list-title a:hover {
    color: var(--c-accent-2);
}

.z7b9e7list-intro {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.55;
}

.z7b9e7pagebar {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--c-border);
    overflow-x: auto;
}

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

.z7b9e7pagebar .pagelist a,
.z7b9e7pagebar .pagelist span,
.z7b9e7pagelist a,
.z7b9e7pagelist span {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    font-size: 0.82rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    text-decoration: none;
    white-space: nowrap;
}

.z7b9e7pagebar .pagelist a:hover,
.z7b9e7pagelist a:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.z7b9e7pagebar .pagelist .thisclass a,
.z7b9e7pagelist .thisclass a {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-primary-dark);
}

/* ===== 侧栏 ===== */
.z7b9e7sidebar {
    position: sticky;
    top: calc(var(--header-h) + 10px);
    min-width: 0;
}

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

.z7b9e7sidebar-title {
    font-size: 0.92rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--c-accent);
    color: var(--c-primary);
}

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

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

.z7b9e7sidebar-list a {
    font-size: 0.86rem;
    color: var(--c-text);
    word-break: break-word;
}

.z7b9e7sidebar-list a:hover,
.z7b9e7sidebar-list .z7b9e7this a {
    color: var(--c-accent-2);
}

.z7b9e7sidebar-articles {
    list-style: none;
}

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

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

.z7b9e7sidebar-thumb {
    flex: 0 0 64px;
    overflow: hidden;
    border-radius: 4px;
}

.z7b9e7sidebar-thumb img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}

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

.z7b9e7sidebar-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(--c-text);
    margin-bottom: 0.15rem;
    word-break: break-word;
}

.z7b9e7sidebar-article-info > a:hover {
    color: var(--c-accent-2);
}

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

/* ===== 网站地图 ===== */
.z7b9e7sitemap-page .z7b9e7inner-main {
    padding: 1.25rem 0;
}

.z7b9e7sitemap-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    overflow: hidden;
}

.z7b9e7sitemap-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem 0.85rem;
}

.z7b9e7sitemap-list a {
    font-size: 0.86rem;
    color: var(--c-text);
    line-height: 1.5;
    word-break: break-word;
}

.z7b9e7sitemap-list a:hover {
    color: var(--c-accent-2);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .z7b9e7hero-wrap {
        grid-template-columns: 1fr;
    }

    .z7b9e7hero-aside {
        order: -1;
    }

    .z7b9e7hero-img {
        max-height: 180px;
    }

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

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

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

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

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

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

    .z7b9e7stats-grid .z7b9e7stats-panel:last-child {
        grid-column: 1 / -1;
    }

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

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

    .z7b9e7sidebar {
        position: static;
    }
}

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

    .z7b9e7menu-toggle {
        display: flex;
    }

    .z7b9e7header-inner {
        position: relative;
    }

    .z7b9e7logo-tagline {
        display: none;
    }

    .z7b9e7main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: -16px;
        right: -16px;
        background: var(--c-primary-dark);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 2px solid var(--c-accent);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        padding: 0.4rem;
        max-height: 70vh;
        overflow-y: auto;
        z-index: 1001;
    }

    .z7b9e7main-nav.z7b9e7active {
        display: block;
    }

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

    .z7b9e7main-nav a {
        padding: 0.6rem 0.75rem;
        border-radius: 4px;
    }

    .z7b9e7hero {
        padding: 1.5rem 0 1.75rem;
    }

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

    .z7b9e7section {
        padding: 1rem;
    }

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

    .z7b9e7tab-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .z7b9e7tab-nav::-webkit-scrollbar {
        display: none;
    }

    .z7b9e7feature-cards {
        grid-template-columns: 1fr;
    }

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

    .z7b9e7stats-grid .z7b9e7stats-panel:last-child {
        grid-column: auto;
    }

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

    .z7b9e7schedule-time {
        flex: none;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.65rem;
        padding: 0.55rem 0.85rem;
    }

    .z7b9e7scoreboard {
        gap: 0.5rem;
    }

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

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

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

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

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

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

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

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

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

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

    .z7b9e7footer-content {
        text-align: center;
    }

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

    .z7b9e7link-more {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .z7b9e7hero-strip {
        grid-template-columns: 1fr 1fr;
    }

    .z7b9e7download-bar {
        flex-direction: column;
    }

    .z7b9e7dl-btn {
        width: 100%;
        text-align: center;
    }

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

    .z7b9e7card-meta span {
        font-size: 0.68rem;
    }
}

@media (hover: none) {
    .z7b9e7article-home-card:hover {
        box-shadow: none;
    }
}
