@charset "utf-8";
/* ============================================================
   赛阔网 PFC — UI Design System
   纯样式层，不改变 HTML 语义结构，对 SEO 无副作用
   零外部字体 / 零外部请求 / 单文件可 gzip
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    /* --- 品牌主色：深海蓝（专业·信任·国际航运） --- */
    --brand-900: #061B33;
    --brand-800: #0A2C5A;
    --brand-700: #0E3D7C;
    --brand-600: #1557B0;
    --brand-500: #1E6FD9;
    --brand-400: #4A8DE8;
    --brand-100: #E4EEFB;
    --brand-50:  #F3F8FE;

    /* --- 强调色：琥珀橙（行动·活力·集装箱） --- */
    --accent-700: #B85A00;
    --accent-600: #D96C00;
    --accent-500: #F2820D;
    --accent-400: #FF9A2E;
    --accent-100: #FFEFDB;
    --accent-50:  #FFF7ED;

    /* --- 中性色阶 --- */
    --ink-900: #0F172A;
    --ink-800: #1E293B;
    --ink-700: #334155;
    --ink-600: #475569;
    --ink-500: #64748B;
    --ink-400: #94A3B8;
    --ink-300: #CBD5E1;
    --line:     #E2E8F0;
    --line-soft:#EEF2F7;
    --surface:  #FFFFFF;
    --bg:       #F6F8FB;

    /* --- 语义色 --- */
    --success: #0E9F6E;
    --success-bg: #E7F8F1;
    --warning: #D97706;
    --error:   #DC2626;

    /* --- 资讯分类识别色 --- */
    --cat-1: #1557B0;
    --cat-2: #0E9F6E;
    --cat-3: #7C3AED;
    --cat-4: #D96C00;

    /* --- 字体 --- */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC",
                 "Noto Sans CJK SC", sans-serif;
    --font-num:  "SF Pro Display", -apple-system, "Segoe UI", Roboto, sans-serif;

    /* --- 字号阶（1.125 模数） --- */
    --fs-xs:   12px;
    --fs-sm:   13px;
    --fs-base: 14px;
    --fs-md:   15px;
    --fs-lg:   16px;
    --fs-xl:   18px;
    --fs-2xl:  20px;
    --fs-3xl:  24px;
    --fs-4xl:  30px;
    --fs-5xl:  36px;
    --fs-6xl:  44px;

    /* --- 间距（4px 基准） --- */
    --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
    --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
    --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

    /* --- 圆角 --- */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-full: 999px;

    /* --- 阴影（分层高度系统） --- */
    --sh-xs: 0 1px 2px rgba(15, 23, 42, .05);
    --sh-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
    --sh-md: 0 4px 12px rgba(15, 23, 42, .07), 0 2px 4px rgba(15, 23, 42, .04);
    --sh-lg: 0 12px 28px rgba(15, 23, 42, .10), 0 4px 8px rgba(15, 23, 42, .04);
    --sh-brand: 0 8px 24px rgba(21, 87, 176, .18);
    --sh-accent: 0 8px 20px rgba(217, 108, 0, .24);

    /* --- 动效 --- */
    --t-fast: 140ms cubic-bezier(.4, 0, .2, 1);
    --t-base: 220ms cubic-bezier(.4, 0, .2, 1);
    --t-slow: 380ms cubic-bezier(.16, 1, .3, 1);

    /* --- 布局 --- */
    --container: 1200px;
    --header-h: 72px;

    /* 兼容旧变量名 */
    --primary: var(--brand-600);
    --primary-dark: var(--brand-800);
    --accent: var(--accent-600);
    --accent-dark: var(--accent-700);
    --text: var(--ink-900);
    --text-light: var(--ink-600);
    --white: #fff;
    --border: var(--line);
    --radius: var(--r-md);
    --shadow: var(--sh-md);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--ink-800);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink-900);
    letter-spacing: -0.01em;
}

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; margin: 0; padding: 0; }

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

a {
    color: var(--brand-600);
    text-decoration: none;
    transition: color var(--t-fast);
}
a:hover { color: var(--accent-600); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

strong, b { font-weight: 700; color: var(--ink-900); }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-8) 0; }

::selection { background: var(--brand-100); color: var(--brand-800); }

/* --- 无障碍：统一焦点态（WCAG 2.4.7） --- */
:focus-visible {
    outline: 2px solid var(--brand-500);
    outline-offset: 2px;
    border-radius: var(--r-sm);
}

/* --- 跳转到主内容（屏幕阅读器 / 键盘用户） --- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: var(--sp-3) var(--sp-5);
    background: var(--brand-800);
    color: #fff;
    border-radius: 0 0 var(--r-md) 0;
    font-size: var(--fs-base);
}
.skip-link:focus {
    left: 0;
    color: #fff;
}

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   3. LAYOUT PRIMITIVES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-5);
}

.section { padding: var(--sp-16) 0; }
.section + .section { padding-top: 0; }
.section:last-of-type { padding-bottom: var(--sp-20); }

.section-title {
    text-align: center;
    margin-bottom: var(--sp-10);
}
.section-title h1,
.section-title h2 {
    position: relative;
    display: inline-block;
    font-size: var(--fs-4xl);
    color: var(--ink-900);
    padding-bottom: var(--sp-4);
    margin-bottom: var(--sp-3);
}
.section-title h1::after,
.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: var(--r-full);
    background: linear-gradient(90deg, var(--brand-600), var(--accent-500));
}
.section-title p {
    font-size: var(--fs-md);
    color: var(--ink-500);
    margin: 0;
    letter-spacing: .02em;
}
.section-title[style*="left"] h1::after,
.section-title[style*="left"] h2::after { left: 0; transform: none; }

.text-center { text-align: center; }
.center { text-align: center; margin-top: var(--sp-8); }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-6); }

/* ============================================================
   4. COMPONENT — BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-outline,
.btn-ghost,
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    min-height: 44px;              /* 触控目标 ≥44px */
    padding: 0 var(--sp-6);
    border: 1px solid transparent;
    border-radius: var(--r-full);
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast),
                border-color var(--t-fast), transform var(--t-fast),
                box-shadow var(--t-fast);
}
.btn:disabled,
.btn-primary:disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

.btn,
.btn-primary {
    background: var(--accent-600);
    color: #fff;
    box-shadow: var(--sh-accent);
}
.btn:hover,
.btn-primary:hover {
    background: var(--accent-700);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(217, 108, 0, .3);
}
.btn:active,
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    color: var(--brand-700);
    border-color: var(--brand-600);
}
.btn-outline:hover {
    background: var(--brand-600);
    color: #fff;
    border-color: var(--brand-600);
}

