/* ===== 体育直播主题 · 墨绿 + 赤陶橙 ===== */
: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;
}

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

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

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

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

.z1fc14logo h1 a {
    color: #fff;
}

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

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

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

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

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

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

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

.z1fc14menu-toggle.z1fc14active span:nth-child(2) {
    opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z1fc14panel-tone .z1fc14chip {
    background: var(--c-surface);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z1fc14panel-tone .z1fc14focus-row {
    background: var(--c-surface);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== 专栏精选 ===== */
.z1fc14more-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z1fc14breadcrumb span {
    margin: 0 0.3rem;
}

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

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

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

.z1fc14article-panel,
.z1fc14list-panel,
.z1fc14related-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z1fc14pagebar .pagelist a,
.z1fc14pagebar .pagelist span,
.z1fc14pagelist a,
.z1fc14pagelist 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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z1fc14sidebar {
        position: static;
    }

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

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

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

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

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

    .z1fc14main-nav.z1fc14active {
        display: block;
    }

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

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

    .z1fc14showcase {
        padding-top: 1.5rem;
    }

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

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

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

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

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

    .z1fc14panel {
        padding: 1rem 0.85rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z1fc14showcase-btn {
        width: 100%;
    }

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

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

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

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

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

@media (hover: none) {
    .z1fc14live-tile:hover,
    .z1fc14focus-row:hover,
    .z1fc14post-card:hover {
        box-shadow: none;
    }
}
