:root {
  --primary: #2563eb;
  --accent: #06b6d4;
  --bg: #f4f8ff;
  --text: #0f1e3d;
  --border: #e2eaf8;
  --shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  --radius: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== 顶部导航 ===== */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.5rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}
.brand-logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-logo i { font-size: 1.5rem; color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.75;
  transition: all 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--primary); }
.nav-links a.active { color: var(--primary); opacity: 1; }
.menu-toggle { display: none; font-size: 1.4rem; cursor: pointer; background: none; border: none; color: var(--text); }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    gap: 0.8rem;
  }
  .nav-links.open { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 480px;
  background: linear-gradient(rgba(15, 30, 61, 0.7), rgba(15, 30, 61, 0.8)), url('{随机图片}') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.hero-btn:hover { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== 版块通用 ===== */
.section { padding: 3rem 0; }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
}
.section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-header h2 i { color: var(--primary); }
.section-header .more-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.7;
  transition: 0.2s;
}
.section-header .more-link:hover { opacity: 1; }

/* ===== 影片卡片 ===== */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
.movie-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 30, 61, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
}
.movie-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
}
.movie-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f4ff, #e8eef8);
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0;
}
.movie-poster img.lazy-loaded { opacity: 1; animation: fadeIn 0.5s ease; }
.movie-card:hover .movie-poster img { transform: scale(1.08); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.quality-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 30, 61, 0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 30, 61, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.movie-card:hover .play-overlay { opacity: 1; }
.play-btn {
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: transform 0.3s;
}
.movie-card:hover .play-btn { transform: scale(1); }
.movie-info { padding: 0.9rem 1rem; }
.movie-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #6b7a99;
}
.rating {
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== 左侧筛选栏 + 右侧内容布局 ===== */
.category-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 992px) {
  .category-layout { grid-template-columns: 1fr; }
}
.sidebar-filter {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.sidebar-filter h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #5a6b8c;
}
.filter-group select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-group select:focus { outline: none; border-color: var(--primary); }
.filter-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.filter-btn:hover { background: var(--accent); }

/* ===== 榜单 ===== */
.rank-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.rank-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}
.rank-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.rank-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  width: 50px;
  text-align: center;
  opacity: 0.3;
}
.rank-number.hot { color: #f59e0b; opacity: 1; }
.rank-info { flex: 1; }
.rank-info .rank-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.rank-info .rank-sub { font-size: 0.8rem; color: #6b7a99; }
.rank-score { font-weight: 800; color: #f59e0b; }

/* ===== 手风琴 ===== */
.accordion-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  background: #fafcff;
}
.accordion-header:hover { background: #f0f6ff; }
.accordion-header i { color: var(--primary); transition: transform 0.3s; }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  color: #4a5a7a;
  font-size: 0.9rem;
  line-height: 1.7;
}
.accordion-content.open { max-height: 500px; padding: 1rem 1.5rem 1.5rem; }

/* ===== 图片懒加载占位 ===== */
.poster-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa8c4;
  font-size: 0.85rem;
  height: 100%;
}

/* ===== 今日推荐 ===== */
.recommend-box {
  background: linear-gradient(135deg, #e8f0fe, #f0f8ff);
  border: 1px solid #c8dbf8;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.recommend-box h3 { font-weight: 800; font-size: 1.5rem; margin-bottom: 0.5rem; }
.recommend-box p { color: #5a6b8c; margin-bottom: 1.5rem; }
.recommend-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.recommend-btn:hover { background: var(--accent); transform: scale(1.05); }
.recommend-result {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  display: none;
  box-shadow: var(--shadow);
  font-size: 1rem;
  border-left: 4px solid var(--accent);
  text-align: left;
}

/* ===== 观影贴士 ===== */
.tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
.tips-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: 0.2s;
}
.tips-list li:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.tips-list i { color: var(--primary); font-size: 1.2rem; margin-top: 0.2rem; }
.tips-list span { font-weight: 600; display: block; margin-bottom: 0.2rem; }
.tips-list small { color: #6b7a99; font-size: 0.85rem; line-height: 1.5; }

/* ===== 友情链接 ===== */
.friend-links {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 3rem;
}
.friend-links h4 { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; color: var(--text); }
.friend-links .links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--primary);
  opacity: 0.8;
}
.friend-links .links-row a:hover { opacity: 1; text-decoration: underline; }

/* ===== 页脚 ===== */
.footer {
  background: #0f1e3d;
  color: #9aa8c4;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h5 { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.footer a { display: block; color: #9aa8c4; font-size: 0.9rem; margin-bottom: 0.5rem; transition: 0.2s; }
.footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }

/* ===== 弹窗 ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  animation: modalIn 0.3s ease;
}
.modal-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(20px);
  z-index: 0;
}
.modal-inner { position: relative; z-index: 1; }
.modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.modal-close:hover { color: #333; }
.modal-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 1rem; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; color: #5a6b8c; }
.modal-meta .badge {
  background: var(--bg);
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-weight: 600;
}
.modal-rating {
  font-size: 1.5rem;
  font-weight: 900;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}
.modal-plot { color: #4a5a7a; line-height: 1.8; margin-bottom: 1rem; }
.modal-cast { font-size: 0.9rem; color: #6b7a99; }
.modal-cast strong { color: var(--text); }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ===== 即将上线 ===== */
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.upcoming-card {
  background: #fff;
  border: 1px dashed var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: 0.3s;
}
.upcoming-card:hover { border-style: solid; box-shadow: var(--shadow); }
.upcoming-card .upcoming-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 0.8rem; }
.upcoming-card h4 { font-weight: 700; margin-bottom: 0.3rem; }
.upcoming-card .date { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.upcoming-card p { font-size: 0.8rem; color: #6b7a99; margin-top: 0.5rem; }

/* 统计数字动画 */
.stat-number { font-weight: 900; color: var(--primary); }

/* 响应式 */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 1.4rem; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
  .rank-list { grid-template-columns: 1fr; }
}

/* --- 子页面追加 --- */
/* 本页专属补充样式——仅用于「关于我们」页面的排版细节 */
        .about-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(6, 182, 212, 0.06) 100%);
            border-bottom: 1px solid var(--border);
            padding: 80px 0 60px;
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
        }