.btn-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: #fff;
    color: var(--brand-800);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-ghost.dark { border-color: var(--brand-600); color: var(--brand-700); background: transparent; }
.btn-ghost.dark:hover { background: var(--brand-600); color: #fff; }

.btn-outline-dark {
    background: transparent;
    color: var(--ink-700);
    border-color: var(--ink-300);
}
.btn-outline-dark:hover { border-color: var(--brand-600); color: var(--brand-700); }

.btn-block { display: flex; width: 100%; }
.btn-lg { min-height: 52px; padding: 0 var(--sp-8); font-size: var(--fs-lg); }

/* ============================================================
   5. COMPONENT — FORMS
   ============================================================ */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: var(--sp-3) var(--sp-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    font-size: var(--fs-base);
    color: var(--ink-900);
    outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
textarea { min-height: 120px; resize: vertical; line-height: 1.7; padding-top: var(--sp-3); }

input::placeholder, textarea::placeholder { color: var(--ink-400); }

input:hover, textarea:hover, select:hover { border-color: var(--ink-300); }

input:focus, textarea:focus, select:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(30, 111, 217, .13);
}

.field { margin-bottom: var(--sp-4); }
.field label,
.form-group label {
    display: block;
    margin-bottom: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink-700);
}
.form-group { margin-bottom: var(--sp-4); }
.required { color: var(--accent-600); }
.form-tip { font-size: var(--fs-xs); color: var(--ink-400); margin-top: var(--sp-3); text-align: center; }

/* ============================================================
   6. HEADER — TOPBAR
   ============================================================ */
.topbar {
    background: var(--brand-900);
    color: rgba(255, 255, 255, .82);
    font-size: var(--fs-sm);
    line-height: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
}
.topbar-left { display: flex; align-items: center; gap: var(--sp-3); min-width: 0; }
.topbar-left span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-left a { display: inline-flex; align-items: center; gap: 4px; }
.topbar-left a::before {
    content: "";
    width: 13px; height: 13px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.2.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1l-2.3 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.2.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1l-2.3 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}
.topbar a { color: rgba(255, 255, 255, .85); }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: var(--sp-5); flex-shrink: 0; }
.topbar-right a { position: relative; }
.topbar-right a:not(.login)::after {
    content: "";
    position: absolute;
    left: 0; bottom: 8px;
    width: 0; height: 1px;
    background: currentColor;
    transition: width var(--t-base);
}
.topbar-right a:not(.login):hover::after { width: 100%; }
.topbar a.login {
    background: var(--accent-600);
    color: #fff;
    padding: 3px 14px;
    border-radius: var(--r-full);
    line-height: 1.7;
    font-weight: 600;
}
.topbar a.login:hover { background: var(--accent-700); }

/* ============================================================
   7. HEADER — MAIN NAV
   ============================================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    min-height: var(--header-h);
}

/* --- Logo --- */
.logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; max-width: 260px; }
.logo-mark {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
    color: #fff;
    font-size: var(--fs-lg);
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: var(--sh-brand);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text b { font-size: var(--fs-2xl); color: var(--brand-800); font-weight: 800; letter-spacing: -.02em; }
.logo-text small { font-size: var(--fs-xs); color: var(--ink-500); letter-spacing: .04em; }
.logo:hover .logo-mark { transform: rotate(-4deg) scale(1.04); transition: transform var(--t-base); }
.main-header .logo .logo-img,
.logo-img {
    display: block;
    max-height: 44px !important;
    width: auto !important;
    max-width: 220px !important;
    height: auto !important;
    object-fit: contain;
    flex: 0 0 auto;
}
.logo-text-with-img { display: flex; flex-direction: column; line-height: 1.25; margin-left: 2px; }
.logo-text-with-img b { font-size: var(--fs-xl); color: var(--brand-800); font-weight: 800; letter-spacing: -.01em; }

/* --- 搜索框 --- */
.header-search { flex: 1; max-width: 340px; margin-left: auto; }
.header-search form {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    overflow: hidden;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.header-search form:focus-within {
    background: var(--surface);
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(30, 111, 217, .12);
}
.header-search input {
    flex: 1;
    min-height: 40px;
    width: auto;
    padding: 0 var(--sp-4);
    background: transparent;
    border: 0;
    font-size: var(--fs-sm);
}
.header-search input:focus { box-shadow: none; }
.header-search button {
    display: grid;
    place-items: center;
    min-height: 40px;
    padding: 0 var(--sp-5);
    margin: 3px;
    background: var(--brand-600);
    color: #fff;
    border: 0;
    border-radius: var(--r-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    transition: background var(--t-fast);
}
.header-search button:hover { background: var(--brand-700); }

/* --- 主导航 --- */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 var(--sp-4);
    border-radius: var(--r-md);
    color: var(--ink-700);
    font-size: var(--fs-md);
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--t-fast), background var(--t-fast);
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 4px;
    width: 0; height: 2px;
    border-radius: var(--r-full);
    background: var(--accent-500);
    transform: translateX(-50%);
    transition: width var(--t-base);
}
.main-nav a:hover { color: var(--brand-700); background: var(--brand-50); }
.main-nav a:hover::after { width: 18px; }
.main-nav a.active { color: var(--brand-700); font-weight: 700; }
.main-nav a.active::after { width: 22px; }

/* --- 汉堡按钮 --- */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    flex-direction: column;
    justify-content: space-between;
}
.nav-toggle span {
    display: block;
    width: 100%; height: 2px;
    border-radius: 2px;
    background: var(--ink-700);
    transition: transform var(--t-base), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============================================================
   8. PAGE BANNER（子页通栏）
   ============================================================ */
.page-banner {
    position: relative;
    padding: var(--sp-12) 0;
    background:
        radial-gradient(900px 300px at 15% -20%, rgba(30, 111, 217, .55), transparent 70%),
        linear-gradient(120deg, var(--brand-900) 0%, var(--brand-700) 55%, var(--brand-600) 100%);
    color: #fff;
    overflow: hidden;
}
.page-banner::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(100deg, #000 0%, transparent 65%);
            mask-image: linear-gradient(100deg, #000 0%, transparent 65%);
    pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
    font-size: var(--fs-5xl);
    color: #fff;
    margin-bottom: var(--sp-3);
    text-shadow: 0 2px 16px rgba(0, 0, 0, .18);
}
.page-banner .breadcrumb { margin-bottom: 0; color: rgba(255, 255, 255, .75); }
.page-banner .breadcrumb a { color: rgba(255, 255, 255, .9); }
.page-banner .breadcrumb a:hover { color: #fff; text-decoration: underline; }
.page-banner .breadcrumb span { color: rgba(255, 255, 255, .55); }

/* --- 面包屑（正文内） --- */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--ink-500);
    margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--ink-600); }
