:root {
  --primary: #ea580c;
  --accent: #d97706;
  --bg: #fffbf5;
  --text: #1c1917;
  --border: 2px solid var(--text);
  --shadow: 6px 6px 0px 0px var(--text);
  --radius: 0px;
}
* { border-radius: var(--radius) !important; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
/* 噪点纹理 */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  z-index: 9999;
  pointer-events: none;
}
h1, h2, h3, .display-font {
  font-family: 'Ma Shan Zheng', 'Inter', sans-serif;
  font-weight: 400;
}
.navbar {
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--text);
  padding: 0.8rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(255, 251, 245, 0.7);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.navbar-brand {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary) !important;
  margin-right: 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i {
  color: var(--accent);
  font-size: 1.6rem;
}
.nav-link {
  font-weight: 600;
  color: var(--text) !important;
  margin: 0 0.6rem;
  position: relative;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  transition: width 0.25s;
}
.nav-link:hover::after { width: 100%; }
.btn-outline-hard {
  border: 2px solid var(--text);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  transition: all 0.2s;
  box-shadow: 3px 3px 0px 0px var(--text);
}
.btn-outline-hard:hover {
  background: var(--text);
  color: var(--bg);
  box-shadow: 5px 5px 0px 0px var(--primary);
  transform: translate(-2px, -2px);
}
.btn-primary-hard {
  background: var(--primary);
  border: 2px solid var(--text);
  color: white;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  box-shadow: 4px 4px 0px 0px var(--text);
  transition: all 0.2s;
}
.btn-primary-hard:hover {
  background: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px var(--text);
  color: white;
}
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #fffbf5 0%, #fff3e6 100%);
  border-bottom: 3px solid var(--text);
  position: relative;
  overflow: hidden;
}
.hero-gradient-text {
  background: linear-gradient(120deg, var(--primary) 20%, var(--accent) 60%, var(--text) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .hero-gradient-text { font-size: 2.5rem; }
}
.hero-float {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}
.layout-sidebar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
@media (max-width: 992px) {
  .layout-sidebar { grid-template-columns: 1fr; }
}
.sidebar {
  border-right: 3px solid var(--text);
  padding: 2rem 1.5rem;
  position: sticky;
  top: 80px;
  height: fit-content;
  background: var(--bg);
  z-index: 10;
}
@media (max-width: 992px) {
  .sidebar {
    border-right: none;
    border-bottom: 3px solid var(--text);
    position: static;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.3rem;
  border: 2px solid transparent;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.sidebar-item:hover, .sidebar-item.active {
  border-color: var(--text);
  background: var(--bg);
  box-shadow: 3px 3px 0px 0px var(--text);
  color: var(--primary);
  text-decoration: none;
}
.sidebar-item i {
  width: 24px;
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.card-hard {
  background: white;
  border: 2px solid var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 2rem;
}
.card-hard:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0px 0px var(--text);
}
.card-body-hard { padding: 1.5rem; }
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #fef3e2, #ffedd5);
  border-bottom: 2px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.card-img-placeholder img.loaded { opacity: 1; }
.card-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--text);
}
.table-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.table-compare th, .table-compare td {
  border: 2px solid var(--text);
  padding: 12px 16px;
  text-align: center;
  background: white;
}
.table-compare th {
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.table-compare td.highlight {
  background: #fff3e6;
  font-weight: 700;
  color: var(--primary);
}
.numbered-list {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}
.numbered-list li {
  counter-increment: list-counter;
  position: relative;
  padding: 12px 0 12px 48px;
  border-bottom: 2px dashed #d6d3d1;
  font-size: 1.05rem;
}
.numbered-list li::before {
  content: counter(list-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid var(--text);
}
.section-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background: var(--primary);
}
.faq-item {
  border: 2px solid var(--text);
  margin-bottom: 1rem;
  background: white;
}
.faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  background: #fff7ed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-item summary:hover { background: #ffedd5; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.5rem; margin: 0; line-height: 1.8; }
.cta-section {
  background: var(--text);
  color: var(--bg);
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
}
.footer-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: all 0.2s;
  margin: 0 0.6rem;
}
.footer-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.lazy-placeholder {
  background: linear-gradient(110deg, #f5efe6 40%, #e8dfd2 50%, #f5efe6 60%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- 子页面追加 --- */
/* 本页专属样式 — 仅补充站点样式表未覆盖的组件 */
        .about-hero {
            background: var(--bg);
            border-bottom: var(--border);
            padding: 5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
.about-hero h1 .highlight {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
.about-hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(234, 88, 12, 0.15);
            z-index: -1;
        }
.about-hero .lead {
            font-size: 1.15rem;
            color: var(--text);
            opacity: 0.85;
            max-width: 680px;
            line-height: 1.8;
        }
.about-section {
            padding: 4rem 0;
        }
.about-section:nth-child(even) {
            background: rgba(234, 88, 12, 0.03);
        }
.about-section .section-title {
            margin-bottom: 2.5rem;
        }
.philosophy-card {
            background: var(--bg);
            border: var(--border);
            box-shadow: var(--shadow);
            padding: 2rem;
            height: 100%;
            transition: transform 0.2s ease;
        }
.philosophy-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 8px 8px 0px 0px var(--text);
        }
.philosophy-card .icon-wrap {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            border: 2px solid var(--text);
        }
.philosophy-card h3 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
        }
.philosophy-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0.85;
            margin-bottom: 0;
        }
.stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
            border: var(--border);
            background: var(--bg);
            padding: 2rem;
            box-shadow: var(--shadow);
        }
