/* ===== 体育直播主题 · 墨绿 + 赤陶橙 ===== */
:root {
    --c-primary: #0b3d2e;
    --c-primary-mid: #145a42;
    --c-primary-light: #1a7a55;
    --c-accent: #c45c26;
    --c-accent-bright: #e07a3a;
    --c-accent-soft: #fdf0e8;
    --c-bg: #f7f4ef;
    --c-bg-tone: #f0ebe3;
    --c-surface: #ffffff;
    --c-text: #1a2420;
    --c-muted: #5a6b62;
    --c-border: #d5cfc4;
    --c-radius: 10px;
    --c-radius-sm: 6px;
    --c-shadow: 0 2px 8px rgba(11, 61, 46, 0.07);
    --c-header-h: 62px;
    --c-max: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--c-primary-light);
    text-decoration: none;
}

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

/* ===== 头部 ===== */
.zf57f2header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-primary);
}

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

.zf57f2logo h1 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
}

.zf57f2logo h1 a {
    color: #fff;
}

.zf57f2logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.zf57f2main-nav a {
    display: block;
    padding: 0.38rem 0.65rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.88);
    border-radius: var(--c-radius-sm);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.zf57f2main-nav a:hover,
.zf57f2main-nav .zf57f2this a {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.zf57f2menu-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.3);
    border-radius: var(--c-radius-sm);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

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

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

.zf57f2menu-toggle.zf57f2active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== 首页 Showcase ===== */
.zf57f2showcase {
    background: linear-gradient(160deg, var(--c-primary-mid) 0%, var(--c-primary) 60%, #072a1f 100%);
    color: #fff;
    padding: 2.5rem 0 0;
}

.zf57f2showcase-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 2rem;
}

.zf57f2showcase-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--c-accent-bright);
    margin-bottom: 0.7rem;
}

.zf57f2showcase-main h2 {
    font-size: clamp(1.4rem, 3vw, 1.95rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.8rem;
    color: #fff;
}

.zf57f2showcase-lead {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    max-width: 500px;
    line-height: 1.75;
}

.zf57f2showcase-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.zf57f2showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 1.15rem;
    border-radius: var(--c-radius-sm);
    font-size: 0.86rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.zf57f2showcase-btn-main {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

.zf57f2showcase-btn-sub {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.zf57f2showcase-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.zf57f2showcase-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf57f2showcase-img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.zf57f2showcase-strip {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zf57f2showcase-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.zf57f2strip-item {
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.zf57f2strip-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--c-accent-bright);
    margin-bottom: 0.15rem;
}

.zf57f2strip-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== 三栏介绍 ===== */
.zf57f2pitch {
    padding: 1.5rem 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
}

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

.zf57f2pitch-card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    background: var(--c-bg);
    min-width: 0;
}

.zf57f2pitch-card h3 {
    font-size: 0.92rem;
    color: var(--c-primary);
    margin-bottom: 0.4rem;
}

.zf57f2pitch-card p {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.65;
}

.zf57f2pitch-card strong {
    color: var(--c-accent);
}

/* ===== 主内容 ===== */
.zf57f2main-content {
    padding: 1.75rem 0 2.75rem;
}

.zf57f2panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 1.2rem 1.15rem;
    margin-bottom: 1.15rem;
    box-shadow: var(--c-shadow);
    overflow: hidden;
}

.zf57f2panel-tone {
    background: var(--c-bg-tone);
    border-color: #ccc5b8;
}

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

.zf57f2panel-top-flex {
    align-items: center;
}

.zf57f2panel-info h2 {
    font-size: 1.2rem;
    color: var(--c-primary);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.zf57f2panel-info p {
    font-size: 0.8rem;
    color: var(--c-muted);
}

.zf57f2chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

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

.zf57f2panel-tone .zf57f2chip {
    background: var(--c-surface);
}

.zf57f2chip:hover {
    border-color: var(--c-primary-light);
    color: var(--c-primary-light);
}

.zf57f2chip.zf57f2on {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

/* ===== 赛事中心 ===== */
.zf57f2live-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.zf57f2live-tile {
    padding: 0.9rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-bg);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
    min-height: 140px;
    transition: border-color 0.2s;
}

.zf57f2live-tile:hover {
    border-color: var(--c-primary-light);
}

.zf57f2live-tile--hot {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

.zf57f2live-tile--hot h3,
.zf57f2live-tile--hot p,
.zf57f2live-tile--hot footer {
    color: rgba(255, 255, 255, 0.92);
}

.zf57f2live-tile--hot .zf57f2duel i {
    color: rgba(255, 255, 255, 0.5);
}

.zf57f2dot {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    letter-spacing: 0.03em;
}

.zf57f2dot-live {
    background: var(--c-accent);
    color: #fff;
}

.zf57f2dot-soon {
    background: var(--c-accent-bright);
    color: #fff;
}

.zf57f2dot-vod {
    background: var(--c-muted);
    color: #fff;
}

.zf57f2live-tile h3 {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}

.zf57f2duel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.84rem;
}

.zf57f2duel i {
    font-style: normal;
    font-size: 0.7rem;
    color: var(--c-muted);
    flex-shrink: 0;
}

.zf57f2live-tile p {
    font-size: 0.74rem;
    color: var(--c-muted);
    line-height: 1.45;
}

.zf57f2live-tile footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--c-muted);
    margin-top: auto;
    padding-top: 0.2rem;
}

