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

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

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

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

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

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

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

.zedc7blogo h1 a {
    color: #fff;
}

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

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

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

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

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

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

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

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

.zedc7bmenu-toggle.zedc7bactive span:nth-child(2) {
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zedc7bbreadcrumb span {
    margin: 0 0.25rem;
}

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

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

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

.zedc7barticle-panel,
.zedc7blist-panel,
.zedc7brelated-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zedc7bpagebar .pagelist a,
.zedc7bpagebar .pagelist span,
.zedc7bpagelist a,
.zedc7bpagelist 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .zedc7bhero-aside {
        order: -1;
    }

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

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

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

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

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

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

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

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

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

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

    .zedc7bsidebar {
        position: static;
    }
}

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

    .zedc7bmenu-toggle {
        display: flex;
    }

    .zedc7bheader-inner {
        position: relative;
    }

    .zedc7blogo-tagline {
        display: none;
    }

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

    .zedc7bmain-nav.zedc7bactive {
        display: block;
    }

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

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

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

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

    .zedc7bsection {
        padding: 1rem;
    }

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

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

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

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

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

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

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

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

    .zedc7bscoreboard {
        gap: 0.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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