.breadcrumb a:hover { color: var(--brand-600); }
.breadcrumb > span { color: var(--ink-400); }

/* ============================================================
   9. HERO（首页主视觉）
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-slider { position: relative; }
.hero-slider .slide {
    position: relative;
    display: none;
    align-items: center;
    min-height: 520px;
    padding: var(--sp-16) 0;
    color: #fff;
    background:
        radial-gradient(1000px 420px at 78% 12%, rgba(242, 130, 13, .28), transparent 62%),
        radial-gradient(760px 420px at 12% 88%, rgba(30, 111, 217, .55), transparent 66%),
        linear-gradient(122deg, var(--brand-900) 0%, var(--brand-800) 42%, var(--brand-600) 100%);
    overflow: hidden;
}
.hero-slider .slide:first-child { display: flex; }

/* 航线网格纹理（纯 CSS，无图片请求） */
.hero-slider .slide::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(120% 90% at 20% 30%, #000 0%, transparent 72%);
            mask-image: radial-gradient(120% 90% at 20% 30%, #000 0%, transparent 72%);
    pointer-events: none;
}
/* 右侧光弧 */
.hero-slider .slide::after {
    content: "";
    position: absolute;
    right: -12%; top: 50%;
    width: 640px; height: 640px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 60px rgba(255, 255, 255, .03),
        inset 0 0 0 140px rgba(255, 255, 255, .025);
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero-inner h1, .hero-inner .hero-title {
    font-size: var(--fs-6xl);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: var(--sp-4);
    text-shadow: 0 2px 24px rgba(0, 0, 0, .22);
    animation: heroUp .7s cubic-bezier(.16, 1, .3, 1) both;
}
.hero-inner p {
    font-size: var(--fs-xl);
    line-height: 1.65;
    color: rgba(255, 255, 255, .88);
    margin-bottom: var(--sp-8);
    max-width: 600px;
    animation: heroUp .7s cubic-bezier(.16, 1, .3, 1) .08s both;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    animation: heroUp .7s cubic-bezier(.16, 1, .3, 1) .16s both;
}
.hero-actions .btn-primary { min-height: 50px; padding: 0 var(--sp-8); font-size: var(--fs-lg); }
.hero-actions .btn-ghost   { min-height: 50px; padding: 0 var(--sp-8); font-size: var(--fs-lg); }

@keyframes heroUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

.hero-dots {
    position: absolute;
    left: 50%; bottom: var(--sp-6);
    z-index: 3;
    display: flex;
    gap: var(--sp-2);
    transform: translateX(-50%);
}
.hero-dots span {
    width: 28px; height: 4px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background var(--t-base), width var(--t-base);
}
.hero-dots span:hover { background: rgba(255, 255, 255, .6); }
.hero-dots span.active { width: 44px; background: var(--accent-500); }

/* ============================================================
   10. 首页区块（后台可编辑富文本）
   ============================================================ */
.home-block { background: transparent; }
.home-block:nth-of-type(even) { background: var(--surface); }

.block-body { font-size: var(--fs-md); color: var(--ink-600); line-height: 1.85; }
.block-body > ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-4);
    margin: 0;
    padding: 0;
}
/* 当列表恰好有 4 项时，改为 2×2 居中布局，避免最后一行只剩一个卡片 */
.block-body > ul:has(> li:nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 640px) {
    .block-body > ul:has(> li:nth-child(4):last-child) {
        grid-template-columns: 1fr;
    }
}
.block-body > ul > li {
    position: relative;
    padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-12);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    color: var(--ink-700);
    box-shadow: var(--sh-xs);
    transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.block-body > ul > li:hover {
    border-color: var(--brand-100);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}
.block-body > ul > li::before {
    content: "";
    position: absolute;
    left: var(--sp-5); top: 50%;
    width: 22px; height: 22px;
    margin-top: -11px;
    border-radius: 50%;
    background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231557B0'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.block-body p { margin-bottom: var(--sp-4); }

/* --- 服务卡片网格（首页区块内富文本使用） --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-6);
}
.service-card {
    position: relative;
    display: block;
    padding: var(--sp-8) var(--sp-6);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    color: var(--ink-800);
    text-align: center;
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.service-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--brand-600), var(--accent-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-100);
    box-shadow: var(--sh-lg);
    color: var(--ink-800);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    display: grid;
    place-items: center;
    width: 60px; height: 60px;
    margin: 0 auto var(--sp-4);
    border-radius: var(--r-lg);
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 28px;
    transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.service-card:hover .service-icon {
    background: var(--brand-600);
    color: #fff;
    transform: scale(1.06) rotate(-4deg);
}
.service-card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); color: var(--brand-800); }
.service-card p  { font-size: var(--fs-sm); color: var(--ink-500); margin: 0; line-height: 1.75; }

/* ============================================================
   11. 四大资讯分类
   ============================================================ */
.cat-news-section { background: var(--surface); }

.cat-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-6);
}
.cat-news-col {
    position: relative;
    padding: var(--sp-6);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xs);
    transition: box-shadow var(--t-base), transform var(--t-base);
}
.cat-news-col:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.cat-news-col::before {
    content: "";
    position: absolute;
    left: var(--sp-6); right: var(--sp-6); top: 0;
    height: 3px;
    border-radius: 0 0 var(--r-full) var(--r-full);
    background: var(--cat-1);
}
.cat-news-col:nth-child(2)::before { background: var(--cat-2); }
.cat-news-col:nth-child(3)::before { background: var(--cat-3); }
.cat-news-col:nth-child(4)::before { background: var(--cat-4); }

