/* ============================================
   高才通信息網 - 全局样式 v2（视觉升级版）
   品牌色：#E60012 ｜ 浅灰底 + 白色卡片
   移动端优先，现代精致风格
   ============================================ */

/* ---- 设计变量 ---- */
:root {
    --brand: #E60012;
    --brand-dark: #C4000F;
    --brand-deep: #8F000A;
    --brand-grad: linear-gradient(135deg, #FF3B4B 0%, #E60012 48%, #C4000F 100%);
    --brand-soft: #FFF1F2;
    --ink: #17181C;
    --ink-2: #4E5561;
    --ink-3: #98A0AC;
    --bg: #F5F6F8;
    --card: #FFFFFF;
    --line: #E8EAEF;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(23,24,28,.04), 0 2px 8px rgba(23,24,28,.05);
    --shadow: 0 2px 6px rgba(23,24,28,.05), 0 14px 30px rgba(23,24,28,.08);
    --shadow-lg: 0 4px 14px rgba(23,24,28,.06), 0 28px 56px rgba(23,24,28,.13);
    --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
            "Microsoft YaHei", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---- 基础重置 ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
ul, ol { list-style: none; }

::selection { background: var(--brand); color: #fff; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 18px;
}

/* 屏幕阅读器专用 */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- 按钮 ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 24px; border-radius: 999px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    border: 1.5px solid transparent; transition: all .2s ease;
    white-space: nowrap; letter-spacing: .2px;
}
.btn-primary {
    background: var(--brand-grad); color: #fff;
    box-shadow: 0 6px 16px rgba(230,0,18,.26);
}
.btn-primary:hover {
    background: var(--brand-dark); color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(230,0,18,.32);
}
.btn-ghost {
    background: #fff; color: var(--ink-2);
    border-color: var(--line); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ---- 顶部导航 ---- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 10px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo {
    width: 38px; height: 38px; flex: 0 0 38px;
    background: var(--brand-grad); color: #fff;
    border-radius: 11px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    box-shadow: 0 4px 10px rgba(230,0,18,.28);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.brand-name { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: .5px; }
.brand-slogan { font-size: 11px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main-nav { display: flex; gap: 2px; flex: 0 0 auto; }
.nav-toggle {
    display: none;
    align-items: center; justify-content: center;
    width: 42px; height: 42px;
    padding: 0; border: 0; border-radius: 12px;
    background: var(--brand-soft); cursor: pointer;
    flex: 0 0 auto;
    transition: background .18s ease;
}
.nav-toggle:hover { background: #FFE0E3; }
.nav-toggle-bar {
    display: block; width: 20px; height: 2px;
    background: var(--brand); border-radius: 2px;
    margin: 2.5px 0; transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-link {
    padding: 8px 12px; border-radius: 999px;
    font-size: 13.5px; font-weight: 500; color: var(--ink-2);
    white-space: nowrap; transition: all .18s ease;
}
.nav-link:hover { background: var(--brand-soft); color: var(--brand); }
.nav-link.active {
    background: var(--brand); color: #fff; font-weight: 600;
    box-shadow: 0 4px 10px rgba(230,0,18,.22);
}

/* 窄屏：隐藏 slogan，汉堡菜单下拉 */
@media (max-width: 639px) {
    .brand-slogan { display: none; }
    .header-inner { height: 58px; }
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        display: none; flex-direction: column; gap: 2px;
        margin: 0; padding: 10px;
        background: #fff; border-top: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 58px);
    }
    body.nav-open .main-nav { display: flex; }
    .nav-link {
        padding: 13px 14px; font-size: 15px;
        border-radius: 12px; white-space: normal;
    }
    .nav-link:hover { background: var(--brand-soft); }
}

/* ---- 首屏 Hero ---- */
.hero {
    position: relative;
    background:
        radial-gradient(620px 250px at 88% -60px, rgba(230,0,18,.13), transparent 62%),
        radial-gradient(520px 230px at -8% 115%, rgba(230,0,18,.09), transparent 62%),
        linear-gradient(180deg, #FFF7F7 0%, #FBFBFD 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(230,0,18,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230,0,18,.035) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 75%);
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr; gap: 28px;
    padding: 50px 0 44px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: #fff; border: 1px solid #FFD9DC; color: var(--brand);
    font-size: 12.5px; font-weight: 700; padding: 5px 14px; border-radius: 999px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}
.hero-eyebrow::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--brand); box-shadow: 0 0 0 3px rgba(230,0,18,.15);
}
.hero-title {
    margin-top: 16px;
    font-size: 31px; font-weight: 800; line-height: 1.28;
    color: var(--ink); letter-spacing: .3px;
}
.hero-title .accent { color: var(--brand); }
.hero-sub { margin-top: 12px; color: var(--ink-2); font-size: 15px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.stat-card {
    position: relative; overflow: hidden;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 18px 10px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.stat-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--brand-grad); opacity: .9;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-num {
    font-size: 30px; font-weight: 800; line-height: 1.15;
    background: var(--brand-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-num-red {
    background: var(--brand-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: 12.5px; color: var(--ink-3); }
/* ---- 搜索筛选栏 ---- */
.filter-bar { padding: 22px 0 10px; }
.filter-form {
    display: flex; flex-wrap: wrap; gap: 10px;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 16px;
    box-shadow: var(--shadow-sm);
}
.search-box { flex: 1 1 220px; min-width: 0; }
.select-box { flex: 0 1 200px; }
.search-box input, .select-box select {
    width: 100%; height: 46px; padding: 0 16px;
    border: 1.5px solid var(--line); border-radius: 999px;
    background: #fff; font-size: 15px; color: var(--ink);
    outline: none; transition: border-color .18s ease, box-shadow .18s ease;
}
.search-box input:focus, .select-box select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(230,0,18,.10);
}
.search-box input::placeholder { color: var(--ink-3); }

/* ---- 列表区 ---- */
.schools-section { padding: 18px 0 56px; }

.list-meta {
    display: flex; align-items: baseline; justify-content: space-between;
    flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.list-title { font-size: 21px; font-weight: 800; position: relative; padding-left: 13px; }
.list-title::before {
    content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px;
    border-radius: 4px; background: var(--brand-grad);
}
.list-desc { font-size: 14px; color: var(--ink-2); }
.list-desc strong { color: var(--brand); font-weight: 700; }

.school-list {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.school-item { border-bottom: 1px solid var(--line); }
.school-item:last-child { border-bottom: none; }
.school-link {
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 16px 18px;
    transition: background .16s ease;
}
.school-link::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--brand); opacity: 0; transition: opacity .16s ease;
}
.school-link:hover { background: var(--brand-soft); }
.school-link:hover::before { opacity: 1; }
.school-main { display: flex; flex-direction: column; min-width: 0; gap: 3px; }
.school-name {
    font-size: 16px; font-weight: 600; color: var(--ink);
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.school-en {
    font-size: 13px; color: var(--ink-3);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.school-side {
    display: flex; align-items: center; gap: 10px; flex: 0 0 auto;
}
.school-country {
    font-size: 12.5px; color: var(--ink-2);
    background: var(--bg); border: 1px solid var(--line);
    border-radius: 999px; padding: 4px 13px;
}
.school-arrow { color: var(--ink-3); font-size: 15px; transition: transform .15s ease, color .15s ease; }
.school-link:hover .school-arrow { transform: translateX(4px); color: var(--brand); }

/* ---- 徽标 ---- */
.badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    padding: 2px 9px; border-radius: 999px; vertical-align: 2px;
}
.badge-new { background: var(--brand-grad); color: #fff; box-shadow: 0 2px 6px rgba(230,0,18,.22); }
.badge-old { background: var(--bg); color: var(--ink-2); border: 1px solid var(--line); }

/* ---- 分页 ---- */
.pagination {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 8px; margin-top: 26px;
}
.page-btn {
    min-width: 42px; height: 42px; padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 999px;
    background: #fff; font-size: 14px; color: var(--ink-2);
    box-shadow: var(--shadow-sm);
    transition: all .15s ease;
}
.page-btn:hover:not(.disabled):not(.current) {
    border-color: var(--brand); color: var(--brand);
}
.page-btn.current {
    background: var(--brand-grad); border-color: transparent; color: #fff; font-weight: 700;
    box-shadow: 0 4px 12px rgba(230,0,18,.25);
}
.page-btn.disabled { color: var(--ink-3); background: var(--bg); cursor: not-allowed; box-shadow: none; }

/* ---- 空状态 ---- */
.empty-state {
    text-align: center; padding: 56px 20px;
    border: 1.5px dashed var(--line); border-radius: var(--radius-lg);
    background: var(--card);
}
.empty-icon { font-size: 40px; }
.empty-title { margin-top: 10px; font-size: 17px; font-weight: 700; }
.empty-desc { margin-top: 6px; color: var(--ink-2); font-size: 14px; }

/* ---- 首页内容板块导航 ---- */
.content-nav-section { padding: 38px 0 12px; }
.content-nav-title { font-size: 21px; font-weight: 800; margin-bottom: 18px; position: relative; padding-left: 13px; }
.content-nav-title::before {
    content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px;
    border-radius: 4px; background: var(--brand-grad);
}
.content-nav-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.content-nav-card {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 7px;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 20px 18px;
    box-shadow: var(--shadow-sm);
    transition: all .2s ease;
}
.content-nav-card::after {
    content: ""; position: absolute; right: -30px; top: -30px;
    width: 96px; height: 96px; border-radius: 50%;
    background: radial-gradient(circle, rgba(230,0,18,.11), transparent 70%);
    transition: transform .25s ease;
    pointer-events: none;
}
.content-nav-card:hover {
    border-color: #FFC9CE; transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.content-nav-card:hover::after { transform: scale(1.35); }
.cn-icon {
    width: 44px; height: 44px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; line-height: 1;
    background: var(--brand-soft); border: 1px solid #FFDDE0;
    transition: transform .2s ease;
}
.content-nav-card:hover .cn-icon { transform: scale(1.08) rotate(-4deg); }
.cn-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.cn-desc { font-size: 12.5px; color: var(--ink-3); line-height: 1.55; }

/* ---- 页脚说明 ---- */
.list-footnote { margin-top: 20px; }
.list-footnote p { font-size: 13px; color: var(--ink-3); }

/* ---- 详情页 ---- */
.breadcrumb { padding: 18px 0 4px; font-size: 13px; color: var(--ink-3); }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb-sep { margin: 0 8px; color: var(--line); }
.breadcrumb-current { color: var(--ink); font-weight: 500; }

.school-detail { padding: 20px 0 56px; }
.detail-card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    padding: 28px 24px;
}
.detail-header { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.detail-name { font-size: 26px; font-weight: 800; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.detail-en { margin-top: 6px; font-size: 15px; color: var(--ink-3); }

.detail-list { margin-top: 20px; }
.detail-row {
    display: flex; flex-wrap: wrap; gap: 8px 24px;
    padding: 14px 0; border-bottom: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: none; }
.detail-row dt {
    flex: 0 0 130px; font-size: 14px; color: var(--ink-3);
    font-weight: 500;
}
.detail-row dd { flex: 1 1 240px; font-size: 15px; color: var(--ink); }
.detail-muted { color: var(--ink-3); font-size: 13px; }
.country-chip {
    display: inline-block; background: var(--brand-soft); color: var(--brand);
    font-weight: 600; font-size: 13px; border-radius: 999px; padding: 4px 13px;
}
.detail-actions {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}

/* ---- 404 ---- */
.notfound { text-align: center; padding: 90px 16px; }
.notfound h1 { font-size: 28px; margin-bottom: 12px; }
.notfound p { color: var(--ink-2); margin-bottom: 8px; }
.notfound .btn { margin-top: 16px; }

/* ---- 页脚 ---- */
.site-footer {
    background: linear-gradient(180deg, #1E2024 0%, #141519 100%);
    color: #C7CBD1;
    padding: 40px 0 30px; margin-top: 32px;
}
.footer-top {
    display: flex; flex-wrap: wrap; gap: 28px;
    justify-content: space-between; align-items: flex-start;
}
.footer-brand { flex: 1 1 320px; min-width: 0; }
.footer-slogan { font-size: 16px; font-weight: 700; color: #fff; }
.footer-disclaimer {
    margin-top: 10px; font-size: 12.5px; line-height: 1.85;
    color: #A6ADB6; max-width: 560px;
}
.footer-friend { flex: 0 0 auto; }
.footer-friend-title {
    font-size: 12.5px; font-weight: 700; color: #8B909A;
    letter-spacing: 1px; margin-bottom: 10px;
}
.footer-friend-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-friend-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
    color: #DDE1E7; font-size: 13.5px; font-weight: 500;
    padding: 7px 15px; border-radius: 999px;
    transition: all .18s ease;
}
.footer-friend-link::before { content: "↗"; font-size: 12px; color: #8B909A; transition: color .18s ease; }
.footer-friend-link:hover {
    background: var(--brand); border-color: var(--brand); color: #fff;
}
.footer-friend-link:hover::before { color: #fff; }
.footer-copy {
    margin-top: 24px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 12px; color: #7C828B;
}

/* ---- 响应式：平板 & 桌面 ---- */
@media (min-width: 640px) {
    .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; padding: 64px 0 56px; }
    .hero-title { font-size: 40px; }
    .hero-stats { gap: 14px; }
    .stat-num { font-size: 34px; }
    .stat-card { padding: 22px 14px; }
    .school-name { font-size: 17px; }
    .school-link { padding: 17px 22px; }
    .detail-card { padding: 40px 36px; }
    .detail-name { font-size: 30px; }
    .content-nav-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 尊重系统减弱动态偏好 */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
}
/* ---- 内容板块页（guide / faq / compare / changes / data / articles） ---- */
.content-page { padding: 22px 0 56px; }
.content-card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    padding: 28px 24px;
}
.content-title { font-size: 27px; font-weight: 800; line-height: 1.35; }
.content-sub { margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.content-note {
    margin-top: 16px; padding: 13px 17px;
    background: var(--brand-soft); border-left: 4px solid var(--brand);
    border-radius: var(--radius-sm);
    font-size: 13.5px; color: var(--ink-2); line-height: 1.7;
}
.content-section { margin-top: 34px; }
.content-section h2 {
    font-size: 20px; font-weight: 700; color: var(--ink);
    padding-bottom: 10px; border-bottom: 2px solid var(--line);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 8px;
}
.content-section h2 .sec-no {
    flex: 0 0 auto; min-width: 27px; height: 27px;
    background: var(--brand-grad); color: #fff; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 6px;
    box-shadow: 0 3px 8px rgba(230,0,18,.22);
}
.content-section h3 { font-size: 16.5px; font-weight: 700; margin: 22px 0 10px; }
.content-section p { font-size: 15px; color: var(--ink-2); line-height: 1.85; margin: 10px 0; }
.content-section ul, .content-section ol { margin: 10px 0 10px 2px; }
.content-section li {
    font-size: 15px; color: var(--ink-2); line-height: 1.85;
    padding-left: 4px; margin-bottom: 6px;
    position: relative;
}
.content-section ul li { list-style: none; }
.content-section ul li::before {
    content: ""; position: absolute; left: -14px; top: 12px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand);
}
.content-section ol { list-style: decimal; padding-left: 22px; }
.content-section strong { color: var(--ink); font-weight: 700; }
.content-section .hl { color: var(--brand); font-weight: 700; }

/* 内容表格 */
.content-table-wrap { overflow-x: auto; margin: 14px 0; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.content-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 14.5px; }
.content-table th, .content-table td {
    padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line);
    vertical-align: top; line-height: 1.6;
}
.content-table thead th {
    background: var(--brand-soft); color: var(--ink); font-weight: 700;
    white-space: nowrap;
}
.content-table tbody tr:last-child td { border-bottom: none; }
.content-table tbody tr:hover { background: #FAFBFC; }

/* 对比卡片（compare 页） */
.plan-cards { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 16px 0; }
.plan-card {
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 20px 20px; background: var(--card);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan-card.tag-ttps { border-top: 4px solid var(--brand); }
.plan-card.tag-qmas { border-top: 4px solid #2563EB; }
.plan-card.tag-asm { border-top: 4px solid #059669; }
.plan-card h3 { margin: 0 0 4px; font-size: 16.5px; font-weight: 800; }
.plan-card .plan-tagline { font-size: 13px; color: var(--ink-3); margin-bottom: 10px; }
.plan-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.8; margin: 6px 0; }

/* FAQ 问答 */
.faq-list { margin-top: 4px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.6; }
.faq-q .faq-no {
    color: var(--brand); font-weight: 800; margin-right: 6px;
}
.faq-a { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); line-height: 1.85; padding-left: 24px; }

/* 名单变动条目 */
.change-block { margin: 16px 0; }
.change-item {
    display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
    padding: 13px 15px; border-radius: var(--radius-sm);
    border: 1px solid var(--line); margin-bottom: 8px;
    background: var(--card);
}
.change-item .change-tag {
    flex: 0 0 auto; font-size: 12px; font-weight: 700;
    border-radius: 999px; padding: 3px 11px;
}
.change-tag.add { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.change-tag.rem { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.change-item .change-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.change-item .change-en { font-size: 13px; color: var(--ink-3); }
.change-item .change-country { font-size: 13px; color: var(--ink-2); margin-left: auto; }

/* 数据高亮块 */
.data-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 16px 0; }
.data-kpi {
    background: var(--brand-soft); border-radius: var(--radius-sm);
    padding: 18px 12px; text-align: center; border: 1px solid #FFDDE0;
}
.data-kpi .kpi-num { font-size: 25px; font-weight: 800; color: var(--brand); line-height: 1.2; }
.data-kpi .kpi-label { margin-top: 6px; font-size: 12.5px; color: var(--ink-2); }

/* 来源列表 */
.content-sources { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); }
.content-sources h3 { font-size: 14px; font-weight: 700; color: var(--ink-3); margin-bottom: 8px; }
.content-sources ul { margin: 0; }
.content-sources li { font-size: 13px; color: var(--ink-3); margin-bottom: 4px; }
.content-sources li::before { display: none; }
.content-sources a { color: var(--brand); word-break: break-all; }

/* ---- 文章页 / 文章列表 ---- */
.article-meta { margin-top: 8px; font-size: 13px; color: var(--ink-3); }
.article-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.article-item {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: all .18s ease;
}
.article-item:hover { border-color: #FFC9CE; box-shadow: var(--shadow); transform: translateY(-3px); }
.article-item-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.article-item-title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.article-item:hover .article-item-title { color: var(--brand); }
.article-item-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; }
.article-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.article-item-date { font-size: 12px; color: var(--ink-3); }
.article-item-tag {
    display: inline-block; background: var(--brand-soft); color: var(--brand);
    font-size: 12px; font-weight: 600; border-radius: 999px; padding: 3px 11px;
}
.article-empty { margin-top: 14px; text-align: center; color: var(--ink-3); font-size: 13px; }
@media (max-width: 480px) {
    .article-item { flex-direction: column; align-items: flex-start; }
    .article-item-side { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}

@media (min-width: 640px) {
    .content-card { padding: 40px 36px; }
    .content-title { font-size: 31px; }
    .content-section h2 { font-size: 22px; }
    .plan-cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .data-kpis { grid-template-columns: repeat(4, 1fr); }
}