/* ===== 精选对阵 ===== */
.zf57f2focus-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zf57f2focus-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    min-width: 0;
    transition: border-color 0.2s;
}

.zf57f2panel-tone .zf57f2focus-row {
    background: var(--c-surface);
}

.zf57f2focus-row:nth-child(even) {
    background: var(--c-bg);
}

.zf57f2panel-tone .zf57f2focus-row:nth-child(even) {
    background: var(--c-bg);
}

.zf57f2focus-row:hover {
    border-color: var(--c-primary-light);
}

.zf57f2focus-clock time {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-accent);
}

.zf57f2focus-clock small {
    font-size: 0.7rem;
    color: var(--c-muted);
}

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

.zf57f2focus-vs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.6rem;
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.zf57f2focus-vs em {
    font-style: normal;
    font-size: 0.72rem;
    color: var(--c-muted);
}

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

.zf57f2focus-labels {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.zf57f2focus-labels span {
    font-size: 0.68rem;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    white-space: nowrap;
}

/* ===== 近期赛程 ===== */
.zf57f2plan-list {
    position: relative;
    padding-left: 1.5rem;
}

.zf57f2plan-list::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--c-border);
}

.zf57f2plan-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--c-border);
    min-width: 0;
}

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

.zf57f2plan-dot {
    position: absolute;
    left: -1.5rem;
    top: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--c-accent);
    border: 2px solid var(--c-surface);
    box-shadow: 0 0 0 2px var(--c-accent);
}

.zf57f2plan-item time {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--c-primary);
}

.zf57f2plan-text {
    min-width: 0;
}

.zf57f2plan-text h3 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    color: var(--c-text);
}

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

/* ===== 赛事资讯 ===== */
.zf57f2feed {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 0.75rem;
}

.zf57f2feed-lead {
    grid-row: 1 / 3;
    padding: 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    min-width: 0;
}

.zf57f2feed-cat {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    background: var(--c-primary);
    color: #fff;
    border-radius: 3px;
    margin-bottom: 0.55rem;
}

.zf57f2feed-lead h3 {
    font-size: 1rem;
    margin-bottom: 0.55rem;
    line-height: 1.4;
    color: var(--c-primary);
}

.zf57f2feed-lead > p {
    font-size: 0.82rem;
    color: var(--c-muted);
    margin-bottom: 0.7rem;
    line-height: 1.65;
}

.zf57f2feed-meta {
    display: flex;
    gap: 0.85rem;
    font-size: 0.74rem;
    color: var(--c-muted);
}

