:root {
    --primary: #b45309;
    --accent: #ca8a04;
    --bg: #fefce8;
    --text: #451a03;
    --white: #ffffff;
    --shadow-soft: 0 12px 30px rgba(180, 83, 9, 0.12);
    --shadow-hover: 0 18px 40px rgba(180, 83, 9, 0.18);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif SC', 'Source Han Serif SC', '思源宋体', 'SimSun', serif;
    font-weight: 800;
  }

  p, span, a, li, div {
    font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', '思源黑体', 'Microsoft YaHei', sans-serif;
  }

  /* ===== 导航栏 ===== */
  .navbar-custom {
    background: rgba(254, 252, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(180, 83, 9, 0.1);
    padding: 14px 0;
    z-index: 1000;
  }

  .navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary) !important;
    letter-spacing: 2px;
  }

  .navbar-brand i {
    color: var(--accent);
    margin-right: 6px;
  }

  .nav-link-custom {
    color: var(--text) !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: color 0.3s;
  }

  .nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.3s;
  }

  .nav-link-custom:hover::after {
    width: 100%;
  }

  .nav-link-custom:hover {
    color: var(--primary) !important;
  }

  .navbar-toggler {
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* ===== Hero ===== */
  .hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(160deg, var(--bg) 0%, #fef3c7 60%, #ffedd5 100%);
    overflow: hidden;
    perspective: 800px;
  }

  .hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('{随机图片}');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transform: translateZ(-50px) scale(1.2);
    animation: heroParallax 25s ease-in-out infinite alternate;
    z-index: 0;
  }

  @keyframes heroParallax {
    0% { transform: translateZ(-50px) scale(1.15) translateY(0); }
    100% { transform: translateZ(-50px) scale(1.05) translateY(-40px); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(180, 83, 9, 0.12);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    animation: floatBadge 3s ease-in-out infinite;
  }

  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 4px;
  }

  .hero-subtitle {
    font-size: 1.35rem;
    color: rgba(69, 26, 3, 0.8);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 400;
  }

  .hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-custom-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff !important;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.35);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-custom-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(180, 83, 9, 0.45);
  }

  .btn-custom-outline {
    background: transparent;
    color: var(--primary) !important;
    font-weight: 600;
    padding: 13px 36px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    font-size: 1.05rem;
    transition: all 0.3s;
    text-decoration: none;
  }

  .btn-custom-outline:hover {
    background: rgba(180, 83, 9, 0.08);
    transform: translateY(-3px);
  }

  .hero-float-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .float-el {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: floatAround 8s ease-in-out infinite;
  }

  .float-el-1 { top: 18%; left: 8%; animation-delay: 0s; font-size: 3.2rem; }
  .float-el-2 { top: 70%; left: 15%; animation-delay: 1.2s; font-size: 2rem; }
  .float-el-3 { top: 25%; right: 12%; animation-delay: 0.6s; font-size: 2.8rem; }
  .float-el-4 { top: 65%; right: 8%; animation-delay: 2s; font-size: 2.2rem; }
  .float-el-5 { top: 45%; left: 45%; animation-delay: 1.8s; font-size: 1.8rem; }

  @keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(10deg); }
    50% { transform: translate(-10px, 15px) rotate(-8deg); }
    75% { transform: translate(8px, -10px) rotate(6deg); }
  }

  /* ===== 数据统计 ===== */
  .stats-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin: -60px auto 0;
    max-width: 1100px;
    padding: 50px 40px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(180, 83, 9, 0.06);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .stat-item {
    text-align: center;
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
  }

  .stat-label {
    font-size: 1rem;
    color: rgba(69, 26, 3, 0.7);
    font-weight: 500;
    margin-top: 8px;
  }

  @media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-section { margin-top: -40px; padding: 30px 20px; }
  }

  /* ===== 通用区块 ===== */
  .section-padding { padding: 90px 0; }

  .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text);
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: rgba(69, 26, 3, 0.7);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }

  .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 0 auto 50px;
  }

  /* ===== 使用说明 ===== */
  .steps-section {
    background: linear-gradient(180deg, var(--bg) 0%, #fff7ed 100%);
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
  }

  .steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }

  .steps-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .steps-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }

  .step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .step-number {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.3);
  }

  .step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
  }

  .step-content p {
    font-size: 1rem;
    color: rgba(69, 26, 3, 0.8);
    line-height: 1.6;
  }

  /* ===== 特色卡片 ===== */
  .feature-section {
    padding: 100px 0;
    background: var(--bg);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    border: 1px solid rgba(180, 83, 9, 0.05);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
  }

  .feature-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(180, 83, 9, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: var(--primary);
  }

  .feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 0.95rem;
    color: rgba(69, 26, 3, 0.75);
    line-height: 1.65;
  }

  @media (max-width: 992px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .feature-grid { grid-template-columns: 1fr; }
  }

  /* ===== FAQ ===== */
  .faq-section {
    background: #fff7ed;
    padding: 100px 0;
    position: relative;
  }

  .faq-wrapper {
    max-width: 860px;
    margin: 0 auto;
  }

  .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: box-shadow 0.3s;
  }

  .faq-item:hover {
    box-shadow: var(--shadow-hover);
  }

  .faq-question {
    padding: 24px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    background: var(--white);
  }

  .faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
  }

  .faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: rgba(69, 26, 3, 0.8);
    line-height: 1.7;
    font-size: 0.98rem;
    border-top: 0px solid transparent;
  }

  .faq-item.active .faq-answer {
    padding: 0 30px 24px;
    max-height: 400px;
    border-top: 1px solid rgba(180, 83, 9, 0.1);
  }

  .faq-item.active .faq-question i {
    transform: rotate(45deg);
  }

  /* ===== CTA ===== */
  .cta-section {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #d97706 50%, var(--accent) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
  }

  .cta-title {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
  }

  .cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 2;
  }

  .btn-cta-white {
    background: #fff;
    color: var(--primary) !important;
    font-weight: 700;
    padding: 14px 44px;
    border-radius: 50px;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
  }

  .btn-cta-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  /* ===== 友情链接 ===== */
  .friend-links {
    background: var(--bg);
    padding: 60px 0;
    border-top: 1px solid rgba(180, 83, 9, 0.1);
  }

  .friend-links-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 2px;
  }

  .friend-links-content {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(69, 26, 3, 0.65);
    line-height: 2;
  }

  /* ===== 页脚 ===== */
  .footer {
    background: #2d1a05;
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 20px;
  }

  .footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
  }

  .footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 350px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  .footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-copy a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
  }

  /* ===== 滚动显现 ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== 图片hover ===== */
  .img-hover-zoom {
    overflow: hidden;
    border-radius: var(--radius-md);
  }

  .img-hover-zoom img {
    transition: transform 0.5s ease;
  }

  .img-hover-zoom:hover img {
    transform: scale(1.08);
  }

  /* 响应式调整 */
  @media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2rem; }
  }

  @media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .step-item { flex-direction: column; align-items: center; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-title { font-size: 2rem; }
  }

