:root {
  --primary: #b45309;
  --accent: #ca8a04;
  --bg: #fefce8;
  --text: #451a03;
  --white: #ffffff;
  --light: #fff7e6;
  --shadow-sm: 0 4px 12px rgba(180, 83, 9, 0.08);
  --shadow-md: 0 8px 30px rgba(180, 83, 9, 0.12);
  --shadow-lg: 0 16px 48px rgba(180, 83, 9, 0.16);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}
/* 滚动进度条 */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s ease-out;
}
/* 导航 */
.navbar {
  background: rgba(254, 252, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180, 83, 9, 0.1);
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(180,83,9,0.05);
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text) !important;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i {
  color: var(--primary);
  font-size: 1.3rem;
}
.nav-link {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--primary) !important; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 70%; }
.navbar-toggler { border: none; color: var(--primary); font-size: 1.5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* Hero 视差 */
.hero {
  position: relative;
  background-image: url('{随机图片}');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 140px 0 120px;
  text-align: center;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,252,232,0.92) 0%, rgba(254,252,232,0.75) 50%, rgba(255,247,230,0.9) 100%);
  z-index: -1;
}
.hero .container { position: relative; z-index: 1; }
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
  text-shadow: 0 2px 20px rgba(254,252,232,0.5);
}
.hero-title span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(69, 26, 3, 0.75);
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
}
.btn-primary-hero {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(180, 83, 9, 0.35);
}
.btn-primary-hero:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(202, 138, 4, 0.4);
  color:#fff;
}
.btn-outline-hero {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(69, 26, 3, 0.2);
  backdrop-filter: blur(5px);
}
.btn-outline-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  background: rgba(180,83,9,0.05);
}

/* 通用区块 */
.section {
  padding: 90px 0;
}
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(180, 83, 9, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.section-desc {
  font-size: 1.05rem;
  color: rgba(69, 26, 3, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* 对比表格 */
.compare-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px 36px;
  margin-top: 20px;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  min-width: 720px;
}
.compare-table th {
  background: var(--bg);
  color: var(--text);
  font-weight: 800;
  padding: 18px 24px;
  font-size: 1rem;
  text-align: center;
  border-bottom: 2px solid rgba(180,83,9,0.15);
}
.compare-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(180,83,9,0.06);
  font-size: 0.95rem;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .feature-name {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}
.compare-table .highlight-col {
  background: rgba(180, 83, 9, 0.05);
  position: relative;
}
.compare-table .check-icon { color: var(--primary); font-weight: 700; }
.compare-table .times-icon { color: rgba(69,26,3,0.3); }
.compare-table .plan-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
  letter-spacing: 0.03em;
}

/* 特色卡片 */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(180, 83, 9, 0.06);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 83, 9, 0.2);
}
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 24px rgba(180,83,9,0.3);
}
.feature-card h5 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.9rem;
  color: rgba(69, 26, 3, 0.7);
  line-height: 1.7;
}