.cat-news-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    padding-bottom: var(--sp-4);
    margin-bottom: var(--sp-3);
    border-bottom: 1px solid var(--line-soft);
}
.cat-news-hd h3 {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--ink-900);
}
.cat-news-hd h3::before {
    content: "";
    width: 4px; height: 18px;
    border-radius: var(--r-full);
    background: var(--cat-1);
    flex-shrink: 0;
}
.cat-news-col:nth-child(2) .cat-news-hd h3::before { background: var(--cat-2); }
.cat-news-col:nth-child(3) .cat-news-hd h3::before { background: var(--cat-3); }
.cat-news-col:nth-child(4) .cat-news-hd h3::before { background: var(--cat-4); }
.cat-news-hd .more {
    font-size: var(--fs-sm);
    color: var(--ink-500);
    white-space: nowrap;
    transition: color var(--t-fast), transform var(--t-fast);
    text-decoration: none;
}
.cat-news-hd .more:hover { color: var(--accent-600); transform: translateX(2px); }

.cat-news-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-3) 0;
    border-bottom: 1px dashed var(--line-soft);
}
.cat-news-list li:last-child { border-bottom: 0; }
.cat-news-list a {
    position: relative;
    flex: 1;
    min-width: 0;
    padding-left: var(--sp-4);
    color: var(--ink-700);
    font-size: var(--fs-base);
    line-height: 1.6;
    text-decoration: none;
    transition: color var(--t-fast);
}
.cat-news-list a::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--ink-300);
    transition: background var(--t-fast);
}
.cat-news-list a:hover { color: var(--brand-600); }
.cat-news-list a:hover::before { background: var(--accent-500); }
.cat-news-list .date {
    font-size: var(--fs-xs);
    color: var(--ink-400);
    flex-shrink: 0;
    padding-top: 1px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.cat-news-list .empty { color: var(--ink-400); font-size: var(--fs-sm); justify-content: center; padding: var(--sp-6) 0; }

/* ============================================================
   12. 数据统计
   ============================================================ */
.stats {
    position: relative;
    padding: var(--sp-12) 0;
    background:
        radial-gradient(700px 260px at 85% 20%, rgba(242, 130, 13, .22), transparent 65%),
        linear-gradient(100deg, var(--brand-800) 0%, var(--brand-600) 100%);
    color: #fff;
    overflow: hidden;
}
.stats::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
            mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}
.stat { position: relative; text-align: center; padding: var(--sp-2); }
.stat + .stat::before {
    content: "";
    position: absolute;
    left: calc(var(--sp-6) / -2); top: 20%;
    width: 1px; height: 60%;
    background: rgba(255, 255, 255, .16);
}
.stat .num {
    font-family: var(--font-num);
    font-size: var(--fs-5xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: var(--sp-2);
    background: linear-gradient(180deg, #fff 30%, #FFD9A8 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}
.stat .lbl { font-size: var(--fs-md); color: rgba(255, 255, 255, .8); letter-spacing: .04em; }

/* ============================================================
   13. 报价条 / 报价页
   ============================================================ */
.quote-section { background: var(--bg); }
.quote-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-8);
    padding: var(--sp-8);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    overflow: hidden;
}
.quote-box::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-600), var(--accent-500));
}
.quote-left { flex: 1 1 280px; }
.quote-left h2 { font-size: var(--fs-3xl); color: var(--brand-800); margin-bottom: var(--sp-2); }
.quote-left p  { color: var(--ink-500); margin: 0; font-size: var(--fs-md); }

.quote-form-inline { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.quote-form-inline input { width: 148px; min-height: 46px; }
.quote-form-inline button {
    min-height: 46px;
    padding: 0 var(--sp-6);
    background: var(--accent-600);
    color: #fff;
    border: 0;
    border-radius: var(--r-md);
    font-size: var(--fs-base);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--sh-accent);
    transition: background var(--t-fast), transform var(--t-fast);
}
.quote-form-inline button:hover { background: var(--accent-700); transform: translateY(-2px); }

.quote-page { max-width: 760px; margin: 0 auto; }
.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2) var(--sp-5);
    padding: var(--sp-8);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
}
.quote-form .field:nth-last-child(2),
.quote-form .field:has(textarea) { grid-column: 1 / -1; }
.quote-form > button { grid-column: 1 / -1; margin-top: var(--sp-2); }

/* ============================================================
   14. 合作伙伴
   ============================================================ */
.partners { background: var(--surface); padding: var(--sp-12) 0; }
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3);
}
.partner-logos span {
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0 var(--sp-8);
    background: var(--bg);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    color: var(--ink-500);
    font-size: var(--fs-lg);
    font-weight: 700;
    letter-spacing: .06em;
    transition: color var(--t-base), border-color var(--t-base), transform var(--t-base), background var(--t-base);
}
.partner-logos span:hover {
    color: var(--brand-700);
    background: var(--surface);
    border-color: var(--brand-100);
    transform: translateY(-2px);
}

/* ============================================================
   14.1 友情链接（首页底部）
   ============================================================ */
