/* ============================================================
   xk002 翡翠绿深色系体育企业模板 · 自实现样式（无外部依赖）
   全站统一色板：墨绿底 + 翡翠强调色
   ============================================================ */
:root {
    --g-bg: #071510;
    --g-bg2: #0a1d15;
    --g-surface: #0f251c;
    --g-surface2: #143024;
    --g-accent: #22e58c;
    --g-accent2: #0fb86f;
    --g-text: #e8f4ee;
    --g-muted: #8fada0;
    --g-line: rgba(34, 229, 140, .14);
    --g-line2: rgba(255, 255, 255, .07);
    --g-radius: 18px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: var(--g-text); background: var(--g-bg); line-height: 1.6; font-size: 16px;
}
a { color: var(--g-text); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--g-accent); }
img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.35; font-weight: 700; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
strong, b { font-weight: 700; }
::selection { background: rgba(34, 229, 140, .35); }

/* ============ 顶部导航（深色吸顶） ============ */
.site-header {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(7, 21, 16, .88); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--g-line);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; min-height: 70px; gap: 10px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; }
.brand-mark { color: var(--g-accent); font-size: 1.1rem; text-shadow: 0 0 14px rgba(34, 229, 140, .8); }
.brand-text { color: var(--g-text); letter-spacing: 1px; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-register {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--g-accent), var(--g-accent2)); color: #04140d;
    font-weight: 800; font-size: .95rem; padding: 9px 24px; border-radius: 999px;
    box-shadow: 0 4px 18px rgba(34, 229, 140, .35); transition: all .3s ease;
}
.btn-register:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34, 229, 140, .5); color: #04140d; }
.main-nav { display: none; width: 100%; padding-bottom: 14px; }
.main-nav.open { display: block; }
.main-nav > ul { display: flex; flex-direction: column; gap: 4px; }
.main-nav li { position: relative; }
.main-nav li > a {
    display: block; padding: 10px 16px; border-radius: 10px;
    font-size: .98rem; font-weight: 600; color: var(--g-muted);
}
.main-nav li > a:hover { background: var(--g-surface); color: var(--g-accent); }
.main-nav li.active > a { color: var(--g-accent); background: rgba(34, 229, 140, .1); }
.main-nav .dropdown {
    display: none; position: absolute; left: 0; top: 100%; min-width: 160px;
    background: var(--g-surface2); border: 1px solid var(--g-line); border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .5); padding: 6px; z-index: 20;
}
.main-nav li:hover > .dropdown { display: block; }
.main-nav .dropdown li a { font-size: .9rem; font-weight: 500; padding: 8px 12px; }
.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 36px; padding: 6px 8px; background: transparent;
    border: 1px solid var(--g-line); border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--g-text); border-radius: 2px; transition: all .3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 992px) {
    .nav-bar { flex-wrap: nowrap; }
    .main-nav { display: block; width: auto; padding-bottom: 0; flex: 1; }
    .main-nav > ul { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .nav-toggle { display: none; }
}

/* ============ Hero 左右分栏 ============ */
.sec-hero { position: relative; overflow: hidden; padding: 72px 0 84px; background: linear-gradient(180deg, var(--g-bg2), var(--g-bg)); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow-a { width: 480px; height: 480px; background: rgba(34, 229, 140, .12); top: -160px; right: -80px; }
.hero-glow-b { width: 420px; height: 420px; background: rgba(15, 184, 111, .1); bottom: -200px; left: -120px; }
.sec-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(34, 229, 140, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 229, 140, .045) 1px, transparent 1px);
    background-size: 44px 44px; mask-image: radial-gradient(700px 500px at 30% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(700px 500px at 30% 30%, #000 30%, transparent 75%);
}
.sec-hero .container { position: relative; z-index: 2; }
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-chip {
    display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; letter-spacing: 1px;
    color: var(--g-accent); border: 1px solid var(--g-line); background: rgba(34, 229, 140, .08);
    border-radius: 999px; padding: 6px 16px; margin-bottom: 22px;
}
.hero-left h1 { font-size: 2.35rem; line-height: 1.32; margin-bottom: 18px; }
.hero-left h1 em { font-style: normal; color: var(--g-accent); text-shadow: 0 0 26px rgba(34, 229, 140, .45); }
.hero-desc { color: var(--g-muted); font-size: 1rem; line-height: 1.9; margin-bottom: 28px; max-width: 560px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.btn-solid {
    display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 999px;
    background: linear-gradient(135deg, var(--g-accent), var(--g-accent2)); color: #04140d;
    font-weight: 800; box-shadow: 0 6px 22px rgba(34, 229, 140, .32); transition: all .3s ease;
}
.btn-solid:hover { transform: translateY(-2px); color: #04140d; box-shadow: 0 10px 30px rgba(34, 229, 140, .45); }
.btn-line {
    display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 999px;
    border: 1px solid var(--g-line); color: var(--g-text); font-weight: 600; transition: all .25s ease;
}
.btn-line:hover { border-color: var(--g-accent); color: var(--g-accent); background: rgba(34, 229, 140, .06); }
.hero-trust { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-item b { display: block; font-size: 1.5rem; color: var(--g-accent); font-weight: 900; }
.trust-item span { font-size: .82rem; color: var(--g-muted); }
.hero-frame { position: relative; }
.hero-frame img {
    width: 100%; border-radius: 26px; display: block;
    border: 1px solid var(--g-line); box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 46px rgba(34, 229, 140, .12);
}
.float-chip {
    position: absolute; display: inline-flex; align-items: center; gap: 6px;
    background: rgba(10, 29, 21, .85); border: 1px solid var(--g-line); border-radius: 12px;
    padding: 9px 16px; font-size: .84rem; font-weight: 700; color: var(--g-text);
    backdrop-filter: blur(6px); box-shadow: 0 10px 26px rgba(0, 0, 0, .4);
    animation: chipFloat 4.5s ease-in-out infinite;
}
.chip-a { top: 7%; left: -8px; }
.chip-b { bottom: 26%; right: -6px; animation-delay: 1.2s; }
.chip-c { bottom: -4%; left: 10%; animation-delay: 2.4s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 991px) {
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-left h1 { font-size: 1.8rem; }
    .float-chip { display: none; }
}

/* ============ 数据计数条 ============ */
.sec-counter { border-top: 1px solid var(--g-line); border-bottom: 1px solid var(--g-line); background: linear-gradient(90deg, rgba(34, 229, 140, .05), transparent 45%, rgba(34, 229, 140, .05)); }
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.counter-item { text-align: center; padding: 30px 10px; position: relative; }
.counter-item + .counter-item::before { content: ""; position: absolute; left: 0; top: 26%; height: 48%; width: 1px; background: var(--g-line); }
.counter-item b { display: block; font-size: 1.9rem; font-weight: 900; color: var(--g-accent); text-shadow: 0 0 22px rgba(34, 229, 140, .4); }
.counter-item span { font-size: .85rem; color: var(--g-muted); }
@media (max-width: 767px) {
    .counter-row { grid-template-columns: repeat(2, 1fr); }
    .counter-item:nth-child(n+3)::before { display: none; }
    .counter-item:nth-child(2n)::before { display: block; }
    .counter-item:nth-child(2n+1) { border-top: 1px solid var(--g-line2); }
    .counter-item:nth-child(n+3) { border-top: 1px solid var(--g-line2); }
}

/* ============ 通用小节标题 ============ */
.sec-eyebrow { text-align: center; font-size: .78rem; letter-spacing: 4px; color: var(--g-accent); opacity: .85; margin-bottom: 10px; font-weight: 700; }
.sec-eyebrow.left { text-align: left; }
.sec-title { text-align: center; font-size: 1.85rem; margin-bottom: 12px; }
.sec-title.left { text-align: left; }
.sec-sub { text-align: center; color: var(--g-muted); font-size: .95rem; margin-bottom: 40px; }
.sec-sub.left { text-align: left; margin-bottom: 0; max-width: 420px; }

/* ============ 功能区 A：Bento 宫格 ============ */
.sec-bento { padding: 78px 0; background: var(--g-bg); }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(170px, auto); gap: 16px; }
.bento-tile {
    background: linear-gradient(160deg, var(--g-surface), var(--g-bg2));
    border: 1px solid var(--g-line2); border-radius: var(--g-radius);
    padding: 26px; position: relative; overflow: hidden; transition: all .3s ease;
    display: flex; flex-direction: column; justify-content: center;
}
.bento-tile::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(340px 170px at 15% 0%, rgba(34, 229, 140, .09), transparent 65%);
    opacity: 0; transition: opacity .3s ease;
}
.bento-tile:hover { border-color: var(--g-line); transform: translateY(-4px); }
.bento-tile:hover::after { opacity: 1; }
.bento-ico {
    width: 46px; height: 46px; border-radius: 12px; font-size: 1.35rem;
    background: rgba(34, 229, 140, .12); border: 1px solid var(--g-line);
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.bento-tile h3 { font-size: 1.08rem; margin-bottom: 8px; }
.bento-tile p { font-size: .86rem; color: var(--g-muted); line-height: 1.75; }
.bento-wide { grid-column: span 2; }
.bento-hero {
    grid-column: span 2; grid-row: span 2; padding: 0; justify-content: flex-end;
    border: 1px solid var(--g-line);
}
.bento-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: transform .5s ease; }
.bento-hero:hover img { transform: scale(1.05); }
.bento-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4, 16, 11, .92) 88%); border-radius: inherit; z-index: 1; }
.bento-hero-text { position: relative; z-index: 2; padding: 28px; }
.bento-hero-text h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--g-text); }
.bento-hero-text p { font-size: .9rem; }
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-hero { grid-column: span 2; grid-row: span 1; min-height: 260px; }
    .bento-wide { grid-column: span 2; }
}
@media (max-width: 575px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-hero, .bento-wide { grid-column: span 1; }
}

