/* 体育直播主题 - 紫罗兰 + 琥珀金 官方风 */
: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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.z0ececmenu-toggle.z0ececactive span:nth-child(2) {
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z0ececintro-strip > .z0ececcontainer > 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);
}

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

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

.z0ececsection {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z0ececlive-card .z0ececbadge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z0ececnews-side {
    display: contents;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========== 页脚 ========== */
.z0ececfooter {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z0ececbreadcrumb span {
    margin: 0 0.3rem;
}

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

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

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

.z0ececarticle-panel,
.z0ececlist-panel,
.z0ececrelated-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z0ececpagebar .pagelist a,
.z0ececpagebar .pagelist span,
.z0ececpagelist a,
.z0ececpagelist 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;
}

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

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

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

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

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

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

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

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

.z0ececsidebar-list a:hover,
.z0ececsidebar-list .z0ececthis a {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z0ecechero-visual {
        order: -1;
    }

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

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

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

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

    .z0ececfeature-grid,
    .z0ececstats-columns {
        grid-template-columns: 1fr;
    }

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

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

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

    .z0ececsidebar {
        position: static;
    }

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

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

    .z0ececcontainer {
        padding: 0 14px;
    }

    .z0ececmenu-toggle {
        display: flex;
    }

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

    .z0ececmain-nav.z0ececactive {
        display: block;
    }

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

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

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

    .z0ecechero-points {
        gap: 0.35rem;
    }

    .z0ecechero-metrics {
        gap: 1rem;
    }

    .z0ececpanel {
        padding: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z0ececlive-card .z0ececbadge {
        top: 0.5rem;
        right: 0.5rem;
    }
}

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

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

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

    .z0ececdl-btn {
        width: 100%;
    }

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

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

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

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