/* 介绍区 */
.about-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-text {
  font-size: 1.02rem;
  color: rgba(69, 26, 3, 0.8);
  line-height: 1.9;
}
.about-text strong {
  color: var(--primary);
  font-weight: 700;
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 32px;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  background: var(--bg);
  padding: 20px 16px;
  border-radius: var(--radius);
}
.stat-number {
  font-family: 'Courier New', monospace;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(69, 26, 3, 0.6);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* FAQ 手风琴 */
.accordion-item {
  background: var(--white);
  border: 1px solid rgba(180, 83, 9, 0.1) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-button {
  font-weight: 700;
  color: var(--text);
  padding: 22px 28px;
  font-size: 1rem;
  background: var(--white);
  border: none;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--bg);
  color: var(--primary);
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b45309' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: transform 0.3s;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b45309' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}
.accordion-body {
  padding: 0 28px 24px;
  color: rgba(69, 26, 3, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* CTA 区 */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  background: #fff;
  color: var(--primary);
  padding: 16px 44px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  color: var(--primary);
}

/* 页脚 */
.footer {
  background: #2d1a02;
  color: rgba(254, 252, 232, 0.8);
  padding: 50px 0 30px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 40px;
}
.footer .footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer a {
  color: rgba(254, 252, 232, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover { color: #fff; }
.footer-links li { margin-bottom: 8px; }
.footer-links i { margin-right: 8px; font-size: 0.8rem; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(254,252,232,0.15);
  padding-top: 24px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* 友链区 */
.friend-links {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-top: 50px;
  border: 1px dashed rgba(180,83,9,0.2);
}
.friend-links h6 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}
.friend-links .links-row {
  font-size: 0.9rem;
  color: rgba(69,26,3,0.6);
  line-height: 2;
}

/* 响应式 */
@media (max-width: 768px) {
  .hero { padding: 100px 0 80px; }
  .hero-title { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .compare-table-wrap { padding: 30px 20px; }
  .about-section { padding: 36px 24px; }
  .cta-section { padding: 48px 24px; }
  .cta-title { font-size: 1.8rem; }
  .navbar-brand { font-size: 1.2rem; }
}

/* --- 子页面追加 --- */
/* 本页专属样式 —— 仅在需要时补充，尽量复用站点全局样式 */
    .about-page-hero {
      padding: 80px 0 40px;
      text-align: center;
    }
.about-page-hero .hero-title {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 16px;
    }
.about-page-hero .hero-subtitle {
      font-size: 1.15rem;
      color: rgba(69, 26, 3, 0.75);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.7;
    }
.about-content-section {
      padding: 40px 0 60px;
    }
.about-content-card {
      background: var(--light);
      border-radius: var(--radius);
      padding: 40px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-sm);
      border-left: 4px solid var(--primary);
    }
.about-content-card h2 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.about-content-card h2 i {
      font-size: 1.4rem;
      color: var(--accent);
    }
.about-content-card p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 1.02rem;
    }
.about-content-card ul {
      padding-left: 20px;
      margin-bottom: 16px;
    }
.about-content-card ul li {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 8px;
    }
.about-highlight-box {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      margin-top: 24px;
      border: 2px solid var(--accent);
    }
.about-highlight-box h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 12px;
    }
.about-highlight-box p {
      color: var(--text);
      line-height: 1.7;
    }
.about-stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }
.about-stat-box {
      background: var(--light);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
.about-stat-box:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
.about-stat-box .stat-number {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--primary);
      display: block;
      margin-bottom: 6px;
    }
.about-stat-box .stat-label {
      font-size: 0.95rem;
      color: rgba(69, 26, 3, 0.7);
      font-weight: 500;
    }
.about-quote {
      background: var(--primary);
      border-radius: var(--radius-lg);
      padding: 40px;
      margin: 40px 0;
      text-align: center;
    }
.about-quote p {
      color: var(--white);
      font-size: 1.3rem;
      font-style: italic;
      font-weight: 500;
      line-height: 1.7;
      margin: 0;
    }
.about-quote .quote-author {
      display: block;
      margin-top: 16px;
      font-size: 1rem;
      font-weight: 600;
      opacity: 0.9;
    }
.about-page-hero .hero-title {
        font-size: 2rem;
      }
.about-content-card {
        padding: 24px;
      }
.about-stats-row {
        grid-template-columns: repeat(2, 1fr);
      }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-hero {
            padding: 60px 0 30px;
            background: var(--light);
            border-radius: 0 0 var(--radius-xl) var(--radius-xl);
            margin-bottom: 20px;
        }
.disclaimer-hero .hero-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
        }
.disclaimer-section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(180, 83, 9, 0.08);
        }
.disclaimer-section h2 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-section h2 i {
            color: var(--accent);
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
        }
.disclaimer-section ul li {
            margin-bottom: 8px;
        }
.update-tag {
            background: var(--primary);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
.disclaimer-hero .hero-title {
                font-size: 1.6rem;
            }
.disclaimer-section {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 隐私政策专属样式 */
        .privacy-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, var(--light) 0%, var(--bg) 100%);
            text-align: center;
        }
