/* ===== 设计令牌：靛蓝紫 + 琥珀金（全新配色） ===== */
: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);
}

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

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

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

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

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

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

.zf649elogo h1 a {
    color: #fff;
}

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

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

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

.zf649emain-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;
}

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

.zf649emenu-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;
}

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

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

.zf649emenu-toggle.zf649eactive span:nth-child(2) {
    opacity: 0;
}

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

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

.zf649ehero::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));
}

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

.zf649ehero-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;
}

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

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

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

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

.zf649ehero-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;
}

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

.zf649edl-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;
}

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

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

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

.zf649ehero-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;
}

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

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

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

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

.zf649ehero-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%;
}

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

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

.zf649esection {
    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;
}

.zf649esection-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);
}

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

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

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

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

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

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

.zf649enav-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;
}

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

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

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

.zf649elive-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.zf649ecard-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);
}

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

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

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

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

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

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

.zf649eplatform-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;
}

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

.zf649efeature-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);
}

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

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

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

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

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

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

.zf649ematch-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);
}

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

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

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

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

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

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

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

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

.zf649eschedule-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;
}

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

.zf649eschedule-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;
}

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

.zf649etag-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;
}

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

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

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

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

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

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

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

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

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

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

.zf649enews-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;
}

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

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

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

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

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

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

.zf649estats-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;
}

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

.zf649erank {
    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%;
}

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

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

/* ===== 首页文章 ===== */
.zf649elink-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;
}

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

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

.zf649earticle-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;
}

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

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

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

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

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

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

.zf649earticle-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zf649ebreadcrumb span {
    margin: 0 0.25rem;
}

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

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

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

.zf649earticle-panel,
.zf649elist-panel,
.zf649erelated-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;
}

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

.zf649earticle-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);
}

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

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

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

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

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

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

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

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

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

.zf649etagitem 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);
}

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

.zf649earticle-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zf649epagebar .pagelist a,
.zf649epagebar .pagelist span,
.zf649epagelist a,
.zf649epagelist 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;
}

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

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

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

.zf649esidebar-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;
}

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

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

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

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

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

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

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

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

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

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

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

.zf649esidebar-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;
}

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

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

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

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

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

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

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

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

    .zf649ehero-aside {
        order: -1;
    }

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

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

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

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

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

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

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

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

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

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

    .zf649esidebar {
        position: static;
    }
}

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

    .zf649emenu-toggle {
        display: flex;
    }

    .zf649eheader-inner {
        position: relative;
    }

    .zf649elogo-tagline {
        display: none;
    }

    .zf649emain-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;
    }

    .zf649emain-nav.zf649eactive {
        display: block;
    }

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

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

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

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

    .zf649esection {
        padding: 1rem;
    }

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

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

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

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

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

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

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

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

    .zf649escoreboard {
        gap: 0.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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