.friend-links { background: var(--surface); padding: 28px 0; border-top: 1px solid #eef1f5; }
.friend-links .section-title h2 { font-size: 18px; font-weight: 600; color: #1f2329; margin: 0 0 14px; }
.friend-list { display: flex; flex-wrap: wrap; gap: 0 18px; padding: 4px 0 2px; }
.friend-list a { color: #4a525e; font-size: 14px; line-height: 2; transition: color .15s; text-decoration: none; }
.friend-list a:hover { color: var(--brand-700); }

/* ============================================================
   15. 资讯列表 / 分类筛选
   ============================================================ */
.news-filter,
.filter-item-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
}
.filter-item {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    color: var(--ink-600);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: all var(--t-fast);
}
.filter-item:hover {
    border-color: var(--brand-400);
    color: var(--brand-700);
    background: var(--brand-50);
}
.filter-item.active {
    background: var(--brand-600);
    border-color: var(--brand-600);
    color: #fff;
    font-weight: 600;
    box-shadow: var(--sh-brand);
}
.filter-item.active:hover { background: var(--brand-700); color: #fff; }

.news-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.news-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: var(--sp-6);
    padding: var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    color: inherit;
    box-shadow: var(--sh-xs);
    transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.news-row:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-3px);
    border-color: var(--brand-100);
    color: inherit;
}
.news-row-thumb {
    position: relative;
    height: 124px;
    border-radius: var(--r-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-800)) !important;
}
.news-row-thumb::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(80% 80% at 30% 20%, #000, transparent 75%);
            mask-image: radial-gradient(80% 80% at 30% 20%, #000, transparent 75%);
}
.news-row-thumb img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

.news-row-body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.news-row-body h3 {
    font-size: var(--fs-xl);
    color: var(--ink-900);
    margin-bottom: var(--sp-2);
    line-height: 1.45;
    transition: color var(--t-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-row:hover .news-row-body h3 { color: var(--brand-600); }
.news-row-body p {
    font-size: var(--fs-sm);
    color: var(--ink-500);
    line-height: 1.75;
    margin-bottom: var(--sp-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-date {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    color: var(--ink-400);
    font-variant-numeric: tabular-nums;
}
.news-date::before {
    content: "";
    width: 13px; height: 13px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V10h14v10z'/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V10h14v10z'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

/* --- 分页 --- */
.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2);
    margin-top: var(--sp-10);
}
.pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 var(--sp-3);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--ink-700);
    font-size: var(--fs-base);
    font-weight: 500;
    transition: all var(--t-fast);
}
.pager a:hover { border-color: var(--brand-400); color: var(--brand-700); background: var(--brand-50); }
.pager a.cur {
    background: var(--brand-600);
    border-color: var(--brand-600);
    color: #fff;
    font-weight: 700;
    box-shadow: var(--sh-brand);
}

/* 分页：自定义页码跳转 */
.pager-gap { color: var(--ink-400); padding: 0 var(--sp-1); user-select: none; }
.pager-jump { display: inline-flex; align-items: center; gap: 4px; margin-left: var(--sp-2); color: var(--ink-600); font-size: var(--fs-sm); white-space: nowrap; }
.pager-jump .pager-input { width: 52px; min-width: 0; height: 38px; padding: 0 6px; text-align: center; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); color: var(--ink-800); font-size: var(--fs-base); }
.pager-jump .pager-input:focus { outline: none; border-color: var(--brand-400); }
.pager-jump .pager-go { height: 38px; padding: 0 14px; border: 1px solid var(--brand-400); border-radius: var(--r-md); background: var(--brand-50); color: var(--brand-700); font-weight: 600; cursor: pointer; transition: all var(--t-fast); }
.pager-jump .pager-go:hover { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }
@media (max-width: 640px) {
    .pager-jump { margin-left: 0; width: 100%; justify-content: center; }
}

/* ============================================================
   16. 资讯详情
   ============================================================ */
.news-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: var(--sp-10);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
}
.detail-title {
    font-size: var(--fs-5xl);
    line-height: 1.32;
    color: var(--ink-900);
    margin-bottom: var(--sp-4);
    letter-spacing: -.02em;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2) var(--sp-5);
    padding-bottom: var(--sp-5);
    margin-bottom: var(--sp-6);
    border-bottom: 1px solid var(--line);
    font-size: var(--fs-sm);
    color: var(--ink-500);
}
.detail-meta span { display: inline-flex; align-items: center; }
.detail-meta span + span::before {
    content: "";
    width: 3px; height: 3px;
    margin-right: var(--sp-5);
    border-radius: 50%;
    background: var(--ink-300);
}

.detail-body { font-size: var(--fs-lg); line-height: 1.95; color: var(--ink-700); }
.detail-body p { margin-bottom: var(--sp-5); }
.detail-body h2, .detail-body h3, .detail-body h4 {
    position: relative;
    margin: var(--sp-10) 0 var(--sp-4);
    padding-left: var(--sp-4);
    color: var(--ink-900);
}
.detail-body h2 { font-size: var(--fs-3xl); }
.detail-body h3 { font-size: var(--fs-2xl); }
.detail-body h4 { font-size: var(--fs-xl); }
.detail-body h2::before, .detail-body h3::before, .detail-body h4::before {
    content: "";
    position: absolute;
    left: 0; top: .2em; bottom: .2em;
    width: 4px;
    border-radius: var(--r-full);
    background: linear-gradient(180deg, var(--brand-600), var(--accent-500));
}
.detail-body ul, .detail-body ol { margin: 0 0 var(--sp-5); padding-left: var(--sp-6); }
.detail-body ul { list-style: disc; }
.detail-body ol { list-style: decimal; }
.detail-body li { margin-bottom: var(--sp-2); }
.detail-body li::marker { color: var(--brand-500); }
.detail-body img { border-radius: var(--r-md); margin: var(--sp-5) 0; box-shadow: var(--sh-sm); }
.detail-body blockquote {
    margin: var(--sp-6) 0;
    padding: var(--sp-5) var(--sp-6);
    background: var(--brand-50);
    border-left: 4px solid var(--brand-500);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    color: var(--ink-700);
}
.detail-body a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.detail-body a:hover { color: var(--accent-600); }
.detail-body table { width: 100%; border-collapse: collapse; margin: var(--sp-5) 0; font-size: var(--fs-base); }
.detail-body th, .detail-body td { padding: var(--sp-3) var(--sp-4); border: 1px solid var(--line); text-align: left; }
.detail-body th { background: var(--brand-50); color: var(--brand-800); font-weight: 700; }

.detail-back { margin-top: var(--sp-8); }
.detail-back a {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    min-height: 42px;
    padding: 0 var(--sp-5);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    color: var(--ink-700);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: all var(--t-fast);
}
.detail-back a:hover { background: var(--brand-50); border-color: var(--brand-400); color: var(--brand-700); }

.detail-related {
    margin-top: var(--sp-10);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--line);
}
.detail-related h3 {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xl);
    color: var(--ink-900);
    margin-bottom: var(--sp-4);
}
.detail-related h3::before {
    content: "";
    width: 4px; height: 17px;
    border-radius: var(--r-full);
    background: var(--accent-500);
}
.detail-related ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-1) var(--sp-6);
}
.detail-related li a {
    position: relative;
    display: block;
    padding: var(--sp-2) 0 var(--sp-2) var(--sp-4);
    color: var(--ink-700);
    font-size: var(--fs-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.detail-related li a::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 4px; height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: var(--ink-300);
    transition: background var(--t-fast);
}
.detail-related li a:hover { color: var(--brand-600); }
.detail-related li a:hover::before { background: var(--accent-500); }

.detail-cats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--line);
    font-size: var(--fs-sm);
    color: var(--ink-600);
}
.detail-cats strong { margin-right: var(--sp-1); color: var(--ink-700); }
.detail-cats a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 var(--sp-4);
    margin: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    color: var(--ink-600);
    font-size: var(--fs-xs);
    transition: all var(--t-fast);
}
.detail-cats a:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

/* ============================================================
   17. 单页内容（关于 / 服务 / FBA…）
   ============================================================ */