.stats-row .stat-item {
            flex: 1;
            min-width: 140px;
            text-align: center;
        }
.stats-row .stat-item .number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
            line-height: 1.2;
        }
.stats-row .stat-item .label {
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0.7;
            margin-top: 0.3rem;
        }
.timeline-wrap {
            position: relative;
            padding-left: 2.5rem;
        }
.timeline-wrap::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 4px;
            bottom: 4px;
            width: 2px;
            background: var(--text);
        }
.timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -2.1rem;
            top: 4px;
            width: 14px;
            height: 14px;
            background: var(--primary);
            border: 2px solid var(--text);
            border-radius: 50%;
        }
.timeline-item .year {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            margin-bottom: 0.4rem;
        }
.timeline-item h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
.timeline-item p {
            font-size: 0.9rem;
            line-height: 1.7;
            opacity: 0.85;
            margin-bottom: 0;
        }
.feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.feature-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed rgba(28, 25, 23, 0.2);
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }
.feature-list li:last-child {
            border-bottom: none;
        }
.feature-list li i {
            color: var(--primary);
            font-size: 1rem;
            margin-top: 0.2rem;
            min-width: 18px;
        }
.cta-box {
            background: var(--text);
            color: #fff;
            padding: 3rem 2rem;
            text-align: center;
            border: var(--border);
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }
.cta-box h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
.cta-box p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
.btn-on-dark {
            background: var(--primary);
            color: #fff;
            border: 2px solid #fff;
            padding: 0.7rem 2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-block;
        }
.btn-on-dark:hover {
            background: #fff;
            color: var(--text);
            border-color: #fff;
        }
.btn-outline-on-dark {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 0.7rem 2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-block;
            margin-left: 0.5rem;
        }
.btn-outline-on-dark:hover {
            background: #fff;
            color: var(--text);
        }
.about-hero h1 {
                font-size: 2rem;
            }
.stats-row {
                gap: 1rem;
                padding: 1.5rem;
            }
.stats-row .stat-item {
                min-width: 100px;
            }
.stats-row .stat-item .number {
                font-size: 1.6rem;
            }
.cta-box {
                padding: 2rem 1.5rem;
            }
.cta-box h2 {
                font-size: 1.4rem;
            }
.btn-outline-on-dark {
                margin-left: 0;
                margin-top: 0.8rem;
            }

/* --- 子页面追加 --- */
/* 本页专属小样式——只补本站CSS未覆盖的细节 */
    .register-hero { padding: 5rem 0 3rem; }
.register-form-wrap { border: var(--border); background: var(--bg); box-shadow: var(--shadow); padding: 2.5rem; }
.form-label-custom { font-weight: 700; font-size: .9rem; letter-spacing: .5px; text-transform: uppercase; color: var(--text); }
.form-control-custom {
      border: 2px solid var(--text); border-radius: 0; background: #fff; color: var(--text);
      padding: .7rem 1rem; font-size: 1rem; width: 100%; margin-bottom: 1.2rem;
    }