/* ============ 功能区 B：斜切大图业务板块 ============ */
.sec-plaza { padding: 78px 0; background: linear-gradient(180deg, var(--g-bg2), var(--g-bg)); border-top: 1px solid var(--g-line2); border-bottom: 1px solid var(--g-line2); }
.plaza-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plaza-card {
    position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--g-line2);
    background: var(--g-surface); transition: all .35s ease;
}
.plaza-card:hover { transform: translateY(-8px) rotate(-.6deg); border-color: var(--g-line); box-shadow: 0 26px 50px rgba(0, 0, 0, .5), 0 0 30px rgba(34, 229, 140, .1); }
.plaza-card:nth-child(2):hover { transform: translateY(-8px) rotate(.6deg); }
.plaza-num {
    position: absolute; top: 12px; right: 18px; z-index: 3; font-size: 3.2rem; font-weight: 900;
    color: transparent; -webkit-text-stroke: 1.5px rgba(34, 229, 140, .55); line-height: 1;
}
.plaza-media { height: 210px; overflow: hidden; }
.plaza-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.plaza-card:hover .plaza-media img { transform: scale(1.08); }
.plaza-body { padding: 22px 24px 26px; }
.plaza-body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.plaza-body p { font-size: .87rem; color: var(--g-muted); line-height: 1.75; margin-bottom: 16px; }
.plaza-more { display: inline-flex; align-items: center; font-size: .86rem; font-weight: 700; color: var(--g-accent); }
.plaza-more:hover { letter-spacing: 1px; }
@media (max-width: 991px) { .plaza-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ============ 功能区 C：时间轴 ============ */
.sec-flow { padding: 78px 0; background: var(--g-bg); }
.flow-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.flow-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.flow-line::before {
    content: ""; position: absolute; top: 24px; left: 8%; right: 8%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--g-accent) 18%, var(--g-accent) 82%, transparent);
    opacity: .35;
}
.flow-step { position: relative; text-align: center; }
.flow-dot {
    display: inline-flex; width: 48px; height: 48px; border-radius: 50%; position: relative; z-index: 2;
    align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; color: #04140d;
    background: linear-gradient(135deg, var(--g-accent), var(--g-accent2));
    box-shadow: 0 0 0 6px rgba(34, 229, 140, .12), 0 8px 22px rgba(34, 229, 140, .3); margin-bottom: 18px;
}
.flow-card {
    background: rgba(255, 255, 255, .03); border: 1px solid var(--g-line2); border-radius: var(--g-radius);
    padding: 22px 18px; backdrop-filter: blur(6px); transition: all .3s ease; height: calc(100% - 66px);
}
.flow-card:hover { border-color: var(--g-line); transform: translateY(-4px); background: var(--g-surface); }
.flow-card h4 { font-size: 1.02rem; margin-bottom: 10px; }
.flow-card p { font-size: .85rem; color: var(--g-muted); line-height: 1.75; }
@media (max-width: 991px) {
    .flow-line { grid-template-columns: repeat(2, 1fr); }
    .flow-line::before { display: none; }
}
@media (max-width: 575px) { .flow-line { grid-template-columns: 1fr; } }

