:root {
      --main: #ea580c;
      --accent: #d97706;
      --bg: #fffbf5;
      --ink: #1c1917;
    }
    body {
      background-color: var(--bg);
      color: var(--ink);
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      line-height: 1.75;
      letter-spacing: 0.01em;
      font-weight: 400;
    }
    h1,h2,h3,h4,.navbar-brand {
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    /* 胶囊圆角 + 全圆按钮 */
    .btn {
      border-radius: 50rem !important;
    }
    .card, .list-group-item, .bg-white-soft {
      border-radius: 1.5rem !important;
    }
    /* 导航胶囊 */
    .navbar {
      background-color: rgba(255, 251, 245, 0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(234, 88, 12, 0.12);
      padding: 0.7rem 0;
    }
    .navbar .nav-link {
      color: var(--ink);
      font-weight: 500;
      margin: 0 0.25rem;
      padding: 0.5rem 1rem;
      border-radius: 50rem;
      transition: background .2s;
    }
    .navbar .nav-link:hover {
      background: rgba(234, 88, 12, 0.08);
      color: var(--main);
    }
    .navbar-brand i {
      color: var(--main);
    }
    /* Hero 打字机光标 */
    .typewriter {
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      border-right: 0.1em solid var(--main);
      animation: blink-caret 0.8s step-end infinite;
      font-weight: 800;
      font-size: clamp(2.2rem, 6vw, 4.3rem);
      line-height: 1.2;
    }
    @keyframes blink-caret {
      0%, 100% { border-color: var(--main); }
      50% { border-color: transparent; }
    }
    .hero-section {
      position: relative;
      background: linear-gradient(145deg, rgba(234,88,12,0.05) 0%, rgba(255,251,245,0) 60%);
      padding: 6rem 0 5rem;
      margin-bottom: 1rem;
      /* 视差背景 */
      background-image: url('{随机图片}');
      background-size: cover;
      background-position: center 30%;
      background-attachment: fixed;
      background-blend-mode: overlay;
      background-color: #fff8f0;
    }
    .hero-overlay {
      background: rgba(255, 251, 245, 0.7);
      backdrop-filter: blur(2px);
      padding: 2rem;
      border-radius: 3rem;
    }
    .section-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 2.5rem 0 1.8rem;
      font-weight: 700;
      border-bottom: 3px solid var(--accent);
      padding-bottom: 0.5rem;
      display: inline-block;
    }
    .section-title i {
      color: var(--main);
    }
    /* 卡片 hover 效果 */
    .hover-card {
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
      border: 1px solid rgba(0,0,0,0.06);
      background: white;
      border-radius: 2rem;
    }
    .hover-card:hover {
      transform: scale(1.01);
      border-color: var(--accent);
      box-shadow: 0 12px 30px rgba(234, 88, 12, 0.08);
    }
    /* 淡入上移动效 */
    .fade-up {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.6s cubic-bezier(.2,.7,.3,1), transform 0.6s cubic-bezier(.2,.7,.3,1);
    }
    .fade-up.reveal {
      opacity: 1;
      transform: translateY(0);
    }
    .list-group-numbered {
      border-radius: 2rem;
      overflow: hidden;
    }
    .list-group-item {
      background: white;
      border-left: 4px solid var(--main);
      margin-bottom: 6px;
      border-radius: 1rem !important;
      font-weight: 500;
    }
    .table-wrap {
      border-radius: 2rem;
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }
    .table {
      --bs-table-bg: transparent;
      margin-bottom: 0;
    }
    .table thead th {
      background: rgba(234,88,12,0.06);
      border-bottom: 2px solid var(--main);
      color: var(--main);
      font-weight: 600;
    }
    .table td, .table th {
      padding: 0.9rem 1rem;
      vertical-align: middle;
    }
    .footer-links {
      background: rgba(234,88,12,0.03);
      border-radius: 2.5rem;
      padding: 1.8rem 2rem;
    }
    .footer-links a {
      color: var(--ink);
      text-decoration: none;
      font-weight: 500;
      margin: 0 0.6rem;
    }
    .footer-links a:hover {
      color: var(--main);
    }
    .footer {
      background: #fcf6ee;
      border-top: 1px solid rgba(234,88,12,0.08);
    }
    /* 编号清单样式 */
    .steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding-left: 0;
    }
    .steps-list li {
      counter-increment: step-counter;
      margin-bottom: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      background: white;
      padding: 0.8rem 1.5rem;
      border-radius: 3rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }
    .steps-list li::before {
      content: counter(step-counter);
      background: var(--main);
      color: white;
      font-weight: 700;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 1.5rem;
      flex-shrink: 0;
    }
    /* 对比表格用徽章 */
    .badge-soft {
      background: rgba(234,88,12,0.08);
      color: var(--main);
      font-weight: 600;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
    }
    a {
      color: var(--main);
      text-decoration: none;
    }