.form-control-custom:focus { outline: none; box-shadow: 4px 4px 0 var(--text); }
.form-check-custom { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-size: .9rem; }
.form-check-custom input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: var(--primary); }
.form-check-custom a { color: var(--primary); text-decoration: underline; }
.register-benefit { display: flex; gap: 1rem; padding: 1.2rem; border: 2px solid var(--text); margin-bottom: 1rem; background: #fff; transition: all .2s; }
.register-benefit:hover { transform: translate(-3px, -3px); box-shadow: 4px 4px 0 var(--text); }
.benefit-icon { font-size: 1.6rem; color: var(--primary); flex-shrink: 0; }
.benefit-text h4 { font-weight: 800; font-size: 1.05rem; margin-bottom: .3rem; }
.benefit-text p { font-size: .9rem; opacity: .8; margin: 0; }
.steps-reg { list-style: none; padding: 0; counter-reset: step-counter; }
.steps-reg li { counter-increment: step-counter; position: relative; padding-left: 3.5rem; margin-bottom: 1.5rem; }
.steps-reg li::before {
      content: counter(step-counter); position: absolute; left: 0; top: 0; width: 2.4rem; height: 2.4rem;
      background: var(--primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--text); box-shadow: 3px 3px 0 var(--text);
    }
.steps-reg h4 { font-weight: 700; font-size: 1.1rem; margin-bottom: .3rem; }
.steps-reg p { font-size: .9rem; opacity: .8; }

/* --- 子页面追加 --- */
覆盖全局） -->
  <link rel="stylesheet" href="css/style.css">
  <!-- 本页专属微调（不破坏全局） -->
  <style>
    /* 确保 bootstrap 组件色系与本站一致（若有需要覆盖） */
    .card, .card-body, .list-group-item, .accordion-item {
      background: var(--card-bg, var(--bg));
      color: var(--text);
      border-color: var(--text);
    }
.team-member-card {
      background: var(--bg);
      border: var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: transform .2s ease;
    }
.team-member-card:hover {
      transform: translate(-2px, -2px);
    }
.team-photo {
      background: #e7d8c6;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 2px solid var(--text);
      font-size: 3rem;
      color: var(--text);
    }
.section-title-hard {
      font-weight: 800;
      border-left: 6px solid var(--primary);
      padding-left: 1rem;
      margin-bottom: 2rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
.bg-soft-hard {
      background: #f7efe3;
    }
.hard-list {
      list-style: none;
      padding-left: 0;
    }
.hard-list li {
      padding: .5rem 0;
      border-bottom: 1px dashed var(--text);
      display: flex;
      align-items: baseline;
      gap: .75rem;
    }
.hard-list li i {
      color: var(--primary);
      width: 1.2rem;
    }
.badge-hard {
      background: var(--text);
      color: var(--bg);
      padding: .25rem .8rem;
      font-weight: 600;
      border: 1px solid var(--text);
      border-radius: 0;
    }
.quote-block {
      border: var(--border);
      box-shadow: var(--shadow);
      padding: 2rem;
      background: var(--bg);
    }
/* 导航高亮当前页 */
    .nav-link.active-page {
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 6px;
      text-decoration-thickness: 2px;
    }

/* --- 子页面追加 --- */
/* 确保 Bootstrap 组件不破坏深色/硬边风格 —— 仅用栅格，组件自写，故覆盖极少 */
        .navbar, .navbar-brand, .nav-link {
            background: transparent !important;
            color: var(--text) !important;
        }
.btn-outline-hard, .btn-primary-hard {
            background: transparent;
        }
/* 硬边卡片自定义 */
        .job-card {
            background: var(--bg);
            border: var(--border);
            box-shadow: var(--shadow);
            padding: 1.8rem 1.5rem;
            height: 100%;
            transition: transform .15s ease, box-shadow .15s ease;
            border-radius: var(--radius);
        }
.job-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 10px 10px 0px 0px var(--text);
        }
.job-card h3 {
            font-weight: 800;
            font-size: 1.45rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: .5rem;
        }
.job-card h3 i {
            color: var(--primary);
            font-size: 1.8rem;
        }
.job-tag {
            display: inline-block;
            background: var(--text);
            color: var(--bg);
            padding: .2rem 1rem;
            font-size: .75rem;
            font-weight: 600;
            letter-spacing: .03em;
            text-transform: uppercase;
            border: 2px solid var(--text);
            box-shadow: 3px 3px 0 0 var(--primary);
            margin-bottom: 1.2rem;
        }
.job-desc {
            color: var(--text);
            opacity: .85;
            font-size: .95rem;
            line-height: 1.7;
        }
.job-list {
            list-style: none;
            padding: 0;
            margin: 1.2rem 0 1.8rem;
        }
.job-list li {
            padding: .35rem 0;
            display: flex;
            align-items: flex-start;
            gap: .6rem;
            font-size: .9rem;
            border-bottom: 1px dashed rgba(28,25,23,.2);
        }
.job-list li i {
            color: var(--primary);
            margin-top: .2rem;
            min-width: 16px;
        }
.job-cta {
            display: inline-block;
            background: var(--text);
            color: var(--bg);
            padding: .6rem 1.8rem;
            font-weight: 700;
            text-decoration: none;
            border: 2px solid var(--text);
            box-shadow: 4px 4px 0 var(--primary);
            transition: all .12s ease;
            font-size: .9rem;
        }
.job-cta:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--bg);
            box-shadow: 2px 2px 0 var(--text);
        }