/* ============ 资讯区：左精选右列表 ============ */
.sec-news { padding: 78px 0; background: linear-gradient(180deg, var(--g-bg2), var(--g-bg)); border-top: 1px solid var(--g-line2); }
.news-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: stretch; }
.news-featured {
    display: flex; flex-direction: column; background: var(--g-surface); border: 1px solid var(--g-line2);
    border-radius: var(--g-radius); overflow: hidden; transition: all .3s ease;
}
.news-featured:hover { border-color: var(--g-line); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, .45); }
.featured-media { position: relative; height: 320px; overflow: hidden; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-featured:hover .featured-media img { transform: scale(1.05); }
.featured-tag {
    position: absolute; top: 16px; left: 16px; font-size: .76rem; font-weight: 800; color: #04140d;
    background: linear-gradient(135deg, var(--g-accent), var(--g-accent2)); border-radius: 999px; padding: 5px 14px;
}
.featured-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.featured-body h3 { font-size: 1.25rem; line-height: 1.5; }
.featured-body p { color: var(--g-muted); font-size: .9rem; line-height: 1.8; }
.featured-body time { margin-top: auto; color: var(--g-accent); font-size: .84rem; font-weight: 700; }
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-row {
    display: flex; gap: 16px; align-items: center; background: var(--g-surface);
    border: 1px solid var(--g-line2); border-radius: 14px; padding: 12px; transition: all .25s ease; flex: 1;
}
.news-row:hover { border-color: var(--g-line); background: var(--g-surface2); transform: translateX(4px); }
.row-media { flex: 0 0 108px; height: 76px; border-radius: 10px; overflow: hidden; }
.row-media img { width: 100%; height: 100%; object-fit: cover; }
.row-body { min-width: 0; }
.row-body h4 {
    font-size: .93rem; line-height: 1.55; margin-bottom: 8px; font-weight: 600;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.row-body time { font-size: .78rem; color: var(--g-muted); }
@media (max-width: 991px) { .news-split { grid-template-columns: 1fr; } .featured-media { height: 240px; } }
@media (max-width: 575px) { .row-media { flex-basis: 86px; height: 62px; } }

/* ============ 口碑：引言卡 ============ */
.sec-voice { padding: 78px 0; background: var(--g-bg); }
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.voice-card {
    position: relative; background: linear-gradient(160deg, var(--g-surface), var(--g-bg2));
    border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 30px 28px 26px;
    transition: all .3s ease; overflow: hidden;
}
.voice-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--g-accent), transparent);
}
.voice-card:hover { border-color: var(--g-line); transform: translateY(-4px); }
.voice-mark { position: absolute; top: 6px; right: 18px; font-size: 3.4rem; font-weight: 900; color: rgba(34, 229, 140, .16); line-height: 1; }
.voice-card > p { color: #c6ddd2; font-size: .95rem; line-height: 1.9; margin-bottom: 18px; }
.voice-user { display: flex; justify-content: space-between; align-items: center; }
.voice-id { display: inline-flex; align-items: center; gap: 10px; }
.voice-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid var(--g-line); box-shadow: 0 0 0 3px rgba(34, 229, 140, .1); }
.voice-user b { font-size: .92rem; }
.voice-user span { color: var(--g-accent); letter-spacing: 3px; font-size: .9rem; }
.voice-user .voice-id { color: inherit; letter-spacing: normal; }
@media (max-width: 767px) { .voice-grid { grid-template-columns: 1fr; } }