.about-hero h1 span {
            color: var(--primary);
        }
.about-hero .lead {
            color: #4a5b82;
            font-size: 1.1rem;
            max-width: 720px;
            margin: 18px auto 0;
            line-height: 1.8;
        }
.about-section {
            padding: 64px 0;
            border-bottom: 1px solid var(--border);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 28px;
            letter-spacing: -0.01em;
        }
.about-section h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.about-section p {
            color: #3d4c6b;
            line-height: 1.9;
            font-size: 1rem;
            margin-bottom: 16px;
        }
.feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.feature-item {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 22px;
            box-shadow: var(--shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(37, 99, 235, 0.12);
        }
.feature-item .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
.feature-item .icon-circle i {
            font-size: 1.3rem;
            color: var(--primary);
        }
.feature-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }
.feature-item p {
            font-size: 0.92rem;
            color: #5a6b8c;
            line-height: 1.7;
            margin-bottom: 0;
        }
.timeline {
            margin-top: 20px;
            padding-left: 24px;
            border-left: 3px solid var(--primary);
        }
.timeline-item {
            margin-bottom: 28px;
            position: relative;
            padding-left: 20px;
        }
.timeline-item::before {
            content: "";
            position: absolute;
            left: -31px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px var(--primary);
        }
.timeline-item .year {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.05rem;
        }
.timeline-item p {
            margin-bottom: 0;
            margin-top: 4px;
        }
.quote-block {
            background: rgba(37, 99, 235, 0.04);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 28px 0;
        }
.quote-block p {
            font-style: italic;
            font-size: 1.05rem;
            color: var(--text);
            margin-bottom: 0;
        }
.stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
            text-align: center;
        }
.stat-item {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 16px;
            box-shadow: var(--shadow);
        }
.stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
        }
.stat-item .label {
            font-size: 0.9rem;
            color: #5a6b8c;
            margin-top: 6px;
        }
.about-hero { padding: 50px 0 40px; }
.about-hero h1 { font-size: 2rem; }
.about-section { padding: 44px 0; }
.stat-grid { grid-template-columns: repeat(2, 1fr); }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
    .disclaimer-hero {
      padding: 60px 0 30px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
      border-bottom: 1px solid var(--border);
    }
.disclaimer-hero h1 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 12px;
    }
.disclaimer-hero .subtitle {
      font-size: 1.05rem;
      color: #5a6a8a;
      max-width: 700px;
    }
.disclaimer-content {
      padding: 50px 0 70px;
    }