/* --- 子页面追加 --- */
/* 本页专属小范围样式(自动合并进站点CSS) */
    .subscribe-hero { background: linear-gradient(135deg, rgba(234,88,12,.08) 0%, rgba(217,119,6,.04) 100%); }
.subscribe-card { background: var(--bg); border: 1px solid rgba(234,88,12,.15); border-radius: 16px; transition: all .3s ease; }
.subscribe-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(234,88,12,.10); border-color: rgba(234,88,12,.35); }
.subscribe-form-control { background: rgba(255,255,255,.7); border: 1px solid rgba(234,88,12,.2); color: var(--ink); border-radius: 10px; padding: 12px 16px; }
.subscribe-form-control:focus { outline: none; border-color: var(--main); box-shadow: 0 0 0 3px rgba(234,88,12,.12); }
.subscribe-form-control::placeholder { color: rgba(28,25,23,.4); }
.subscribe-plan-price { font-size: 2.2rem; font-weight: 800; color: var(--main); }
.subscribe-step-num { width: 36px; height: 36px; background: var(--main); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.subscribe-list-check { list-style: none; padding-left: 0; }
.subscribe-list-check li { padding-left: 32px; position: relative; margin-bottom: 10px; }
.subscribe-list-check li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--main); }
.subscribe-badge { background: rgba(234,88,12,.12); color: var(--main); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 30px; }
.subscribe-note { background: rgba(234,88,12,.06); border-left: 4px solid var(--main); padding: 16px 20px; border-radius: 0 12px 12px 0; }