.page-content {
    max-width: 940px;
    margin: 0 auto;
    padding: var(--sp-10);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
}
.page-body { font-size: var(--fs-lg); line-height: 1.95; color: var(--ink-700); }
.page-body h2, .page-body h3, .page-body h4 {
    position: relative;
    margin: var(--sp-10) 0 var(--sp-4);
    padding-left: var(--sp-4);
    color: var(--ink-900);
}
.page-body > :first-child { margin-top: 0; }
.page-body h2 { font-size: var(--fs-3xl); }
.page-body h3 { font-size: var(--fs-2xl); }
.page-body h4 { font-size: var(--fs-xl); }
.page-body h2::before, .page-body h3::before, .page-body h4::before {
    content: "";
    position: absolute;
    left: 0; top: .2em; bottom: .2em;
    width: 4px;
    border-radius: var(--r-full);
    background: linear-gradient(180deg, var(--brand-600), var(--accent-500));
}
.page-body p { margin-bottom: var(--sp-5); }
.page-body ul, .page-body ol { margin: 0 0 var(--sp-6); padding-left: var(--sp-6); }
.page-body ul { list-style: disc; }
.page-body ol { list-style: decimal; }
.page-body li { margin-bottom: var(--sp-2); }
.page-body li::marker { color: var(--brand-500); }
.page-body strong { color: var(--brand-800); }
.page-body a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.page-body table { width: 100%; border-collapse: collapse; margin: var(--sp-5) 0; font-size: var(--fs-base); }
.page-body th, .page-body td { padding: var(--sp-3) var(--sp-4); border: 1px solid var(--line); text-align: left; }
.page-body th { background: var(--brand-50); color: var(--brand-800); font-weight: 700; }

/* ============================================================
   18. 联系页
   ============================================================ */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
    align-items: start;
}
.contact-info {
    padding: var(--sp-8);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
}
.contact-info h2 {
    font-size: var(--fs-3xl);
    color: var(--brand-800);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--line);
}
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    padding: var(--sp-3) 0;
    margin: 0;
    border-bottom: 1px dashed var(--line-soft);
    font-size: var(--fs-md);
    color: var(--ink-700);
}
.contact-info p:last-child { border-bottom: 0; }
.contact-info strong { flex-shrink: 0; color: var(--ink-500); font-weight: 500; min-width: 84px; }
.contact-info a { font-weight: 700; color: var(--accent-600); }

.contact-form {
    padding: var(--sp-8);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
}
.contact-form button { width: 100%; margin-top: var(--sp-2); }

/* ============================================================
   19. 搜索聚合页（程序化 SEO）
   ============================================================ */
.tag-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: var(--sp-8);
    align-items: start;
}
.tag-main { min-width: 0; }
.tag-sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-5));
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}
.sidebar-panel,
.sidebar-box {
    padding: var(--sp-6);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xs);
}
.sidebar-panel h3,
.sidebar-box h4 {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-lg);
    color: var(--ink-900);
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--line-soft);
}
.sidebar-panel h3::before,
.sidebar-box h4::before {
    content: "";
    width: 4px; height: 15px;
    border-radius: var(--r-full);
    background: linear-gradient(180deg, var(--brand-600), var(--accent-500));
}
.sidebar-panel p { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.8; }
.sidebar-panel .btn { width: 100%; margin-top: var(--sp-4); }
.sidebar-list li { margin-bottom: var(--sp-2); }
.sidebar-list strong { color: var(--accent-600); font-size: var(--fs-xl); }
.big-number { font-size: var(--fs-5xl); font-weight: 800; color: var(--accent-600); margin-bottom: var(--sp-2); line-height: 1; }

.hot-keywords li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    padding: var(--sp-2) 0;
    border-bottom: 1px dashed var(--line-soft);
}
.hot-keywords li:last-child { border-bottom: 0; }
.hot-keywords a {
    min-width: 0;
    color: var(--ink-700);
    font-size: var(--fs-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-keywords a:hover { color: var(--brand-600); }
.hot-keywords span {
    flex-shrink: 0;
    padding: 1px var(--sp-2);
    background: var(--bg);
    border-radius: var(--r-full);
    font-size: var(--fs-xs);
    color: var(--ink-400);
    font-variant-numeric: tabular-nums;
}
.hot-keywords li:nth-child(1) span { background: var(--accent-100); color: var(--accent-700); }
.hot-keywords li:nth-child(2) span { background: var(--brand-100); color: var(--brand-700); }
.hot-keywords li:nth-child(3) span { background: var(--success-bg); color: var(--success); }

.tag-empty {
    padding: var(--sp-12) var(--sp-8);
    background: var(--surface);
    border: 1px dashed var(--ink-300);
    border-radius: var(--r-lg);
    text-align: center;
    color: var(--ink-500);
}
.tag-empty p { margin-bottom: var(--sp-2); }
.tag-related-links { margin-top: var(--sp-8); }
.tag-related-links h3 {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xl);
    color: var(--ink-900);
    margin-bottom: var(--sp-4);
}
.tag-related-links h3::before {
    content: "";
    width: 4px; height: 17px;
    border-radius: var(--r-full);
    background: var(--accent-500);
}

/* ============================================================
   20. 旧版兼容组件（富文本可能引用）
   ============================================================ */
.content-section { padding: var(--sp-12) 0 var(--sp-16); }
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: var(--sp-8); align-items: start; }
.content-title { font-size: var(--fs-4xl); color: var(--brand-800); margin-bottom: var(--sp-6); }
.content-main p { margin-bottom: var(--sp-4); line-height: 1.9; color: var(--ink-600); }
.content-main h3 { font-size: var(--fs-2xl); color: var(--brand-800); margin: var(--sp-8) 0 var(--sp-4); }
.content-main ul { margin-bottom: var(--sp-5); }
.content-main ul li { position: relative; padding-left: var(--sp-6); margin-bottom: var(--sp-2); }
.content-main ul li::before {
    content: ""; position: absolute; left: 0; top: .62em;
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent-500);
}
.service-detail { padding: var(--sp-6); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: var(--sp-5); }
.service-detail h3 { margin-top: 0; }
.service-tag {
    display: inline-flex; align-items: center; height: 26px; padding: 0 var(--sp-3);
    border-radius: var(--r-full); color: #fff; font-size: var(--fs-xs); font-weight: 600;
}
.service-tag.bg-blue { background: var(--brand-600); }
.service-tag.bg-green { background: var(--success); }
.service-tag.bg-orange { background: var(--accent-600); }
.timeline { position: relative; padding-left: var(--sp-6); border-left: 2px solid var(--brand-100); }
.timeline-item { position: relative; margin-bottom: var(--sp-5); }
.timeline-item::before {
    content: ""; position: absolute; left: calc(var(--sp-6) * -1 - 5px); top: .5em;
    width: 8px; height: 8px; border-radius: 50%; background: var(--brand-600);
    box-shadow: 0 0 0 3px var(--brand-100);
}
.timeline-item span { font-weight: 700; color: var(--brand-700); }
.timeline-item p { margin: 0; }