.zf57f2feed-card {
    padding: 0.85rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zf57f2feed-card h4 {
    font-size: 0.84rem;
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.zf57f2feed-card p {
    font-size: 0.76rem;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ===== 排名数据 ===== */
.zf57f2data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

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

.zf57f2data-box h3 {
    font-size: 0.86rem;
    padding: 0.6rem 0.8rem;
    background: var(--c-primary);
    color: #fff;
}

.zf57f2data-box ol {
    list-style: none;
    padding: 0.3rem;
}

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

.zf57f2data-box li:last-child {
    border-bottom: none;
}

.zf57f2data-rank {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

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

.zf57f2data-box li strong {
    flex-shrink: 0;
    color: var(--c-primary-light);
    font-weight: 700;
}

/* ===== 观赛知识库 ===== */
.zf57f2tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.zf57f2tips-item {
    padding: 0.85rem 0.9rem 0.85rem 1rem;
    border: 1px solid var(--c-border);
    border-left: 3px solid var(--c-accent);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface);
    min-width: 0;
}

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

.zf57f2tips-item p {
    font-size: 0.8rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* ===== 专栏精选 ===== */
.zf57f2more-link {
    font-size: 0.8rem;
    padding: 0.38rem 0.85rem;
    border: 1px solid var(--c-primary-light);
    border-radius: var(--c-radius-sm);
    color: var(--c-primary-light);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.zf57f2more-link:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

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

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

.zf57f2post-card:hover {
    box-shadow: var(--c-shadow);
}

.zf57f2post-thumb {
    display: block;
    overflow: hidden;
}

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

.zf57f2post-body {
    padding: 0.6rem 0.65rem;
}

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

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

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

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

/* ===== 页脚 ===== */
.zf57f2footer {
    background: var(--c-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem 0 1.15rem;
}

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

.zf57f2footer-section h3 {
    color: var(--c-accent-bright);
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

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

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

.zf57f2footer-section a {
    color: rgba(255, 255, 255, 0.75);
}

.zf57f2footer-section a:hover {
    color: #fff;
}

.zf57f2copyright {
    text-align: center;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

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

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

.zf57f2sitemap-links a:hover {
    color: #fff;
}

/* ===== 内页通用 ===== */
.zf57f2page-banner {
    background: linear-gradient(135deg, var(--c-primary-mid) 0%, var(--c-primary) 100%);
    color: #fff;
    padding: 1.65rem 0 1.4rem;
}

.zf57f2page-title {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.zf57f2page-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.86rem;
    margin-bottom: 0.6rem;
    max-width: 700px;
    line-height: 1.6;
}

.zf57f2breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.zf57f2breadcrumb span {
    margin: 0 0.3rem;
}

.zf57f2inner-main {
    padding: 1.65rem 0 2.5rem;
}

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

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

.zf57f2article-panel,
.zf57f2list-panel,
.zf57f2related-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 1.15rem;
    box-shadow: var(--c-shadow);
    margin-bottom: 0.9rem;
    overflow: hidden;
}

.zf57f2article-header h1 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    color: var(--c-primary);
}

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

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

.zf57f2article-cover {
    margin: 0.75rem 0;
}

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

.zf57f2article-content {
    line-height: 1.85;
    font-size: 0.92rem;
    color: var(--c-text);
    word-break: break-word;
}

.zf57f2article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--c-radius-sm);
    margin: 0.6rem 0;
}

.zf57f2article-gallery-item {
    margin: 0.75rem 0;
    text-align: center;
}

.zf57f2article-gallery-item figcaption {
    font-size: 0.78rem;
    color: var(--c-muted);
    margin-top: 0.3rem;
}

.zf57f2diyfield {
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--c-border);
}

.zf57f2meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    list-style: none;
    margin-top: 0.9rem;
}

.zf57f2tagitem a {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--c-muted);
}

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

.zf57f2article-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 0.8rem 0.95rem;
    margin-bottom: 0.9rem;
    font-size: 0.86rem;
}

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

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

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

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

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

.zf57f2related-thumb {
    flex: 0 0 96px;
    min-width: 0;
}

.zf57f2related-thumb img {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--c-radius-sm);
    border: 1px solid var(--c-border);
}

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

.zf57f2related-body h3 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    line-height: 1.35;
}

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

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

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

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

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

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

.zf57f2list-thumb {
    flex: 0 0 145px;
    min-width: 0;
}

.zf57f2list-thumb img {
    width: 145px;
    height: 96px;
    object-fit: cover;
    border-radius: var(--c-radius-sm);
    border: 1px solid var(--c-border);
}

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

.zf57f2list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.76rem;
    color: var(--c-muted);
    margin-bottom: 0.3rem;
}

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