/* --- 子页面追加 --- */
.about-hero { background: linear-gradient(135deg, var(--main), var(--accent)); color: #fff; padding: 4rem 0 3rem; }
.about-hero h1 { color: #fff; }
.about-hero p { color: rgba(255,255,255,.9); }
.about-section { padding: 3.5rem 0; }
.about-section:nth-child(even) { background: #fff; }
.stat-card { background: var(--bg); border: 1px solid #f0e6d8; border-radius: 12px; padding: 1.5rem; text-align: center; transition: transform .3s ease; }
.stat-card:hover { transform: translateY(-4px); }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--main); }
.stat-label { color: var(--ink); opacity: .7; margin-top: .3rem; }
.timeline-item { position: relative; padding-left: 2rem; margin-bottom: 2rem; border-left: 3px solid var(--main); }
.timeline-item::before { content: ''; position: absolute; left: -8px; top: 6px; width: 13px; height: 13px; background: var(--main); border-radius: 50%; }
.timeline-year { font-weight: 700; color: var(--main); font-size: 1.1rem; }
.value-icon { font-size: 2rem; color: var(--main); margin-bottom: 1rem; }
.about-list li { margin-bottom: .8rem; }
.about-list i { color: var(--main); margin-right: .5rem; }

/* --- 子页面追加 --- */
/* 本页专属微调样式 - 自动合并进站点CSS */
    .disclaimer-section {
      padding: 4rem 0;
    }
.disclaimer-section + .disclaimer-section {
      border-top: 1px solid rgba(234, 88, 12, 0.1);
    }
.disclaimer-card {
      background: rgba(255, 251, 245, 0.6);
      border: 1px solid rgba(234, 88, 12, 0.1);
      border-radius: 12px;
      padding: 1.75rem 2rem;
      margin-bottom: 1.5rem;
      transition: box-shadow 0.3s ease;
    }
.disclaimer-card:hover {
      box-shadow: 0 8px 30px rgba(234, 88, 12, 0.08);
    }
.disclaimer-card h3 {
      color: var(--main);
      font-weight: 700;
      font-size: 1.35rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
.disclaimer-card h3 i {
      font-size: 1.1rem;
      color: var(--accent);
    }
.disclaimer-card p, .disclaimer-card li {
      color: var(--ink);
      line-height: 1.8;
      font-size: 0.95rem;
    }
.disclaimer-card ul {
      padding-left: 1.2rem;
      margin-top: 0.5rem;
    }
.disclaimer-card li {
      margin-bottom: 0.4rem;
    }
.highlight-text {
      background: linear-gradient(120deg, rgba(234, 88, 12, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
      border-left: 3px solid var(--main);
      padding: 0.8rem 1.2rem;
      border-radius: 0 8px 8px 0;
      margin: 1.2rem 0;
      font-size: 0.95rem;
      line-height: 1.8;
    }
.last-updated {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(234, 88, 12, 0.06);
      color: var(--main);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 2.5rem;
    }
.disclaimer-card {
        padding: 1.25rem 1.25rem;
      }
.disclaimer-card h3 {
        font-size: 1.1rem;
      }

/* --- 子页面追加 --- */
.privacy-content h2 {
            color: var(--main);
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            border-left: 4px solid var(--main);
            padding-left: 1rem;
        }
.privacy-content p {
            line-height: 1.9;
            color: var(--ink);
            opacity: 0.85;
            margin-bottom: 1.2rem;
        }
.privacy-content .table-wrap {
            margin-bottom: 2rem;
        }
.highlight-box {
            background: rgba(234,88,12,0.06);
            border: 1px solid rgba(234,88,12,0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
.highlight-box strong {
            color: var(--main);
        }
.privacy-content h2 {
                font-size: 1.3rem;
            }

/* --- 子页面追加 --- */
.ranking-hero {
            background: linear-gradient(135deg, rgba(234,88,12,.08) 0%, rgba(217,119,6,.05) 100%);
            border-bottom: 1px solid rgba(234,88,12,.15);
            padding: 60px 0 40px;
        }
.ranking-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
.ranking-tab {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            background: rgba(234,88,12,.08);
            color: var(--ink);
            border: 1px solid rgba(234,88,12,.2);
            transition: all .3s;
        }
.ranking-tab:hover, .ranking-tab.active {
            background: var(--main);
            color: #fff;
            border-color: var(--main);
        }
.rank-item {
            display: flex;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid rgba(28,25,23,.08);
            gap: 16px;
        }
.rank-item:last-child {
            border-bottom: none;
        }
.rank-num {
            font-size: 24px;
            font-weight: 800;
            color: var(--main);
            min-width: 48px;
            text-align: center;
            font-style: italic;
        }
.rank-num.top {
            color: var(--accent);
            font-size: 28px;
        }
.rank-info {
            flex: 1;
        }
.rank-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--ink);
        }
.rank-info p {
            font-size: 13px;
            color: rgba(28,25,23,.6);
            margin: 0;
        }
.rank-score {
            text-align: right;
            min-width: 70px;
        }
.rank-score .score {
            font-size: 18px;
            font-weight: 700;
            color: var(--main);
        }
.rank-score .trend {
            font-size: 12px;
            color: #16a34a;
        }
.rank-score .trend.down {
            color: #dc2626;
        }
.rank-category {
            margin-bottom: 40px;
        }
.rank-category .section-title {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.rank-category .section-title .icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--main), var(--accent));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card-body { background:transparent !important; color:#1c1917 !important; }
.form-label { color:#1c1917 !important; }
.accordion-item { background:rgba(0,0,0,.03) !important; color:#1c1917 !important; border-color:rgba(0,0,0,.12) !important; }
.accordion-button { background:rgba(0,0,0,.03) !important; color:#1c1917 !important; }
.accordion-body { background:transparent !important; color:#1c1917 !important; }
.accordion-header { background:transparent !important; }
