/* roulang page: index */
:root {
      --primary-color: #0f2b48;
      --primary-accent: #0284c7;
      --secondary-color: #0369a1;
      --accent-gold: #d97706;
      --dark-slate: #0f172a;
      --light-bg: #f8fafc;
      --card-bg: #ffffff;
      --border-color: #e2e8f0;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 14px rgba(15,23,42,0.08);
      --shadow-lg: 0 10px 25px rgba(15,23,42,0.12);
      --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--light-bg);
      color: var(--text-main);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--secondary-color); text-decoration: none; transition: color var(--transition-fast); }
    a:hover { color: var(--primary-accent); }
    img { max-width: 100%; height: auto; display: block; }

    /* 政务规范顶栏 */
    .gov-topbar {
      background-color: #0b1e33;
      border-bottom: 2px solid var(--primary-accent);
      color: #94a3b8;
      font-size: 0.85rem;
      padding: 6px 0;
    }
    .gov-header {
      background-color: #ffffff;
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-color);
      letter-spacing: -0.5px;
    }
    .brand-logo .badge-symbol {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-accent));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      font-size: 1.1rem;
      font-weight: 800;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      gap: 4px;
    }
    .nav-link {
      padding: 10px 18px;
      font-weight: 600;
      font-size: 0.95rem;
      color: #334155;
      border-radius: var(--radius-sm);
      transition: all var(--transition-fast);
    }
    .nav-link:hover, .nav-link.active {
      color: var(--primary-accent);
      background-color: #f0f7ff;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-query {
      border: 1px solid var(--border-color);
      background-color: #ffffff;
      color: #334155;
      padding: 8px 16px;
      font-size: 0.88rem;
      font-weight: 500;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-query:hover {
      background-color: #f8fafc;
      border-color: #cbd5e1;
    }

    /* 倒计时条 (蓝图要求) */
    .countdown-bar {
      background: #091a2e;
      color: #cbd5e1;
      font-size: 0.9rem;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .countdown-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .countdown-tags {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .cd-pill {
      background: rgba(2, 132, 199, 0.2);
      border: 1px solid var(--primary-accent);
      color: #38bdf8;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 0.78rem;
      font-weight: 600;
    }
    .cd-digits span {
      background: #1e293b;
      color: #f8fafc;
      padding: 2px 6px;
      border-radius: 3px;
      font-weight: 700;
      margin: 0 2px;
    }

    /* Hero 全宽沉浸 KV */
    .hero-kv {
      position: relative;
      background: linear-gradient(rgba(11, 30, 51, 0.92), rgba(15, 23, 42, 0.95)), url('/assets/images/933d9cc8a4db40c0.webp') center/cover no-repeat;
      padding: 80px 0 90px;
      color: #ffffff;
      overflow: hidden;
    }
    .hero-content {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-badge-line {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 5px 16px;
      border-radius: 30px;
      font-size: 0.85rem;
      color: #bae6fd;
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: -0.5px;
      color: #ffffff;
      margin-bottom: 20px;
    }
    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.85;
      color: #cbd5e1;
      margin-bottom: 35px;
      text-align: justify;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-main {
      background: linear-gradient(135deg, #0284c7, #0369a1);
      color: #ffffff;
      padding: 13px 30px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
      border: none;
      cursor: pointer;
    }
    .btn-main:hover {
      background: linear-gradient(135deg, #0369a1, #075985);
      color: #ffffff;
      transform: translateY(-1px);
    }
    .btn-sub {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.25);
      color: #ffffff;
      padding: 13px 28px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
    }
    .btn-sub:hover {
      background: rgba(255,255,255,0.18);
      color: #ffffff;
    }

    /* 板块通用规范 */
    .section-wrap {
      padding: 65px 0;
      position: relative;
    }
    .section-alt {
      background-color: #f1f5f9;
    }
    .section-header {
      margin-bottom: 40px;
    }
    .section-subtitle {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--secondary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .section-title {
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--dark-slate);
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .section-summary {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 780px;
      line-height: 1.7;
    }

    /* 指标看板 */
    .metric-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .metric-card {
      background: #ffffff;
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: transform var(--transition-fast);
    }
    .metric-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .metric-value {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--primary-color);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .metric-title {
      font-size: 0.92rem;
      font-weight: 600;
      color: #334155;
      margin-bottom: 4px;
    }
    .metric-note {
      font-size: 0.78rem;
      color: #94a3b8;
    }

    /* 亮点卡片 */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: #ffffff;
      padding: 28px 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .feature-icon-bar {
      width: 48px;
      height: 48px;
      background: #e0f2fe;
      color: var(--primary-accent);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 18px;
    }
    .feature-heading {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark-slate);
      margin-bottom: 10px;
    }
    .feature-body {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.68;
    }

    /* 物料档案区块 */
    .material-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .material-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }
    .material-img-wrap {
      height: 200px;
      position: relative;
      overflow: hidden;
    }
    .material-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .material-card:hover .material-img-wrap img {
      transform: scale(1.05);
    }
    .material-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(15, 23, 42, 0.85);
      color: #ffffff;
      padding: 3px 8px;
      border-radius: 3px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .material-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .material-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark-slate);
      margin-bottom: 8px;
    }
    .material-text {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .material-meta {
      font-size: 0.8rem;
      color: #94a3b8;
      border-top: 1px solid var(--border-color);
      padding-top: 10px;
      display: flex;
      justify-content: space-between;
    }

    /* 规格表格规范 */
    .spec-table-wrap {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      overflow-x: auto;
      box-shadow: var(--shadow-sm);
    }
    .spec-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.92rem;
      text-align: left;
    }
    .spec-table th {
      background-color: #f8fafc;
      padding: 14px 18px;
      font-weight: 700;
      color: var(--primary-color);
      border-bottom: 2px solid var(--border-color);
    }
    .spec-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border-color);
      color: #334155;
    }
    .spec-table tr:last-child td {
      border-bottom: none;
    }

    /* 服务矩阵 */
    .matrix-flex {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .matrix-box {
      background: #ffffff;
      padding: 26px;
      border-radius: var(--radius-md);
      border-left: 4px solid var(--primary-accent);
      border-top: 1px solid var(--border-color);
      border-right: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .matrix-box h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 8px;
    }
    .matrix-box p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 对比表格 */
    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .comp-col {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--border-color);
    }
    .comp-col.highlight {
      border: 2px solid var(--primary-accent);
      background: #f0fdf4;
    }
    .comp-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .comp-list {
      list-style: none;
      margin: 0;
    }
    .comp-list li {
      padding: 10px 0;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.9rem;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .comp-list li:last-child { border-bottom: none; }

    /* 时间线里程碑 */
    .timeline-wrap {
      position: relative;
      padding-left: 30px;
    }
    .timeline-wrap::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 10px;
      bottom: 10px;
      width: 2px;
      background: #cbd5e1;
    }
    .timeline-node {
      position: relative;
      margin-bottom: 28px;
    }
    .timeline-node::before {
      content: '';
      position: absolute;
      left: -28px;
      top: 5px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary-accent);
      border: 2px solid #ffffff;
      box-shadow: 0 0 0 2px var(--primary-accent);
    }
    .timeline-date {
      font-weight: 700;
      color: var(--secondary-color);
      font-size: 0.95rem;
      margin-bottom: 4px;
    }
    .timeline-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark-slate);
      margin-bottom: 6px;
    }
    .timeline-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 资讯列表 */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .news-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
    }
    .news-img {
      height: 170px;
      object-fit: cover;
      width: 100%;
    }
    .news-body {
      padding: 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .news-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark-slate);
      line-height: 1.45;
      margin-bottom: 8px;
    }
    .news-summary {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .news-date {
      font-size: 0.8rem;
      color: #94a3b8;
    }

    /* 常见问题速答 Accordion */
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      margin-bottom: 12px;
      padding: 18px 22px;
    }
    .faq-q {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 8px;
    }
    .faq-a {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 表单收口区 */
    .form-wrap {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 36px 30px;
      box-shadow: var(--shadow-sm);
      max-width: 680px;
      margin: 0 auto;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: #334155;
      margin-bottom: 6px;
    }
    .form-control {
      width: 100%;
      padding: 10px 14px;
      font-size: 0.92rem;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      background-color: #f8fafc;
      color: var(--text-main);
    }
    .form-control:focus {
      outline: none;
      border-color: var(--primary-accent);
      background-color: #ffffff;
    }
    .form-tip {
      font-size: 0.8rem;
      color: #94a3b8;
      margin-top: 5px;
    }

    /* 页脚 */
    .gov-footer {
      background-color: #0b1e33;
      color: #94a3b8;
      font-size: 0.88rem;
      padding: 50px 0 25px;
      border-top: 3px solid var(--primary-accent);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-title {
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: #94a3b8;
    }
    .footer-links a:hover {
      color: #38bdf8;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px;
      text-align: center;
      font-size: 0.82rem;
    }

    /* 响应式断点适配 */
    @media (max-width: 1024px) {
      .metric-grid { grid-template-columns: repeat(2, 1fr); }
      .feature-grid, .material-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
      .matrix-flex { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .hero-title { font-size: 1.85rem; }
      .hero-desc { font-size: 0.95rem; }
      .feature-grid, .material-grid, .news-grid { grid-template-columns: 1fr; }
      .comparison-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 25px; }
      .nav-menu { display: none; }
      .countdown-flex { justify-content: center; }
    }
    @media (max-width: 520px) {
      .metric-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; width: 100%; }
      .btn-main, .btn-sub { width: 100%; justify-content: center; }
    }

/* roulang page: category1 */
:root {
            --primary-color: #0f2b48;
            --primary-accent: #0284c7;
            --secondary-color: #0369a1;
            --accent-gold: #d97706;
            --dark-slate: #0f172a;
            --light-bg: #f8fafc;
            --card-bg: #ffffff;
            --border-color: #e2e8f0;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 14px rgba(15,23,42,0.08);
            --shadow-lg: 0 10px 25px rgba(15,23,42,0.12);
            --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--light-bg);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a { color: var(--secondary-color); text-decoration: none; transition: color var(--transition-fast); }
        a:hover { color: var(--primary-accent); }
        img { max-width: 100%; height: auto; display: block; }
        .gov-topbar {
            background-color: #0b1e33;
            border-bottom: 2px solid var(--primary-accent);
            color: #94a3b8;
            font-size: 0.85rem;
            padding: 6px 0;
        }
        .gov-header {
            background-color: #ffffff;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: -0.5px;
        }
        .brand-logo .badge-symbol {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-accent));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            font-size: 1.1rem;
            font-weight: 800;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            gap: 4px;
        }
        .nav-link {
            padding: 10px 18px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #334155;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-accent);
            background-color: #f0f7ff;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-query {
            border: 1px solid var(--border-color);
            background-color: #ffffff;
            color: #334155;
            padding: 8px 16px;
            font-size: 0.88rem;
            font-weight: 500;
            border-radius: var(--radius-sm);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-query:hover {
            background-color: #f8fafc;
            border-color: #cbd5e1;
        }

        /* 分类页定制首屏：严肃规范大图叙事 */
        .category-hero {
            background: linear-gradient(135deg, #091a2e 0%, #102a45 100%);
            border-bottom: 1px solid #1e3a5f;
            padding: 55px 0 65px;
            color: #ffffff;
        }
        .cat-hero-header {
            margin-bottom: 24px;
        }
        .cat-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(2, 132, 199, 0.18);
            border: 1px solid rgba(56, 189, 248, 0.4);
            color: #7dd3fc;
            padding: 4px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .cat-main-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .cat-lead-summary {
            font-size: 1.02rem;
            line-height: 1.8;
            color: #cbd5e1;
            max-width: 820px;
            margin-bottom: 25px;
        }
        .cat-quick-search-box {
            background: #ffffff;
            padding: 6px 8px 6px 16px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            max-width: 640px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }
        .cat-quick-search-box input {
            border: none;
            box-shadow: none;
            margin: 0;
            font-size: 0.95rem;
            color: #0f172a;
            background: transparent;
        }
        .cat-quick-search-box input:focus {
            outline: none;
            box-shadow: none;
            background: transparent;
        }
        .btn-search-act {
            background: var(--primary-accent);
            color: #ffffff;
            border: none;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-search-act:hover {
            background: var(--secondary-color);
        }

        /* 通用板块与排版 */
        .section-wrap {
            padding: 60px 0;
            position: relative;
        }
        .section-alt {
            background-color: #f1f5f9;
        }
        .section-header {
            margin-bottom: 35px;
        }
        .section-badge {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 6px;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-slate);
            line-height: 1.35;
            margin-bottom: 10px;
        }
        .section-summary {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 780px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* 1. 指标看板 */
        .metrics-board {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .board-stat-item {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 22px 18px;
            box-shadow: var(--shadow-sm);
            border-top: 3px solid var(--primary-accent);
        }
        .stat-figure {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: #334155;
            margin-bottom: 4px;
        }
        .stat-sub {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* 2. 档案矩阵卡片 */
        .matrix-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .matrix-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
            display: flex;
            flex-direction: column;
        }
        .matrix-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .matrix-card-thumb {
            height: 180px;
            overflow: hidden;
            position: relative;
            background: #0f172a;
        }
        .matrix-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .matrix-card:hover .matrix-card-thumb img {
            transform: scale(1.04);
        }
        .matrix-stage-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(15, 43, 72, 0.85);
            color: #ffffff;
            backdrop-filter: blur(4px);
            padding: 3px 10px;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .matrix-card-body {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .matrix-card-title {
            font-size: 1.18rem;
            font-weight: 700;
            color: var(--dark-slate);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .matrix-card-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 16px;
            flex: 1;
        }
        .matrix-spec-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 18px;
        }
        .spec-pill {
            background: #f1f5f9;
            color: #475569;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 2px;
            border: 1px solid #e2e8f0;
        }
        .matrix-action-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary-accent);
            padding-top: 12px;
            border-top: 1px solid #f1f5f9;
        }
        .matrix-action-link:hover {
            color: var(--secondary-color);
        }

        /* 3. 结果对比表格 */
        .contrast-table-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .contrast-table {
            width: 100%;
            margin-bottom: 0;
            border-collapse: collapse;
        }
        .contrast-table th {
            background: #0f2b48;
            color: #ffffff;
            font-weight: 600;
            padding: 14px 18px;
            font-size: 0.92rem;
            text-align: left;
            border: none;
        }
        .contrast-table td {
            padding: 14px 18px;
            font-size: 0.88rem;
            border-bottom: 1px solid var(--border-color);
            color: #334155;
        }
        .contrast-table tr:nth-child(even) td {
            background: #f8fafc;
        }
        .contrast-tag-high {
            color: #0369a1;
            font-weight: 700;
            background: #e0f2fe;
            padding: 3px 8px;
            border-radius: 2px;
            display: inline-block;
        }

        /* 4. 里程碑时间轴 */
        .timeline-stream {
            position: relative;
            padding: 20px 0 20px 30px;
            border-left: 2px solid #cbd5e1;
            margin-left: 15px;
        }
        .timeline-milestone {
            position: relative;
            margin-bottom: 35px;
        }
        .timeline-milestone:last-child {
            margin-bottom: 0;
        }
        .timeline-dot {
            position: absolute;
            left: -37px;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #ffffff;
            border: 4px solid var(--primary-accent);
        }
        .timeline-year {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 6px;
        }
        .timeline-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            box-shadow: var(--shadow-sm);
        }
        .timeline-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark-slate);
            margin-bottom: 8px;
        }
        .timeline-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.65;
        }

        /* 5. 资讯精粹列表 */
        .digest-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .digest-item {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 16px;
        }
        .digest-img {
            width: 130px;
            height: 95px;
            flex-shrink: 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: #e2e8f0;
        }
        .digest-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .digest-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .digest-title {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--dark-slate);
            line-height: 1.45;
            margin-bottom: 6px;
        }
        .digest-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
        }

        /* 6. 平台保障网格 */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .sec-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }
        .sec-icon {
            width: 46px;
            height: 46px;
            background: #f0f7ff;
            color: var(--primary-accent);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }
        .sec-box h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-slate);
            margin-bottom: 8px;
        }
        .sec-box p {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* 7. FAQ 折叠手风琴 */
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .faq-item {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 16px 20px;
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--dark-slate);
            background: #ffffff;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 16px 20px;
            font-size: 0.88rem;
            color: #475569;
            line-height: 1.7;
            background: #fafbfc;
        }

        /* 8. 转化表单区 */
        .convert-panel {
            background: linear-gradient(135deg, #0f2b48, #0b1e33);
            border-radius: var(--radius-lg);
            padding: 45px 40px;
            color: #ffffff;
            box-shadow: var(--shadow-lg);
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr) auto;
            gap: 14px;
            align-items: center;
            margin-top: 25px;
        }
        .form-field {
            margin: 0;
        }
        .form-field input, .form-field select {
            width: 100%;
            height: 44px;
            border-radius: var(--radius-sm);
            border: 1px solid #334155;
            background: rgba(255,255,255,0.08);
            color: #ffffff;
            padding: 0 14px;
            font-size: 0.9rem;
            box-shadow: none;
            margin-bottom: 0;
        }
        .form-field select option {
            background: #0f2b48;
            color: #ffffff;
        }
        .form-field input:focus, .form-field select:focus {
            outline: none;
            border-color: var(--primary-accent);
            background: rgba(255,255,255,0.12);
        }
        .btn-submit-form {
            height: 44px;
            background: var(--primary-accent);
            color: #ffffff;
            border: none;
            padding: 0 26px;
            font-size: 0.92rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition-fast);
        }
        .btn-submit-form:hover {
            background: var(--secondary-color);
        }

        /* 页脚统一规范 */
        .gov-footer {
            background-color: #0b1726;
            color: #94a3b8;
            padding: 60px 0 25px;
            border-top: 1px solid #1e293b;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-title {
            color: #f1f5f9;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 8px;
        }
        .footer-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 32px;
            height: 2px;
            background-color: var(--primary-accent);
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #94a3b8;
            font-size: 0.88rem;
        }
        .footer-links a:hover {
            color: #38bdf8;
        }
        .footer-bottom {
            padding-top: 25px;
            border-top: 1px solid #1e293b;
            text-align: center;
            font-size: 0.82rem;
            color: #64748b;
        }

        /* 响应式断点 */
        @media screen and (max-width: 1024px) {
            .metrics-board { grid-template-columns: repeat(2, 1fr); }
            .matrix-container { grid-template-columns: repeat(2, 1fr); }
            .security-grid { grid-template-columns: repeat(2, 1fr); }
            .form-grid { grid-template-columns: 1fr 1fr; }
        }
        @media screen and (max-width: 768px) {
            .nav-actions { display: none; }
            .cat-main-title { font-size: 1.65rem; }
            .matrix-container { grid-template-columns: 1fr; }
            .digest-grid { grid-template-columns: 1fr; }
            .security-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .form-grid { grid-template-columns: 1fr; }
            .contrast-table-box { overflow-x: auto; }
            .contrast-table { min-width: 580px; }
        }
        @media screen and (max-width: 520px) {
            .metrics-board { grid-template-columns: 1fr; }
            .cat-quick-search-box { flex-direction: column; gap: 8px; padding: 10px; }
            .cat-quick-search-box input { width: 100%; text-align: center; }
            .btn-search-act { width: 100%; }
        }
