/* 设计种子：4207 暖棕焦糖 */
    :root {
      --primary: #b45309;
      --accent: #ca8a04;
      --bg: #fefce8;
      --text: #451a03;
      --radius: 8px;
      --shadow: 0 6px 20px rgba(180, 83, 9, 0.06);
      --line: rgba(180, 83, 9, 0.15);
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.75;
      font-weight: 400;
      letter-spacing: 0.01em;
      overflow-x: hidden;
    }

    /* 通用圆角与分隔 */
    .radius-8 { border-radius: var(--radius); }
    .divider-light { border-bottom: 1px solid var(--line); }

    /* 导航 */
    .navbar-mq {
      background: rgba(254, 252, 232, 0.85);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--line);
      padding: 0.7rem 1rem;
      font-weight: 500;
    }
    .navbar-mq .navbar-brand {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.02em;
    }
    .navbar-mq .navbar-brand i {
      margin-right: 0.3rem;
      color: var(--accent);
    }
    .navbar-mq .nav-link {
      color: var(--text);
      margin: 0 0.5rem;
      font-weight: 500;
      border-radius: 20px;
      padding: 0.3rem 1rem !important;
      transition: all 0.15s;
    }
    .navbar-mq .nav-link:hover {
      background: var(--primary);
      color: #fff;
    }
    .navbar-toggler { border: none; }
    .navbar-toggler:focus { box-shadow: 0 0 0 0.15rem rgba(180,83,9,0.2); }

    /* 杂志封面 hero */
    .hero-wrap {
      position: relative;
      min-height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: 
        linear-gradient(135deg, rgba(180,83,9,0.45) 0%, rgba(202,138,4,0.15) 100%),
        url('{随机图片}') center/cover no-repeat;
      border-radius: 0 0 var(--radius) var(--radius);
      margin-bottom: 2rem;
      isolation: isolate;
    }
    .hero-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.30);
      z-index: -1;
      border-radius: 0 0 var(--radius) var(--radius);
    }
    .hero-content {
      text-align: center;
      color: white;
      text-shadow: 0 2px 8px rgba(0,0,0,0.2);
      padding: 2rem 1.5rem;
    }
    .hero-content h1 {
      font-size: 3.6rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    .hero-content p {
      font-size: 1.3rem;
      font-weight: 400;
      max-width: 650px;
      margin: 1rem auto;
    }
    .btn-hero {
      background: var(--primary);
      border: none;
      padding: 0.7rem 2rem;
      border-radius: 30px;
      font-weight: 600;
      color: white;
      box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    }
    .btn-hero:hover { background: #92400e; color: white; }

    /* 数据统计 */
    .stats-section {
      padding: 2rem 0;
    }
    .stat-card {
      background: white;
      padding: 1.5rem 0.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      transition: transform 0.2s;
    }
    .stat-card i { font-size: 2rem; color: var(--primary); }
    .stat-number { font-size: 2.2rem; font-weight: 800; color: var(--text); }

    /* 使用说明步骤条 */
    .steps-wrapper {
      background: rgba(255,255,255,0.5);
      padding: 2rem 1.5rem;
      border-radius: var(--radius);
      border: 1px solid var(--line);
    }
    .step-item {
      text-align: center;
      position: relative;
    }
    .step-icon {
      background: var(--primary);
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      font-weight: 700;
    }
    .step-item p { margin-top: 0.8rem; font-weight: 500; }

    /* 特色卡片网格 */
    .feature-card {
      background: white;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.3s;
      height: 100%;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(180,83,9,0.12); }
    .feature-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .feature-card:hover img { transform: scale(1.05); }
    .feature-body { padding: 1.2rem; }
    .feature-body h5 { font-weight: 700; }

    /* 滚动渐现 */
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }

    /* FAQ */
    .accordion-item {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      margin-bottom: 0.7rem;
      overflow: hidden;
    }
    .accordion-button { background: white; color: var(--text); font-weight: 600; }
    .accordion-button:not(.collapsed) { background: rgba(202,138,4,0.08); color: var(--primary); }
    .accordion-button:focus { box-shadow: none; }

    /* CTA */
    .cta-box {
      background: linear-gradient(100deg, #b45309 0%, #ca8a04 100%);
      border-radius: 20px;
      color: white;
      padding: 3rem 2rem;
      text-align: center;
    }
    .cta-box h2 { font-weight: 800; font-size: 2.5rem; }
    .cta-btn {
      background: white; color: var(--primary);
      border: none; padding: 0.8rem 2.5rem;
      border-radius: 40px; font-weight: 700;
    }

    /* 友情链接 & 页脚 */
    .friend-links {
      background: rgba(255,255,255,0.4);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 1.2rem 0;
      margin-top: 3rem;
    }
    footer {
      background: #fffaf0;
      border-top: 1px solid var(--line);
      padding: 2rem 0;
      color: var(--text);
    }
    footer a { color: var(--primary); text-decoration: none; font-weight: 500; }

    /* 区块间距 */
    .section-pad { padding: 3.2rem 0; }
    .display-6 { font-weight: 700; letter-spacing: -0.01em; }

    /* 纯装饰 */
    .deco-line { width: 60px; height: 4px; background: var(--accent); border-radius: 4px; margin: 0.5rem 0 1.2rem; }

    @media (max-width: 992px) {
      .hero-content h1 { font-size: 2.6rem; }
    }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(180,83,9,0.08) 0%, rgba(202,138,4,0.05) 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--line);
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
.about-hero p.lead {
            font-size: 1.1rem;
            color: var(--text);
            opacity: 0.8;
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-section {
            padding: 70px 0;
            border-bottom: 1px solid var(--line);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }
.about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 48px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
.about-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            margin-top: 28px;
        }
.about-section p {
            color: var(--text);
            line-height: 1.9;
            font-size: 1rem;
            opacity: 0.85;
            margin-bottom: 16px;
        }
.about-list {
            list-style: none;
            padding: 0;
            margin: 16px 0;
        }
.about-list li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            color: var(--text);
            opacity: 0.85;
            line-height: 1.7;
        }