/* ============================================================
   21. 页脚
   ============================================================ */
.main-footer {
    margin-top: var(--sp-16);
    background: var(--brand-900);
    color: rgba(255, 255, 255, .68);
    font-size: var(--fs-base);
}
.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.4fr;
    gap: var(--sp-10);
    padding: var(--sp-16) var(--sp-5) var(--sp-12);
}
.footer-col h4 {
    position: relative;
    font-size: var(--fs-lg);
    color: #fff;
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-3);
}
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 28px; height: 2px;
    border-radius: var(--r-full);
    background: var(--accent-500);
}
.footer-col ul li { margin-bottom: var(--sp-3); }
.footer-col ul li a {
    position: relative;
    color: rgba(255, 255, 255, .62);
    font-size: var(--fs-base);
    transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-col ul li a:hover { color: #fff; padding-left: var(--sp-2); }
.footer-col ul li a::before {
    content: "";
    position: absolute;
    left: -8px; top: 50%;
    width: 3px; height: 3px;
    margin-top: -1px;
    border-radius: 50%;
    background: var(--accent-500);
    opacity: 0;
    transition: opacity var(--t-fast);
}
.footer-col ul li a:hover::before { opacity: 1; }

.contact-col p {
    display: flex;
    gap: var(--sp-1);
    margin-bottom: var(--sp-3);
    line-height: 1.7;
    color: rgba(255, 255, 255, .68);
}
.contact-col strong { flex-shrink: 0; color: rgba(255, 255, 255, .48); font-weight: 400; }
.contact-col a { color: var(--accent-400); font-weight: 700; }
.contact-col a:hover { color: var(--accent-500); }

.qr-code { margin-top: var(--sp-5); }
.qr-placeholder {
    display: grid;
    place-items: center;
    width: 108px; height: 108px;
    background: rgba(255, 255, 255, .06);
    border: 1px dashed rgba(255, 255, 255, .22);
    border-radius: var(--r-md);
    color: rgba(255, 255, 255, .4);
    font-size: var(--fs-xs);
    margin-bottom: var(--sp-2);
}
.qr-code.large .qr-placeholder { width: 160px; height: 160px; }
.qr-code span { font-size: var(--fs-xs); color: rgba(255, 255, 255, .45); }

.footer-bottom {
    padding: var(--sp-5) 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .22);
}
.footer-bottom p {
    margin: 0;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .45);
    text-align: center;
}
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   22. 悬浮组件
   ============================================================ */
.float-service {
    position: fixed;
    right: var(--sp-5);
    bottom: 96px;
    z-index: 90;
}
.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 60px; height: 60px;
    background: linear-gradient(140deg, var(--brand-600), var(--brand-800));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 6px 18px rgba(21, 87, 176, .32);
    transition: transform var(--t-base), box-shadow var(--t-base);
    position: relative;
    z-index: 2;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(21, 87, 176, .36); }
