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

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z06e8dmenu-toggle.z06e8dactive span:nth-child(2) {
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z06e8dsection {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z06e8dlive-card .z06e8dbadge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z06e8dnews-side {
    display: contents;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z06e8dbreadcrumb span {
    margin: 0 0.3rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z06e8dsidebar-list a:hover,
.z06e8dsidebar-list .z06e8dthis a {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z06e8dhero-visual {
        order: -1;
    }

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

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

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

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

    .z06e8dfeature-grid,
    .z06e8dstats-columns {
        grid-template-columns: 1fr;
    }

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

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

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

    .z06e8dsidebar {
        position: static;
    }

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

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

    .z06e8dcontainer {
        padding: 0 14px;
    }

    .z06e8dmenu-toggle {
        display: flex;
    }

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

    .z06e8dmain-nav.z06e8dactive {
        display: block;
    }

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

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

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

    .z06e8dhero-points {
        gap: 0.35rem;
    }

    .z06e8dhero-metrics {
        gap: 1rem;
    }

    .z06e8dpanel {
        padding: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z06e8dlive-card .z06e8dbadge {
        top: 0.5rem;
        right: 0.5rem;
    }
}

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

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

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

    .z06e8ddl-btn {
        width: 100%;
    }

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

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

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

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