.zf57f2list-title {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.zf57f2list-title a {
    color: var(--c-text);
}

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

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

.zf57f2pagebar {
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--c-border);
}

.zf57f2pagebar .pagelist,
.zf57f2pagelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    list-style: none;
}

.zf57f2pagebar .pagelist a,
.zf57f2pagebar .pagelist span,
.zf57f2pagelist a,
.zf57f2pagelist span {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    font-size: 0.8rem;
    color: var(--c-text);
    background: var(--c-bg);
}

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

.zf57f2pagebar .pagelist .thisclass a,
.zf57f2pagelist .thisclass a {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
}

/* ===== 侧栏 ===== */
.zf57f2sidebar {
    position: sticky;
    top: calc(var(--c-header-h) + 10px);
}

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

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

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

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

.zf57f2sidebar-list a {
    font-size: 0.83rem;
    color: var(--c-text);
}

.zf57f2sidebar-list a:hover,
.zf57f2sidebar-list .zf57f2this a {
    color: var(--c-accent);
}

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

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

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

.zf57f2sidebar-thumb {
    flex: 0 0 60px;
    min-width: 0;
}

.zf57f2sidebar-thumb img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--c-border);
}

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

.zf57f2sidebar-article-info > a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--c-text);
    margin-bottom: 0.12rem;
}

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

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

/* ===== 站点地图 ===== */
.zf57f2sitemap-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 1.15rem;
    box-shadow: var(--c-shadow);
}

.zf57f2sitemap-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.3rem 1rem;
}

.zf57f2sitemap-list a {
    font-size: 0.83rem;
    color: var(--c-text);
    display: block;
    padding: 0.28rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

/* ===== 锚点偏移 ===== */
section[id] {
    scroll-margin-top: calc(var(--c-header-h) + 10px);
}

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

    .zf57f2post-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .zf57f2feed-lead {
        grid-row: auto;
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .zf57f2showcase-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zf57f2showcase-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .zf57f2showcase-btns {
        justify-content: center;
    }

    .zf57f2showcase-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .zf57f2strip-item:nth-child(2) {
        border-right: none;
    }

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

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

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

    .zf57f2focus-row {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .zf57f2focus-labels {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        margin-top: 0.2rem;
    }

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

    .zf57f2sidebar {
        position: static;
    }

    .zf57f2post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .zf57f2menu-toggle {
        display: flex;
    }

    .zf57f2header-inner {
        flex-wrap: wrap;
        position: relative;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .zf57f2logo-tagline {
        max-width: 160px;
    }

    .zf57f2main-nav {
        display: none;
        width: 100%;
        order: 10;
        background: var(--c-primary-mid);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--c-radius-sm);
        padding: 0.4rem;
        margin-top: 0.4rem;
    }

    .zf57f2main-nav.zf57f2active {
        display: block;
    }

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

    .zf57f2main-nav a {
        padding: 0.55rem 0.65rem;
    }

    .zf57f2showcase {
        padding-top: 1.5rem;
    }

    .zf57f2showcase-inner {
        padding-bottom: 1.25rem;
    }

    .zf57f2showcase-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .zf57f2strip-item {
        padding: 0.65rem 0.35rem;
    }

    .zf57f2strip-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .zf57f2strip-item:nth-child(even) {
        border-right: none;
    }

    .zf57f2panel {
        padding: 1rem 0.85rem;
    }

    .zf57f2panel-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .zf57f2chip-group {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.15rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .zf57f2chip-group::-webkit-scrollbar {
        display: none;
    }

    .zf57f2live-row {
        grid-template-columns: 1fr;
    }

    .zf57f2focus-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .zf57f2plan-item {
        grid-template-columns: 50px minmax(0, 1fr);
    }

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

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

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

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

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

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

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

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

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

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

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

    .zf57f2showcase-btns {
        flex-direction: column;
        width: 100%;
    }

    .zf57f2showcase-btn {
        width: 100%;
    }

    .zf57f2showcase-strip-inner {
        grid-template-columns: 1fr;
    }

    .zf57f2strip-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

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

    .zf57f2post-thumb img {
        height: 125px;
    }
}

@media (hover: none) {
    .zf57f2live-tile:hover,
    .zf57f2focus-row:hover,
    .zf57f2post-card:hover {
        box-shadow: none;
    }
}