.about-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
.about-number {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            font-weight: 800;
            font-size: 0.9rem;
            margin-right: 12px;
        }
.about-timeline {
            position: relative;
            padding-left: 30px;
            margin: 20px 0;
        }
.about-timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--line);
        }
.timeline-item {
            position: relative;
            margin-bottom: 24px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 8px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            border: 2px solid var(--bg);
        }
.timeline-item .year {
            font-weight: 800;
            color: var(--primary);
            font-size: 0.95rem;
            display: block;
            margin-bottom: 4px;
        }
.timeline-item .desc {
            color: var(--text);
            opacity: 0.8;
            line-height: 1.7;
        }
.about-quote {
            background: rgba(180,83,9,0.06);
            border-left: 4px solid var(--accent);
            padding: 24px 28px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 32px 0;
            font-style: italic;
            font-size: 1.05rem;
            color: var(--text);
            line-height: 1.8;
        }
.about-hero h1 {
                font-size: 2rem;
            }
.about-section {
                padding: 50px 0;
            }

/* --- 子页面追加 --- */
.disclaimer-hero {
            background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fffbeb 100%);
            border-bottom: 1px solid var(--line);
            padding: 4rem 0 3rem;
        }
.disclaimer-card {
            background: rgba(255,255,255,0.6);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 2rem 2.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-3px);
        }
.disclaimer-card h2 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
.disclaimer-card h2 i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-card ul {
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
        }
.disclaimer-card ul li {
            margin-bottom: 0.4rem;
        }
.highlight-box {
            background: rgba(202, 138, 4, 0.08);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }
.highlight-box p {
            margin-bottom: 0;
            font-weight: 500;
        }
.page-title {
            position: relative;
            display: inline-block;
            padding-bottom: 0.5rem;
        }
.page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
.last-updated {
            color: var(--primary);
            opacity: 0.7;
            font-size: 0.85rem;
            margin-top: 1rem;
        }
.disclaimer-card {
                padding: 1.5rem 1.2rem;
            }
.disclaimer-hero {
                padding: 3rem 0 2rem;
            }

/* --- 子页面追加 --- */
.privacy-hero {
            background: linear-gradient(135deg, rgba(180,83,9,0.08) 0%, rgba(202,138,4,0.05) 100%);
            border-bottom: 1px solid var(--line);
            padding: 3rem 0 2.5rem;
        }
.privacy-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.75rem;
        }
.privacy-hero .lead {
            color: var(--primary);
            font-weight: 500;
            font-size: 1.1rem;
            max-width: 700px;
        }
.privacy-section {
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--line);
        }
.privacy-section:last-of-type {
            border-bottom: none;
        }
.privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.25rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
.privacy-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
.privacy-section h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin: 1.25rem 0 0.75rem;
        }