/* ============ App 下载：左右分栏 ============ */
.sec-appdl { padding: 78px 0; background: radial-gradient(700px 420px at 85% 40%, rgba(34, 229, 140, .12), transparent 70%), linear-gradient(180deg, var(--g-bg2), var(--g-bg)); border-top: 1px solid var(--g-line2); }
.appdl-split { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: center; }
.appdl-left h2 { font-size: 1.9rem; line-height: 1.4; margin-bottom: 24px; }
.appdl-feats { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.appdl-feats li { color: #c6ddd2; font-size: .96rem; }
.appdl-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.appdl-note { font-size: .8rem; color: var(--g-muted); }
.appdl-right { position: relative; text-align: center; }
.appdl-right img { width: min(380px, 86%); border-radius: 26px; border: 1px solid var(--g-line); box-shadow: 0 26px 60px rgba(0, 0, 0, .55), 0 0 44px rgba(34, 229, 140, .14); }
@media (max-width: 991px) { .appdl-split { grid-template-columns: 1fr; } .appdl-right { order: -1; } }

/* ============ 页脚（全新扁平水印风） ============ */
#site-footer { position: relative; background: #04100b; border-top: 1px solid var(--g-line); overflow: hidden; padding: 56px 0 0; }
.footer-glow { position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 720px; height: 240px; background: radial-gradient(closest-side, rgba(34, 229, 140, .14), transparent); pointer-events: none; }
.footer-brandline { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.footer-wordmark {
    font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; line-height: 1;
    color: transparent; -webkit-text-stroke: 1.5px rgba(34, 229, 140, .4); letter-spacing: 2px;
}
.footer-wordmark-sub { font-size: .82rem; letter-spacing: 6px; color: rgba(143, 173, 160, .6); font-weight: 700; }
.footer-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; padding-bottom: 36px; }
.footer-desc { color: var(--g-muted); font-size: .88rem; line-height: 1.95; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.contact-item { font-size: .88rem; color: #b7d4c6; }
.contact-item a { color: var(--g-accent); }
.footer-links { display: flex; flex-direction: column; gap: 20px; }
.footer-navrow { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-navrow a {
    font-size: .85rem; color: var(--g-text); border: 1px solid var(--g-line2);
    border-radius: 999px; padding: 7px 18px; transition: all .25s ease;
}
.footer-navrow a:hover { border-color: var(--g-accent); color: var(--g-accent); background: rgba(34, 229, 140, .07); }
.footer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-tags a { font-size: .8rem; color: var(--g-muted); transition: color .25s ease; }
.footer-tags a:hover { color: var(--g-accent); }
.footer-bottom {
    border-top: 1px solid var(--g-line2); padding: 20px 0 26px; text-align: center;
    font-size: .82rem; color: rgba(143, 173, 160, .75); display: flex; flex-direction: column; gap: 6px;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--g-accent); }
.footer-icp { display: block; }
@media (max-width: 991px) { .footer-split { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   内页（栏目 / 详情 / 单页 / 标签 / 搜索 / 图集）
   ============================================================ */
.site-main { min-height: 55vh; }
.sec-list, .sec-article { background: var(--g-bg); }
.sec-list, .sec-article { padding: 30px 0 56px; }

.breadcrumb-nav { padding: 4px 0 16px; font-size: .88rem; color: var(--g-muted); }
.breadcrumb-nav ul { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.breadcrumb-nav a { color: var(--g-muted); }
.breadcrumb-nav a:hover { color: var(--g-accent); }
.breadcrumb-nav li + li::before { content: "»"; margin: 0 6px; color: #3d5c4f; }

.nav-scroll { display: flex; overflow-x: auto; gap: 10px; margin-bottom: 24px; -ms-overflow-style: none; scrollbar-width: none; padding-bottom: 4px; }
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-scroll a {
    flex: 0 0 auto; padding: 8px 20px; border-radius: 999px; font-size: .92rem;
    background: var(--g-surface); border: 1px solid var(--g-line2); color: var(--g-muted); transition: all .25s ease;
}
.nav-scroll a:hover { border-color: var(--g-accent); color: var(--g-accent); }
.nav-scroll a.on { background: linear-gradient(135deg, var(--g-accent), var(--g-accent2)); border-color: transparent; color: #04140d; font-weight: 800; }

.list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .list-grid { grid-template-columns: 1fr; } }
.list-card {
    background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: 14px; overflow: hidden; display: block;
    transition: all .3s ease;
}
.list-card:hover { transform: translateY(-4px); border-color: var(--g-line); box-shadow: 0 16px 34px rgba(0, 0, 0, .45); }
.list-card .thumb { display: block; height: 168px; overflow: hidden; }
.list-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.list-card:hover .thumb img { transform: scale(1.06); }
.list-card .info { padding: 14px 16px 16px; }
.list-card .info h3 {
    font-size: .95rem; line-height: 1.5; margin-bottom: 10px; font-weight: 600;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.list-card .meta { display: flex; justify-content: space-between; font-size: .78rem; color: var(--g-muted); }

.list-rows { display: flex; flex-direction: column; gap: 16px; }
.list-row {
    background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: 14px; overflow: hidden; display: flex; gap: 18px;
    padding: 16px; transition: all .3s ease;
}
.list-row:hover { transform: translateY(-3px); border-color: var(--g-line); }
.list-row .thumb { flex: 0 0 200px; height: 130px; overflow: hidden; border-radius: 10px; }
.list-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.list-row .info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.list-row .info h4 { font-size: 1.02rem; line-height: 1.5; }
.list-row .desc { color: var(--g-muted); font-size: .86rem; margin: 8px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.list-row .meta { display: flex; gap: 18px; font-size: .8rem; color: var(--g-muted); }
@media (max-width: 575px) {
    .list-row { flex-direction: column; }
    .list-row .thumb { flex: none; width: 100%; height: 160px; }
}

.pagination-wrap { margin-top: 30px; }
.pagination-wrap .pagination, .pagination-wrap ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; list-style: none; }
.pagination-wrap a, .pagination-wrap span {
    display: inline-block; min-width: 38px; text-align: center; padding: 8px 12px;
    border: 1px solid var(--g-line2); border-radius: 8px; background: var(--g-surface);
    font-size: .9rem; color: var(--g-muted); transition: all .25s ease;
}
.pagination-wrap a:hover { border-color: var(--g-accent); color: var(--g-accent); }
.pagination-wrap .active a, .pagination-wrap .active, .pagination-wrap span.current {
    background: linear-gradient(135deg, var(--g-accent), var(--g-accent2)); border-color: transparent; color: #04140d; font-weight: 800;
}

.article-topbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: .88rem; color: var(--g-muted); }
.article-topbar a { color: var(--g-muted); }
.article-topbar a:hover { color: var(--g-accent); }
.detail-time { color: var(--g-muted); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; align-items: start; }
@media (min-width: 992px) { .article-layout { grid-template-columns: 1fr 2fr; gap: 26px; } }
.article-head-card { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 26px 28px; }
@media (min-width: 992px) { .article-head-card { position: sticky; top: 92px; } }
.article-head-card h1 { font-size: 1.4rem; line-height: 1.5; word-break: break-all; margin-bottom: 14px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .84rem; color: var(--g-muted); }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.detail-tags a { font-size: .8rem; color: var(--g-accent); background: rgba(34, 229, 140, .1); border: 1px solid var(--g-line); border-radius: 999px; padding: 4px 14px; transition: all .25s ease; }
.detail-tags a:hover { background: var(--g-accent); color: #04140d; }
.article-nav { display: grid; grid-template-columns: 1fr; gap: 14px; }
.nav-cell { background: var(--g-bg2); border: 1px solid var(--g-line2); border-radius: 10px; padding: 12px 16px; }
.nav-cell p { font-size: .78rem; color: var(--g-muted); margin-bottom: 4px; }
.nav-cell a { font-size: .88rem; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.nav-cell a:hover { color: var(--g-accent); }

.article-body-card { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 26px 28px; }
.article-body { line-height: 1.95; font-size: 16px; color: #cfe3d8; word-break: break-word; }
.article-body p { margin-bottom: 1em; }
.article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 10px 0; }
.article-body h1, .article-body h2, .article-body h3, .article-body h4 { margin: 1.2em 0 .6em; color: var(--g-text); }
.article-body ul, .article-body ol { padding-left: 1.4em; margin-bottom: 1em; list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body blockquote { border-left: 4px solid var(--g-accent); background: rgba(34, 229, 140, .06); padding: 12px 18px; margin: 1em 0; border-radius: 0 10px 10px 0; color: var(--g-muted); }
.article-body table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.article-body table th, .article-body table td { border: 1px solid var(--g-line2); padding: 8px 12px; font-size: .9rem; }

.related-section { margin-top: 22px; }
.related-section h3 { font-size: 1.1rem; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.related-card { background: var(--g-bg2); border: 1px solid var(--g-line2); border-radius: 12px; overflow: hidden; padding-bottom: 12px; transition: all .3s ease; }
.related-card:hover { border-color: var(--g-line); transform: translateY(-3px); }
.related-card .thumb { display: block; height: 130px; overflow: hidden; }
.related-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-card:hover .thumb img { transform: scale(1.06); }
.related-card h4 { font-size: .88rem; line-height: 1.5; padding: 10px 12px 4px; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-card .date { font-size: .76rem; color: var(--g-muted); padding: 0 12px; }

.widget { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); margin-bottom: 20px; overflow: hidden; }
.widget-title { font-size: 1rem; font-weight: 700; padding: 16px 20px; border-bottom: 1px solid var(--g-line2); position: relative; }
.widget-title::before { content: ""; display: inline-block; width: 4px; height: 15px; border-radius: 2px; background: linear-gradient(180deg, var(--g-accent), var(--g-accent2)); margin-right: 9px; vertical-align: -2px; }
.widget-body { padding: 16px 20px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-cloud a { font-size: .82rem; color: var(--g-muted); background: var(--g-bg2); border: 1px solid var(--g-line2); border-radius: 999px; padding: 5px 14px; transition: all .25s ease; }
.tag-cloud a:hover { color: var(--g-accent); border-color: var(--g-accent); background: rgba(34, 229, 140, .07); }

.page-single { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 34px 36px; }
.page-single-head { text-align: center; margin-bottom: 26px; }
.page-single-head h1 { font-size: 1.6rem; }
.page-single-line { display: block; width: 56px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--g-accent), var(--g-accent2)); margin: 12px auto 0; }
@media (max-width: 575px) { .page-single { padding: 22px 16px; } }

.tag-detail-header { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, var(--g-surface2), var(--g-surface)); border: 1px solid var(--g-line); color: var(--g-text); border-radius: var(--g-radius); padding: 24px 28px; margin-bottom: 22px; }
.tag-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(34, 229, 140, .12); border: 1px solid var(--g-line); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; color: var(--g-accent); }
.tag-info h2 { font-size: 1.25rem; margin-bottom: 4px; }
.tag-info p { font-size: .85rem; color: var(--g-muted); }

.search-section { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 26px 28px; margin-bottom: 22px; }
.search-section h2 { font-size: 1.15rem; margin-bottom: 16px; }
.search-form { display: flex; gap: 10px; }
.search-form input[type="text"] {
    flex: 1; min-width: 0; border: 1px solid var(--g-line2); border-radius: 10px; background: var(--g-bg2);
    padding: 11px 16px; font-size: .95rem; color: var(--g-text); outline: none; transition: border .25s ease;
}
.search-form input[type="text"]:focus { border-color: var(--g-accent); }
.search-form input[type="submit"] {
    border: none; border-radius: 10px; padding: 11px 26px; font-size: .95rem; font-weight: 800;
    color: #04140d; background: linear-gradient(135deg, var(--g-accent), var(--g-accent2)); cursor: pointer;
}
.empty-tip { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 46px 20px; text-align: center; color: var(--g-muted); }
.empty-emoji { font-size: 2.4rem; margin-bottom: 10px; }

.diy-page { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 34px 36px; margin: 26px 0; }
.diy-page h1 { font-size: 1.6rem; margin-bottom: 20px; }

.img-page-nav { text-align: center; padding: 20px 0; }
.img-page-nav ul { display: inline-flex; gap: 6px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
.img-page-nav ul li a, .img-page-nav ul li span {
    display: block; padding: 8px 14px; font-size: 14px; border-radius: 10px;
    border: 1px solid var(--g-line2); color: var(--g-muted); background: var(--g-surface); transition: all .25s ease;
}
.img-page-nav ul li a:hover { border-color: var(--g-accent); color: var(--g-accent); }
.img-page-nav ul li.active a, .img-page-nav ul li.active span { background: var(--g-accent); border-color: var(--g-accent); color: #04140d; font-weight: 700; }

#backTop {
    display: none; position: fixed; right: 18px; bottom: 60px; z-index: 1040;
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--g-line); cursor: pointer;
    background: var(--g-surface2); color: var(--g-accent);
    font-size: 1.1rem; box-shadow: 0 8px 22px rgba(0, 0, 0, .45);
}
#backTop:hover { transform: translateY(-2px); background: var(--g-accent); color: #04140d; }

#comments { background: var(--g-surface); border: 1px solid var(--g-line2); border-radius: var(--g-radius); padding: 26px 28px; margin-top: 22px; }