.privacy-hero .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
        }
.privacy-hero .hero-subtitle {
            font-size: 1.1rem;
            color: var(--primary);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
        }
.privacy-section {
            padding: 40px 0;
        }
.privacy-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.privacy-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
.privacy-card h2 {
            color: var(--text);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.privacy-card h2 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
.privacy-card h3 {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px;
        }
.privacy-card p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 12px;
            opacity: 0.9;
        }
.privacy-card ul, .privacy-card ol {
            color: var(--text);
            line-height: 1.8;
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-card li {
            margin-bottom: 8px;
            opacity: 0.9;
        }
.privacy-card strong {
            color: var(--primary);
            font-weight: 600;
        }
.privacy-card .highlight {
            background: var(--light);
            padding: 15px 20px;
            border-radius: 12px;
            margin: 15px 0;
            border-left: 3px solid var(--accent);
        }
.privacy-card .highlight p {
            margin-bottom: 5px;
        }
.privacy-card .contact-info {
            background: var(--light);
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
        }
.privacy-card .contact-info p {
            margin-bottom: 5px;
        }
.privacy-card .contact-info i {
            color: var(--primary);
            margin-right: 8px;
        }
.privacy-date {
            text-align: center;
            color: var(--primary);
            opacity: 0.7;
            font-size: 0.9rem;
            margin-top: 30px;
        }
.privacy-toc {
            background: var(--light);
            border-radius: var(--radius);
            padding: 25px;
            margin-bottom: 30px;
        }
.privacy-toc h3 {
            color: var(--text);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
.privacy-toc ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.privacy-toc li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(180, 83, 9, 0.1);
        }
.privacy-toc li:last-child {
            border-bottom: none;
        }
.privacy-toc a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
.privacy-toc a:hover {
            color: var(--accent);
        }
.privacy-toc a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
    .guide-hero {
      background: linear-gradient(135deg, var(--light) 0%, var(--bg) 100%);
      border-bottom: 1px solid rgba(180, 83, 9, 0.1);
    }
.guide-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      padding: 2rem;
      height: 100%;
      transition: box-shadow 0.3s ease;
    }
.guide-card:hover {
      box-shadow: var(--shadow-md);
    }
.guide-card .icon-circle {
      width: 56px;
      height: 56px;
      background: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      color: var(--primary);
      font-size: 1.4rem;
    }
.guide-card h3 {
      color: var(--primary);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }
.guide-card p {
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.7;
      opacity: 0.9;
    }
.step-timeline {
      position: relative;
      padding-left: 2rem;
    }
.step-timeline::before {
      content: '';
      position: absolute;
      left: 0.5rem;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--primary);
      opacity: 0.2;
    }
.step-item {
      position: relative;
      margin-bottom: 2rem;
    }
.step-item::before {
      content: '';
      position: absolute;
      left: -1.7rem;
      top: 0.3rem;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary);
      opacity: 0.8;
    }
.step-item h4 {
      color: var(--primary);
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 0.5rem;
    }
.step-item p {
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.7;
      opacity: 0.85;
    }
.tip-box {
      background: var(--light);
      border-left: 4px solid var(--accent);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0;
    }
.tip-box p {
      margin-bottom: 0;
      font-size: 0.95rem;
      color: var(--text);
    }
.tip-box i {
      color: var(--primary);
      margin-right: 0.5rem;
    }
.equipment-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
.equipment-table thead th {
      background: var(--primary);
      color: var(--white);
      padding: 1rem 1.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      text-align: left;
    }
.equipment-table tbody td {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(180, 83, 9, 0.08);
      color: var(--text);
      font-size: 0.95rem;
    }
.equipment-table tbody tr:last-child td {
      border-bottom: none;
    }
.equipment-table tbody tr:hover {
      background: var(--light);
    }
.guide-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
      }
.equipment-table {
        font-size: 0.85rem;
      }
.equipment-table thead th,
      .equipment-table tbody td {
        padding: 0.8rem 1rem;
      }

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