/* --- 子页面追加 --- */
/* 页面专属样式 */
        .about-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, rgba(180, 83, 9, 0.08) 0%, rgba(202, 138, 4, 0.05) 50%, rgba(254, 252, 232, 1) 100%);
        }
.about-section {
            padding: 70px 0;
        }
.about-section-alt {
            background: rgba(180, 83, 9, 0.03);
        }
.about-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px 35px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(180, 83, 9, 0.1);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
.about-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            margin-bottom: 20px;
        }
.about-title {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 12px;
        }
.about-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }
.about-text {
            color: var(--text);
            line-height: 1.8;
            font-size: 1rem;
        }
.about-text p {
            margin-bottom: 1rem;
        }
.about-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.about-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            border-bottom: 1px solid rgba(180, 83, 9, 0.1);
        }
.about-list li:last-child {
            border-bottom: none;
        }
.about-list i {
            color: var(--accent);
            font-size: 1.1rem;
            margin-top: 4px;
        }
.about-list span {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.6;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--accent), rgba(180, 83, 9, 0.1));
        }
.timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid var(--white);
            box-shadow: 0 0 0 2px var(--primary);
        }
.timeline-year {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
.timeline-title {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
.timeline-desc {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.quote-box {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
.quote-box::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 120px;
            position: absolute;
            top: -20px;
            left: 20px;
            opacity: 0.15;
        }
.quote-box p {
            font-size: 1.3rem;
            font-weight: 500;
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
.quote-box cite {
            font-style: normal;
            font-size: 0.95rem;
            opacity: 0.9;
        }
.stats-inline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.stats-inline .stat-box {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 25px 15px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(180, 83, 9, 0.1);
        }
.stats-inline .stat-box .number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }
.stats-inline .stat-box .label {
            font-size: 0.9rem;
            color: var(--text);
            margin-top: 5px;
            opacity: 0.8;
        }
.about-hero {
                padding: 80px 0 40px;
            }
.about-section {
                padding: 50px 0;
            }
.about-card {
                padding: 30px 25px;
            }
.quote-box {
                padding: 35px 25px;
            }
.quote-box p {
                font-size: 1.1rem;
            }

/* --- 子页面追加 --- */
/* 免责声明页专属样式 */
        .disclaimer-page {
            background: var(--bg);
            padding: 60px 0;
        }
.disclaimer-hero {
            background: linear-gradient(135deg, rgba(180,83,9,.08) 0%, rgba(202,138,4,.05) 100%);
            border: 1px solid rgba(180,83,9,.15);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
.disclaimer-hero::before {
            content: '\f05a';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 120px;
            color: rgba(180,83,9,.06);
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
.disclaimer-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
.disclaimer-hero p {
            color: var(--text);
            font-size: 1.1rem;
            max-width: 700px;
            position: relative;
            z-index: 1;
        }
.disclaimer-section {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(180,83,9,.08);
            transition: transform .3s ease, box-shadow .3s ease;
        }
.disclaimer-section:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
.disclaimer-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-section h2 i {
            font-size: 1.2rem;
            color: var(--accent);
        }
.disclaimer-section h3 {
            color: var(--primary);
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 10px;
        }
.disclaimer-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 12px;
        }
.disclaimer-section ul, .disclaimer-section ol {
            color: var(--text);
            line-height: 1.8;
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-section li {
            margin-bottom: 8px;
        }
.notice-box {
            background: rgba(180,83,9,.06);
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            border-radius: var(--radius-sm);
            margin: 20px 0;
        }
.notice-box i {
            color: var(--accent);
            margin-right: 8px;
        }
.badge-tag {
            display: inline-block;
            background: rgba(180,83,9,.1);
            color: var(--primary);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: .85rem;
            font-weight: 600;
            margin: 4px;
        }
.disclaimer-hero {
                padding: 25px;
            }
.disclaimer-hero h1 {
                font-size: 1.8rem;
            }
.disclaimer-section {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 - 隐私政策页 */
        .privacy-hero {
            background: linear-gradient(135deg, rgba(180, 83, 9, 0.08) 0%, rgba(202, 138, 4, 0.05) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(180, 83, 9, 0.1);
        }
.privacy-hero .hero-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
.privacy-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
            line-height: 1.3;
        }
.privacy-hero .lead {
            color: rgba(69, 26, 3, 0.8);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
.privacy-content {
            padding: 50px 0 70px;
        }
.privacy-section {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 35px 40px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(180, 83, 9, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.privacy-section:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
.privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(180, 83, 9, 0.15);
            position: relative;
        }
.privacy-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--accent);
        }
.privacy-section p {
            color: rgba(69, 26, 3, 0.85);
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
.privacy-section ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }
.privacy-section ul li {
            color: rgba(69, 26, 3, 0.85);
            line-height: 1.8;
            margin-bottom: 8px;
            font-size: 0.95rem;
            position: relative;
            padding-left: 5px;
        }
.privacy-section ul li::marker {
            color: var(--accent);
        }
.privacy-section .icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
.last-updated {
            display: inline-block;
            background: rgba(180, 83, 9, 0.08);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 30px;
        }
.contact-highlight {
            background: linear-gradient(135deg, rgba(180, 83, 9, 0.06), rgba(202, 138, 4, 0.04));
            border: 1px solid rgba(180, 83, 9, 0.15);
            border-radius: var(--radius-sm);
            padding: 20px 25px;
            margin-top: 20px;
        }
.contact-highlight a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
.privacy-hero h1 {
                font-size: 1.8rem;
            }
.privacy-section {
                padding: 25px 20px;
            }
.privacy-section h2 {
                font-size: 1.25rem;
            }

/* --- 子页面追加 --- */
/* 保证卡片、表单等组件贴合深色暖棕色调 */
        .contact-card, .contact-card .card-body {
            background: var(--card-bg, #fff7e6);
            color: var(--text, #451a03);
            border: 1px solid var(--border-color, #e7d5b0);
            border-radius: var(--radius-md, 16px);
            transition: box-shadow .2s ease;
        }
.contact-card:hover {
            box-shadow: var(--shadow-hover, 0 18px 40px rgba(180, 83, 9, 0.18));
        }
.form-control, .form-select {
            background: rgba(255,255,255,0.6);
            border: 1px solid #d9b98c;
            color: var(--text, #451a03);
        }
.form-control:focus {
            background: rgba(255,255,255,0.85);
            border-color: var(--primary, #b45309);
            box-shadow: 0 0 0 0.2rem rgba(180, 83, 9, 0.15);
        }
.form-label {
            color: var(--text, #451a03);
            font-weight: 600;
        }
.list-group-item {
            background: transparent;
            color: var(--text, #451a03);
            border-color: #e7d5b0;
        }
.accordion-item {
            background: #fffaf0;
            color: var(--text, #451a03);
            border: 1px solid #e7d5b0;
        }
.accordion-button:not(.collapsed) {
            background: #f5e2c1;
            color: var(--text, #451a03);
        }
.accordion-button {
            background: #fff7e6;
            color: var(--text, #451a03);
        }
/* 确保按钮配色与站点一致 */
        .btn-custom-primary {
            background: var(--primary, #b45309);
            border-color: var(--primary, #b45309);
            color: #fff;
        }
/* 页脚社交小图标 */
        .social-icon {
            color: var(--text, #451a03);
            font-size: 1.4rem;
            margin-right: 15px;
            transition: color .2s;
        }
.social-icon:hover {
            color: var(--primary, #b45309);
        }
/* 分隔装饰 */
        .section-divider {
            border-top: 2px dashed #d9b98c;
            opacity: 0.4;
            margin: 2rem 0;
        }

/* --- 子页面追加 --- */
/* 与首页一致的变量，避免依赖全局样式未覆盖的情况 */
        :root {
            --primary: #b45309;
            --accent: #ca8a04;
            --bg: #fefce8;
            --text: #451a03;
            --white: #ffffff;
            --shadow-soft: 0 12px 30px rgba(180, 83, 9, 0.12);
            --shadow-hover: 0 18px 40px rgba(180, 83, 9, 0.18);
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 10px;
        }
/* 覆盖 Bootstrap 可能出现的白底黑字问题 */
        .card, .card-body, .card-header, .card-footer,
        .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .form-control, .form-select, .modal-content, .modal-header, .modal-body,
        .dropdown-menu, .dropdown-item, .nav-link, .navbar, .navbar-brand {
            background-color: transparent !important;
            color: var(--text) !important;
            border-color: rgba(180, 83, 9, 0.2) !important;
        }
/* 地图卡片定制 (不使用 .card 避免麻烦，自己写类) */
        .map-section {
            padding: 4rem 0;
        }
.map-wrapper {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 2.5rem;
            transition: box-shadow 0.3s ease;
            border: 1px solid rgba(180, 83, 9, 0.1);
        }
.map-wrapper:hover {
            box-shadow: var(--shadow-hover);
        }
.map-group {
            margin-bottom: 2.2rem;
        }
.map-group-title {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
.map-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem 1.5rem;
        }
.map-list li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.4rem 0.8rem;
            border-radius: var(--radius-sm);
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }
.map-list li a i {
            color: var(--accent);
            width: 1.2rem;
            font-size: 1rem;
        }
.map-list li a:hover {
            background: rgba(180, 83, 9, 0.08);
            color: var(--primary);
            transform: translateX(4px);
        }
.map-list li a .badge-map {
            background: rgba(202, 138, 4, 0.15);
            color: var(--primary);
            font-size: 0.7rem;
            padding: 0.15rem 0.5rem;
            border-radius: 30px;
            margin-left: 0.3rem;
            font-weight: 600;
        }
.sitemap-intro {
            font-size: 1.1rem;
            color: var(--text);
            background: rgba(180, 83, 9, 0.04);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            border-left: 6px solid var(--accent);
            margin-bottom: 2rem;
        }
.back-home-link {
            display: inline-block;
            margin-top: 1rem;
            font-weight: 600;
        }
/* 高亮当前页 */
        .nav-link-custom.active {
            font-weight: 700;
            color: var(--primary) !important;
            border-bottom: 3px solid var(--accent);
        }
.map-wrapper {
                padding: 1.5rem;
            }
.map-list {
                grid-template-columns: 1fr;
            }

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