.disclaimer-section {
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px 32px;
      margin-bottom: 24px;
      box-shadow: var(--shadow);
      transition: transform 0.2s ease;
    }
.disclaimer-section:hover {
      transform: translateY(-2px);
    }
.disclaimer-section h2 {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.disclaimer-section h2 i {
      font-size: 1.2rem;
      color: var(--accent);
    }
.disclaimer-section h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
      margin: 18px 0 10px;
    }
.disclaimer-section p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #3a4a6a;
      margin-bottom: 14px;
    }
.disclaimer-section ul {
      margin: 12px 0 16px;
      padding-left: 20px;
    }
.disclaimer-section ul li {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #3a4a6a;
      margin-bottom: 8px;
      position: relative;
      padding-left: 8px;
    }
.disclaimer-section ul li::before {
      content: "•";
      color: var(--accent);
      font-weight: bold;
      position: absolute;
      left: -12px;
    }
.highlight-box {
      background: rgba(37, 99, 235, 0.06);
      border-left: 4px solid var(--primary);
      padding: 16px 20px;
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 20px 0;
    }
.highlight-box p {
      margin-bottom: 0;
      font-weight: 500;
    }
.last-updated {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 500;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
.disclaimer-hero h1 {
        font-size: 1.8rem;
      }
.disclaimer-section {
        padding: 22px 20px;
      }

/* --- 子页面追加 --- */
.privacy-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }
.privacy-content h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin: 40px 0 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }
.privacy-content h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.privacy-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin: 24px 0 12px;
        }
.privacy-content p {
            color: #4a5a7a;
            line-height: 1.8;
            margin-bottom: 16px;
        }
.privacy-content ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }
.privacy-content li {
            color: #4a5a7a;
            line-height: 1.8;
            margin-bottom: 8px;
        }
.privacy-box {
            background: #f0f6ff;
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
.privacy-box p {
            margin-bottom: 8px;
        }
.privacy-box p:last-child {
            margin-bottom: 0;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 联系页面 */
        .contact-hero { padding: 80px 0 40px; text-align: center; }
.contact-hero h1 { font-size: 2.4rem; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.contact-hero h1 span { color: var(--primary); }
.contact-hero p { font-size: 1.05rem; color: #5a6a8a; max-width: 680px; margin: 0 auto; line-height: 1.8; }
.contact-section { padding: 40px 0 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.contact-grid { grid-template-columns: 1fr; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; transition: transform .2s; }
.contact-card:hover { transform: translateY(-3px); }
.contact-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.contact-card h2 i { color: var(--primary); font-size: 1.15rem; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid #eef3fb; }
.contact-item:last-child { border-bottom: none; }
.contact-item .icon-box { width: 38px; height: 38px; border-radius: 8px; background: #e8f1ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .icon-box i { color: var(--primary); font-size: .9rem; }
.contact-item .info { flex: 1; }
.contact-item .label { font-size: .78rem; color: #7a8aa8; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px; }
.contact-item .value { font-size: .95rem; color: var(--text); font-weight: 500; word-break: break-all; }
.contact-item .value a { color: var(--primary); text-decoration: none; }
.contact-item .value a:hover { text-decoration: underline; }
.contact-note { margin-top: 25px; padding: 18px 22px; background: #eef6ff; border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0; font-size: .9rem; color: #3a5a8a; line-height: 1.7; }
.contact-note i { color: var(--primary); margin-right: 6px; }
.response-timeline { margin-top: 30px; padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.response-timeline h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.timeline-steps { display: flex; gap: 20px; flex-wrap: wrap; }
.timeline-step { flex: 1; min-width: 160px; text-align: center; padding: 16px 10px; background: #f8fbff; border-radius: 8px; }
.timeline-step .step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: #fff; font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.timeline-step .step-text { font-size: .85rem; color: var(--text); font-weight: 500; }
.timeline-step .step-desc { font-size: .75rem; color: #7a8aa8; margin-top: 4px; line-height: 1.5; }
.faq-wrap { margin-top: 40px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(37,99,235,.04); }
.faq-item h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.faq-item h4 i { color: var(--primary); font-size: .85rem; }
.faq-item p { font-size: .88rem; color: #5a6a8a; line-height: 1.7; margin: 0; }
.map-placeholder { margin-top: 40px; padding: 40px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.map-placeholder i { font-size: 2.5rem; color: #c5d5f0; display: block; margin-bottom: 12px; }
.map-placeholder p { font-size: .9rem; color: #7a8aa8; }