.privacy-section p {
            color: rgba(69,26,3,0.85);
            line-height: 1.75;
            margin-bottom: 1rem;
        }
.privacy-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1.25rem;
        }
.privacy-section ul li {
            color: rgba(69,26,3,0.85);
            line-height: 1.7;
            margin-bottom: 0.4rem;
            position: relative;
        }
.privacy-section ul li::marker {
            color: var(--accent);
        }
.privacy-card {
            background: rgba(255,255,255,0.4);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
        }
.privacy-card .icon-wrap {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(180,83,9,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }
.contact-email {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed var(--accent);
        }
.contact-email:hover {
            color: var(--accent);
        }
.privacy-hero h1 {
                font-size: 1.7rem;
            }
.privacy-section {
                padding: 2rem 0;
            }

/* --- 子页面追加 --- */
/* 排行榜专属样式 */
        .rank-hero {
            background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fde68a 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.rank-hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(180, 83, 9, 0.08);
            border-radius: 50%;
        }
.rank-hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 10%;
            width: 150px;
            height: 150px;
            background: rgba(202, 138, 4, 0.06);
            border-radius: 50%;
        }
.rank-hero h1 {
            color: var(--text);
            font-weight: 800;
            font-size: 2.8rem;
            position: relative;
            z-index: 1;
        }
.rank-hero p {
            color: rgba(69, 26, 3, 0.75);
            font-size: 1.15rem;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }
.rank-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 30px 0 20px;
        }
.rank-tab {
            padding: 10px 24px;
            border-radius: 50px;
            border: 2px solid var(--line);
            background: var(--bg);
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.rank-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
.rank-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.rank-table-wrap {
            background: var(--bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 40px;
        }
.rank-table {
            width: 100%;
            border-collapse: collapse;
        }
.rank-table thead th {
            background: rgba(180, 83, 9, 0.08);
            padding: 16px 20px;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--line);
            text-align: left;
        }
.rank-table tbody td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--line);
            vertical-align: middle;
        }
.rank-table tbody tr {
            transition: background 0.2s ease;
        }
.rank-table tbody tr:hover {
            background: rgba(180, 83, 9, 0.04);
        }
.rank-table tbody tr:last-child td {
            border-bottom: none;
        }
.rank-num {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--accent);
            min-width: 50px;
        }
.rank-num.top-1 {
            color: #d97706;
            font-size: 1.8rem;
        }
.rank-num.top-2 {
            color: #b45309;
            font-size: 1.6rem;
        }
.rank-num.top-3 {
            color: #a16207;
            font-size: 1.5rem;
        }
.rank-title {
            font-weight: 700;
            color: var(--text);
            font-size: 1.05rem;
        }
.rank-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
.rank-tag {
            background: rgba(180, 83, 9, 0.08);
            color: var(--primary);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
.rank-stats {
            font-size: 0.85rem;
            color: rgba(69, 26, 3, 0.6);
            white-space: nowrap;
        }
.rank-stats i {
            margin-right: 4px;
            color: var(--accent);
        }
.trend-up {
            color: #16a34a;
            font-weight: 600;
        }
.trend-down {
            color: #dc2626;
            font-weight: 600;
        }
.trend-flat {
            color: rgba(69, 26, 3, 0.4);
            font-weight: 600;
        }
.rank-badge {
            background: var(--primary);
            color: #fff;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-block;
            margin-left: 10px;
        }
.rank-badge.hot {
            background: #ea580c;
        }
.rank-badge.new {
            background: #16a34a;
        }
.rank-badge.rising {
            background: #2563eb;
        }
.rank-note {
            background: rgba(180, 83, 9, 0.06);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 30px 0;
            color: rgba(69, 26, 3, 0.8);
            font-size: 0.95rem;
        }
.rank-hero h1 {
                font-size: 2rem;
            }
.rank-table thead {
                display: none;
            }
.rank-table tbody td {
                display: block;
                padding: 10px 16px;
                text-align: left;
                border-bottom: none;
            }
.rank-table tbody tr {
                border-bottom: 2px solid var(--line);
                padding: 10px 0;
                display: block;
            }
.rank-table tbody tr:last-child {
                border-bottom: none;
            }
.rank-num {
                display: inline-block;
                margin-right: 10px;
            }
.rank-stats {
                margin-top: 8px;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-body { background:transparent !important; color:#451a03 !important; }
.accordion-header { background:transparent !important; }