.section-title h2 {
            font-weight: 900;
            font-size: 2.2rem;
            text-transform: uppercase;
            letter-spacing: -.01em;
        }
.section-title p {
            max-width: 700px;
            font-size: 1rem;
            opacity: .8;
        }
.perk-item {
            background: var(--bg);
            border: 2px solid var(--text);
            padding: 1.2rem 1.2rem;
            box-shadow: 5px 5px 0 var(--text);
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-bottom: 1rem;
        }
.perk-item i {
            font-size: 2rem;
            color: var(--primary);
            min-width: 2.5rem;
        }
.perk-item span {
            font-weight: 600;
            font-size: .95rem;
        }
.process-step {
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
.process-step h4 {
            font-weight: 800;
            font-size: 1.3rem;
        }
.process-step p {
            opacity: .8;
            max-width: 550px;
        }
.footer-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 2px solid transparent;
        }
.footer-links a:hover {
            border-color: var(--primary);
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .contact-hero {
            padding: 80px 0 40px;
        }
.contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
.contact-card {
            background: var(--bg);
            border: var(--border);
            box-shadow: var(--shadow);
            padding: 30px;
            transition: transform 0.2s;
        }
.contact-card:hover {
            transform: translate(-2px, -2px);
        }
.contact-card-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
.contact-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }
.contact-card p {
            color: var(--text);
            opacity: 0.85;
            margin-bottom: 10px;
        }
.contact-card a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            word-break: break-all;
        }
.contact-card a:hover {
            text-decoration: underline;
        }
.contact-form-section {
            padding: 60px 0;
            background: var(--bg);
        }
.contact-form-wrapper {
            max-width: 700px;
            margin: 0 auto;
            background: var(--bg);
            border: var(--border);
            box-shadow: var(--shadow);
            padding: 40px;
        }
.form-group {
            margin-bottom: 20px;
        }
.form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text);
        }
.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--text);
            border-radius: 0;
            background: var(--bg);
            color: var(--text);
            font-family: inherit;
            font-size: 1rem;
        }
.form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 4px 4px 0 0 var(--primary);
        }
.form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
.form-hint {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: 5px;
        }
.submit-btn {
            background: var(--primary);
            color: #fff;
            border: 2px solid var(--text);
            padding: 12px 35px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 4px 4px 0 0 var(--text);
        }
.submit-btn:hover {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 0 var(--text);
        }
.faq-mini {
            margin-top: 60px;
        }
.faq-mini .faq-item {
            margin-bottom: 15px;
        }