.float-btn svg { width: 22px; height: 22px; transform: none; }
.float-btn .float-btn-text { font-size: 11px; line-height: 1.1; }
.float-panel {
    position: absolute;
    right: calc(100% + 12px);
    bottom: 0;
    width: 264px;
    max-width: calc(100vw - 88px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(15, 40, 80, .18);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1;
}
.float-service.open .float-panel { display: flex; }
.float-panel-hd {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(140deg, var(--brand-600), var(--brand-800));
    color: #fff;
    position: relative;
}
.float-panel-title { font-size: 15px; font-weight: 700; }
.float-panel-sub { font-size: 12px; opacity: .92; margin-top: 3px; line-height: 1.4; }
.float-panel-close {
    flex-shrink: 0;
    width: 22px; height: 22px; line-height: 1;
    border: none; background: rgba(255, 255, 255, .2); color: #fff;
    border-radius: 50%; cursor: pointer; font-size: 17px; padding: 0;
}
.float-panel-close:hover { background: rgba(255, 255, 255, .35); }
.float-panel-bd { padding: 4px 10px; }
.float-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 8px;
    color: var(--ink-700);
    text-decoration: none;
    font-size: 13px;
    position: relative;
    border-bottom: 1px solid #f0f2f5;
}
.float-item:last-child { border-bottom: none; }
.float-item:hover { background: var(--brand-50); color: var(--brand-700); }
.float-item-icon { font-size: 20px; flex-shrink: 0; width: 24px; text-align: center; line-height: 1; }
.float-item-body { display: flex; flex-direction: column; }
.float-item-body b { font-size: 13px; color: var(--ink-800); font-weight: 600; }
.float-item-body small { font-size: 12px; color: #888; margin-top: 1px; }
.float-item-wechat:hover .float-qrcode { display: block; }
.float-qrcode {
    display: none;
    position: absolute;
    right: calc(100% + 8px);
    bottom: 0;
    width: 138px; height: 138px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 40, 80, .16);
    padding: 6px;
    z-index: 5;
}
.float-qrcode img { width: 100%; height: 100%; object-fit: contain; }
.float-cta {
    display: block;
    text-align: center;
    padding: 12px 16px;
    background: linear-gradient(140deg, #ff8800, #ff6600);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.float-cta:hover { filter: brightness(1.05); color: #fff; }

.back-to-top {
    position: fixed;
    right: var(--sp-5);
    bottom: var(--sp-6);
    z-index: 90;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--ink-600);
    font-size: var(--fs-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    box-shadow: var(--sh-md);
    transition: opacity var(--t-base), visibility var(--t-base),
                transform var(--t-base), background var(--t-fast), color var(--t-fast);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

/* --- 提示条 --- */
.flash-msg {
    position: fixed;
    left: 50%; top: 88px;
    z-index: 200;
    max-width: min(90vw, 460px);
    padding: var(--sp-3) var(--sp-6);
    background: var(--success-bg);
    border: 1px solid rgba(14, 159, 110, .28);
    border-radius: var(--r-full);
    color: #0B7A55;
    font-size: var(--fs-base);
    font-weight: 500;
    text-align: center;
    box-shadow: var(--sh-lg);
    transform: translateX(-50%);
    animation: flashIn .4s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes flashIn {
    from { opacity: 0; transform: translate(-50%, -12px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================================================
   23. 响应式（Mobile-first 断点适配）
   ============================================================ */

/* --- ≤1200px --- */
@media (max-width: 1200px) {
    .cat-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }
    .header-search { max-width: 240px; }
    .main-nav a { padding: 0 var(--sp-3); font-size: var(--fs-base); }
}

/* --- ≤1024px：导航折叠 --- */
@media (max-width: 1024px) {
    :root { --fs-6xl: 36px; --fs-5xl: 30px; --fs-4xl: 26px; }

    .nav-toggle { display: flex; }
    .header-inner { flex-wrap: wrap; gap: var(--sp-3); }
    .header-search { order: 3; flex: 1 1 100%; max-width: none; margin: 0 0 var(--sp-3); }
    .logo { margin-right: auto; }

    .main-nav {
        position: absolute;
        left: 0; right: 0; top: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--sp-2);
        background: var(--surface);
        border-top: 1px solid var(--line);
        box-shadow: var(--sh-lg);
        max-height: 70vh;
        overflow-y: auto;
    }
    .main-nav.open { display: flex; }
    .main-nav a { height: 48px; padding: 0 var(--sp-4); border-radius: var(--r-md); }
    .main-nav a::after { display: none; }
    .main-nav a.active { background: var(--brand-50); }

    .tag-layout { grid-template-columns: 1fr; }
    .tag-sidebar { position: static; }
    .content-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
    .news-detail, .page-content { padding: var(--sp-6); }
}

/* --- ≤768px --- */
@media (max-width: 768px) {
    :root { --sp-16: 48px; --sp-20: 56px; --header-h: 62px; }

    .section { padding: var(--sp-12) 0; }
    .section-title { margin-bottom: var(--sp-8); }

    .topbar { line-height: 34px; font-size: var(--fs-xs); }
    .topbar-left span { display: none; }
    .topbar-right { gap: var(--sp-3); }

    .logo { max-width: 180px; }
    .logo-mark { width: 38px; height: 38px; font-size: var(--fs-base); }
    .logo-text b { font-size: var(--fs-lg); }
    .logo-text small { display: none; }
    .main-header .logo .logo-img,
    .logo-img { max-height: 32px !important; max-width: 160px !important; }
    .logo-text-with-img b { font-size: var(--fs-base); }

    .hero-slider .slide { min-height: 400px; padding: var(--sp-12) 0; }
    .hero-slider .slide::after { display: none; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { flex: 1 1 100%; min-height: 48px; font-size: var(--fs-base); }

    .cat-news-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6) var(--sp-2); }
    .stat + .stat::before { display: none; }
    .stat:nth-child(odd)::after {
        content: "";
        position: absolute;
        right: calc(var(--sp-2) / -2); top: 20%;
        width: 1px; height: 60%;
        background: rgba(255, 255, 255, .16);
    }

    .quote-box { flex-direction: column; align-items: stretch; padding: var(--sp-6); }
    .quote-form-inline { flex-direction: column; }
    .quote-form-inline input,
    .quote-form-inline button { width: 100%; }
    .quote-form { grid-template-columns: 1fr; padding: var(--sp-6); }

    .contact-wrap { grid-template-columns: 1fr; gap: var(--sp-6); }
    .contact-info, .contact-form { padding: var(--sp-6); }

    .news-row { grid-template-columns: 1fr; gap: var(--sp-4); padding: var(--sp-4); }
    .news-row-thumb { height: 150px; }
    .news-row-body h3 { font-size: var(--fs-lg); }

    .detail-related ul { grid-template-columns: 1fr; }
    .news-detail, .page-content { padding: var(--sp-5); border-radius: var(--r-lg); }
    .detail-body, .page-body { font-size: var(--fs-md); }

    .footer-top { grid-template-columns: 1fr; gap: var(--sp-6); padding: var(--sp-10) var(--sp-5) var(--sp-8); }
    .footer-col ul { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); }
    .footer-col ul li { margin-bottom: 0; }
    .footer-col ul li a { display: inline-block; }
    .footer-col ul li a::before { display: none; }
    .footer-col ul li a:hover { padding-left: 0; }
    .contact-col .qr-code { margin-top: var(--sp-3); }
    .qr-placeholder { width: 92px; height: 92px; }
    .float-service { display: block; }
    .float-btn { width: 50px; height: 50px; }
    .float-btn .float-btn-text { display: none; }
    .float-btn svg { width: 20px; height: 20px; }
    .float-panel { position: fixed; right: var(--sp-4); bottom: 160px; width: 272px; max-width: calc(100vw - 32px); }
    .float-qrcode { position: fixed; right: calc(var(--sp-4) + 282px); bottom: 160px; }
    .back-to-top { right: var(--sp-4); bottom: var(--sp-4); }
    .partner-logos span { height: 44px; padding: 0 var(--sp-5); font-size: var(--fs-base); }
}

/* --- ≤480px --- */
@media (max-width: 480px) {
    :root { --fs-6xl: 28px; --fs-5xl: 24px; --fs-4xl: 22px; --fs-3xl: 20px; }
    .container { padding: 0 var(--sp-4); }
    .topbar-right a:not(.login) { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat:nth-child(odd)::after { display: none; }
    .filter-item { min-height: 34px; padding: 0 var(--sp-4); font-size: var(--fs-xs); }
    .partner-logos { gap: var(--sp-2); }
}

/* ============================================================
   24. 无障碍与动效偏好
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* 高对比度模式 */
@media (prefers-contrast: more) {
    :root { --ink-500: #475569; --ink-400: #64748B; --line: #94A3B8; }
    .btn, .btn-primary { background: var(--accent-700); }
}

/* ============================================================
   25. 打印样式（SEO / 可访问性附加）
   ============================================================ */
@media print {
    .topbar, .main-header, .main-footer, .float-service,
    .back-to-top, .hero-actions, .news-filter, .pager,
    .header-search, .nav-toggle { display: none !important; }
    body { background: #fff; color: #000; font-size: 12pt; }
    .section { padding: 0; }
    .news-detail, .page-content { box-shadow: none; border: 0; padding: 0; max-width: 100%; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