.response-time {
            background: var(--bg);
            border: var(--border);
            box-shadow: var(--shadow);
            padding: 25px;
            margin-top: 40px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
.response-time i {
            font-size: 2rem;
            color: var(--primary);
        }
.contact-hero {
                padding: 40px 0 20px;
            }
.contact-form-wrapper {
                padding: 25px;
            }
.response-time {
                flex-direction: column;
                text-align: center;
            }

/* --- 子页面追加 --- */
/* 保证后宫动漫h品牌名完整连续，任何地方不换行 */
    .brand-nowrap { white-space: nowrap; }
/* 覆盖 bootstrap 可能的默认卡片白底，统一用后宫动漫h粗粝风 */
    .card-hard, .card-body-hard { background: var(--bg); color: var(--text); border: var(--border); box-shadow: var(--shadow); }
.faq-item h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; }
.faq-item p:last-child { margin-bottom: 0; }
.list-unstyled-custom { list-style: none; padding-left: 0; }
.list-unstyled-custom li { padding-left: 1.6rem; position: relative; margin-bottom: 0.5rem; }
.list-unstyled-custom li::before { content: "\f1b0"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--primary); }
/* 轻微修正bootstrap nav-link 在深色背景下的显示 */
    .navbar-nav .nav-link { color: var(--text); }
.navbar-nav .nav-link:hover { color: var(--primary); }
/* 当前页高亮 */
    .nav-item .nav-link.active-page { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 3px; text-decoration-color: var(--primary); }

/* --- 子页面追加 --- */
.privacy-hero {
      background: var(--bg);
      padding: 4rem 0 2rem;
      border-bottom: var(--border);
    }
.privacy-hero h1 {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
.privacy-hero .hero-gradient-text {
      color: var(--primary);
    }
.privacy-hero .last-updated {
      display: inline-block;
      background: var(--text);
      color: var(--bg);
      padding: 0.4rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 600;
      border: var(--border);
      box-shadow: var(--shadow);
    }
.privacy-content {
      padding: 3rem 0 4rem;
    }
.privacy-section {
      margin-bottom: 3rem;
      padding: 2rem;
      background: var(--bg);
      border: var(--border);
      box-shadow: var(--shadow);
    }
.privacy-section h2 {
      font-size: 1.7rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
      color: var(--text);
      position: relative;
      padding-left: 1.2rem;
    }
.privacy-section h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.35rem;
      width: 0.5rem;
      height: 1.4rem;
      background: var(--primary);
    }
.privacy-section h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-top: 1.5rem;
      margin-bottom: 0.8rem;
    }
.privacy-section p {
      line-height: 1.8;
      margin-bottom: 1rem;
      color: var(--text);
    }
.privacy-section ul, .privacy-section ol {
      margin-bottom: 1rem;
      padding-left: 1.5rem;
    }
.privacy-section li {
      line-height: 1.8;
      margin-bottom: 0.4rem;
    }
.privacy-section .highlight-box {
      background: rgba(234, 88, 12, 0.08);
      border-left: 4px solid var(--primary);
      padding: 1rem 1.5rem;
      margin: 1.5rem 0;
    }
.privacy-section .highlight-box p {
      margin-bottom: 0;
    }
.contact-email {
      font-weight: 600;
      color: var(--primary);
      text-decoration: underline;
    }
.privacy-hero h1 {
        font-size: 2rem;
      }
.privacy-section {
        padding: 1.2rem;
      }

/* --- 子页面追加 --- */
.terms-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 60px 20px;
    }
.terms-hero {
      background: var(--bg);
      border: var(--border);
      box-shadow: var(--shadow);
      padding: 40px;
      margin-bottom: 40px;
    }
.terms-hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 15px;
    }
.terms-section {
      background: var(--bg);
      border: var(--border);
      padding: 35px;
      margin-bottom: 30px;
    }
.terms-section h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--text);
    }
.terms-section p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 15px;
    }
.terms-section ul {
      color: var(--text);
      padding-left: 20px;
      margin-bottom: 15px;
    }
.terms-section li {
      margin-bottom: 8px;
      line-height: 1.6;
    }
.terms-badge {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      padding: 2px 10px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-right: 8px;
      vertical-align: middle;
    }
.terms-updated {
      font-size: 0.9rem;
      color: var(--text);
      opacity: 0.7;
      margin-top: 10px;
    }
.terms-note {
      background: rgba(234, 88, 12, 0.1);
      border-left: 4px solid var(--primary);
      padding: 15px 20px;
      margin: 20px 0;
    }
.terms-note p {
      margin-bottom: 0;
    }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#1c1917 !important; border-color:rgba(0,0,0,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#1c1917 !important; }
