﻿/* ================================================================
   向导中心页面样式
   ================================================================ */

/* ------------------------------------------------------------
   01. CSS变量
   ------------------------------------------------------------ */
:root {
  --guide-primary: #2d5a27;
  --guide-primary-light: #4a8c42;
  --guide-accent: #f59e0b;
  --guide-accent-dark: #d97706;
  --guide-bg-light: #f0fdf4;
  --guide-text: #1a1a1a;
  --guide-text-muted: #6b7280;
  --guide-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --guide-card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===== 页面头部 - 简化 ===== */
.guides-header {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--guide-primary) 0%, var(--guide-primary-light) 100%);
  padding-top: 80px;
  z-index: 1;
}

.guides-header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?w=1920&h=800&fit=crop') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.guides-header .header-content {
  position: relative;
  z-index: 10;
  padding: var(--spacing-2xl) var(--spacing-lg);
  max-width: 700px;
}

.guides-header .header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--spacing-md);
}

.guides-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--spacing-sm);
}

.guides-header .header-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #fff;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.guides-header .header-subtitle .highlight {
  color: var(--guide-accent);
  font-weight: 700;
}

.guides-header .header-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== 向导介绍区 - 紧凑布局 ===== */
.guides-intro {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, var(--guide-bg-light) 0%, #fff 100%);
  position: relative;
  z-index: 1;
}

.guides-intro .intro-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.guides-intro .intro-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.guides-intro .intro-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.guides-intro .intro-text h2 {
  font-size: 1.5rem;
  color: var(--guide-text);
  margin-bottom: var(--spacing-xs);
}

.guides-intro .intro-text h2 strong {
  color: var(--guide-primary);
}

.guides-intro .intro-text p {
  color: var(--guide-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.guides-intro .intro-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.guides-intro .intro-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: #fff;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 90, 39, 0.1);
  font-weight: 500;
  color: var(--guide-text);
  transition: all 0.3s ease;
}

.guides-intro .intro-feature:hover {
  border-color: var(--guide-primary);
  box-shadow: 0 4px 12px rgba(45, 90, 39, 0.1);
  transform: translateY(-2px);
}

.guides-intro .feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.guides-intro .feature-text {
  font-size: 0.9rem;
  line-height: 1.3;
}

/* ===== 向导列表区 ===== */
.guides-section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  z-index: 1;
}

.guides-section .section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.guides-section .section-header h2 {
  font-size: 2rem;
  color: var(--guide-text);
  margin-bottom: var(--spacing-sm);
}

.guides-section .section-header p {
  color: var(--guide-text-muted);
}

/* 向导网格 - 4列布局，美观大方 */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

/* 向导卡片 - 精美设计 */
.guide-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  will-change: transform;
  contain: layout style paint;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 90, 39, 0.15);
}

.guide-card.featured {
  background: linear-gradient(180deg, #fffbf0 0%, #fff 30%);
  border: none;
}

.guide-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--guide-accent) 0%, #fbbf24 100%);
  z-index: 1;
}

/* 向导照片 - 精美展示 */
.guide-card .guide-photo {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f5e9 0%, #f5f5f5 100%);
}

.guide-card .guide-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.02));
  pointer-events: none;
}

.guide-card .guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.guide-card:hover .guide-photo img {
  transform: scale(1.05);
}

/* 编号 - 精致徽章 */
.guide-card .guide-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--guide-primary) 0%, var(--guide-primary-light) 100%);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
}

/* 特殊徽章 */
.guide-card .guide-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--guide-accent) 0%, #fbbf24 100%);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
  letter-spacing: 0.5px;
}

/* 向导信息 - 优雅排版 */
.guide-card .guide-info {
  padding: var(--spacing-md);
  background: #fff;
}

.guide-card .guide-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--guide-text);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.guide-card .guide-ethnic {
  color: var(--guide-primary);
  font-size: 0.8rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.guide-card .guide-ethnic::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--guide-primary);
  border-radius: 50%;
}

.guide-card .guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.guide-card .guide-tags .tag {
  background: linear-gradient(135deg, var(--guide-bg-light) 0%, #e8f5e9 100%);
  color: var(--guide-primary);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(45, 90, 39, 0.1);
}

.guide-card .guide-desc {
  font-size: 0.78rem;
  color: var(--guide-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== 如何选择向导 ===== */
.choose-guide {
  padding: var(--spacing-3xl) 0;
  background: var(--guide-bg-light);
}

.choose-guide .section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.choose-guide .section-header h2 {
  font-size: 2rem;
  color: var(--guide-text);
  margin-bottom: var(--spacing-sm);
}

.choose-guide .section-header p {
  color: var(--guide-text-muted);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.choose-card {
  background: #fff;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--guide-card-shadow);
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--guide-card-shadow-hover);
}

.choose-card .choose-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.choose-card h3 {
  font-size: 1.25rem;
  color: var(--guide-text);
  margin-bottom: var(--spacing-sm);
}

.choose-card p {
  color: var(--guide-text-muted);
  font-size: 0.95rem;
}

.choose-card p strong {
  color: var(--guide-primary);
}

.choose-card .choose-desc {
  font-size: 0.85rem;
  color: var(--guide-text-muted);
  margin-top: var(--spacing-xs);
}

/* ===== CTA区域 ===== */
.guides-cta {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, var(--guide-primary) 0%, var(--guide-primary-light) 100%);
  text-align: center;
}

.guides-cta .cta-content h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: var(--spacing-md);
}

.guides-cta .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
}

.guides-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.guides-cta .btn-primary {
  background: var(--guide-accent);
  border-color: var(--guide-accent);
}

.guides-cta .btn-primary:hover {
  background: var(--guide-accent-dark);
  border-color: var(--guide-accent-dark);
}

.guides-cta .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.guides-cta .btn-outline:hover {
  background: #fff;
  color: var(--guide-primary);
}

/* ===== 响应式设计 ===== */














/* ===== 视频播放按钮 ===== */
.guide-card.has-video {
  cursor: pointer;
}

.guide-card .video-play-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--guide-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 5;
}

.guide-card:hover .video-play-btn {
  opacity: 1;
  transform: scale(1);
}

.guide-card .video-play-btn svg {
  margin-left: 3px;
}

/* ===== 视频弹窗 ===== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: rotate(90deg);
}

.video-modal-header {
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, var(--guide-primary) 0%, var(--guide-primary-light) 100%);
}

.video-modal-header h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.video-modal-body {
  padding: 0;
}

.video-container {
  position: relative;
  width: 100%;
  background: #000;
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
}

/* 响应式 */


/* ===== 向导介绍弹窗 ===== */
.guide-intro-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.guide-intro-modal.active {
  opacity: 1;
  visibility: visible;
}

.intro-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.intro-modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.guide-intro-modal.active .intro-modal-content {
  transform: scale(1) translateY(0);
}

.intro-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.intro-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.intro-modal-header {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}

.intro-modal-photo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-modal-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--guide-text);
  margin-bottom: 4px;
}

.intro-modal-info p {
  color: var(--guide-primary);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.intro-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.intro-modal-tags .tag {
  background: linear-gradient(135deg, var(--guide-bg-light) 0%, #e8f5e9 100%);
  color: var(--guide-primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.intro-modal-body {
  padding: var(--spacing-lg);
  max-height: 50vh;
  overflow-y: auto;
}

.intro-section {
  margin-bottom: var(--spacing-lg);
}

.intro-section:last-child {
  margin-bottom: 0;
}

.intro-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--guide-text);
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-sm);
  border-left: 3px solid var(--guide-primary);
}

.intro-section p {
  color: var(--guide-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-promise {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-promise li {
  color: var(--guide-text-muted);
  font-size: 0.9rem;
  padding: var(--spacing-xs) 0;
  line-height: 1.6;
}

.intro-modal-footer {
  padding: var(--spacing-md) var(--spacing-lg);
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.intro-modal-footer .btn {
  min-width: 160px;
}

/* 视频介绍区域样式 */
.intro-video-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.intro-video-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.intro-video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 向导卡片可点击样式 */
.guide-card {
  cursor: pointer;
}

/* 响应式 */


/* ===== 向导页兼容性优化 ===== */
@media (min-width: 1600px) {
  .guides-container { max-width: 1400px; }
}
@media (hover: none) and (pointer: coarse) {
  .guide-card, .filter-btn, .intro-btn { min-height: 48px; }
}

@media print {
  .guides-hero, .guide-filters, .intro-modal { display: none !important; }
  .guide-card { break-inside: avoid; }
}
@media (prefers-reduced-motion: reduce) {
  .guide-card { animation: none !important; }
}

/* ================================================================
   H5移动端适配样式
   ================================================================ */
@media screen and (max-width: 1023px) {
  
  /* ===== 页面头部 - 移动端适配 ===== */
  .guides-header {
    min-height: 35vh !important;
    padding-top: 60px !important;
  }
  
  .guides-header .header-content {
    padding: 30px 16px !important;
  }
  
  .guides-header .header-badge {
    font-size: 11px !important;
    padding: 4px 12px !important;
    margin-bottom: 10px !important;
  }
  
  .guides-header h1 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }
  
  .guides-header .header-subtitle {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }
  
  .guides-header .header-desc {
    font-size: 12px !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }
  
  /* ===== 向导介绍区 - 移动端单列 ===== */
  .guides-intro {
    padding: 24px 0 !important;
  }
  
  .guides-intro .intro-content {
    padding: 0 16px !important;
  }
  
  .guides-intro .intro-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }
  
  .guides-intro .intro-icon {
    font-size: 2rem !important;
  }
  
  .guides-intro .intro-text h2 {
    font-size: 16px !important;
  }
  
  .guides-intro .intro-text p {
    font-size: 13px !important;
  }
  
  .guides-intro .intro-features {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }
  
  .guides-intro .intro-feature {
    padding: 12px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
  }
  
  .guides-intro .feature-icon {
    font-size: 1.3rem !important;
  }
  
  .guides-intro .feature-text {
    font-size: 11px !important;
  }
  
  /* ===== 向导列表区 ===== */
  .guides-section {
    padding: 24px 0 !important;
  }
  
  .guides-section .section-header {
    margin-bottom: 16px !important;
    padding: 0 16px !important;
  }
  
  .guides-section .section-header h2 {
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }
  
  .guides-section .section-header p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  
  /* ===== 向导网格 - 移动端2列布局 ===== */
  .guides-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px !important;
  }
  
  /* ===== 向导卡片 - 移动端优化 ===== */
  .guide-card {
    border-radius: 14px !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }
  
  .guide-card:hover {
    transform: none !important;
  }
  
  .guide-card .guide-photo {
    width: 100% !important;
    height: 140px !important;
  }
  
  .guide-card .guide-photo img {
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .guide-card .guide-number {
    top: 8px !important;
    left: 8px !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
    border-radius: 6px !important;
  }
  
  .guide-card .guide-badge {
    top: 8px !important;
    right: 8px !important;
    padding: 3px 8px !important;
    font-size: 9px !important;
  }
  
  .guide-card .guide-info {
    flex: 1 !important;
    padding: 10px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  
  .guide-card .guide-name {
    font-size: 14px !important;
    margin-bottom: 2px !important;
  }
  
  .guide-card .guide-ethnic {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }
  
  .guide-card .guide-tags {
    gap: 4px !important;
    margin-bottom: 6px !important;
  }
  
  .guide-card .guide-tags .tag {
    padding: 2px 8px !important;
    font-size: 10px !important;
  }
  
  .guide-card .guide-desc {
    font-size: 11px !important;
    -webkit-line-clamp: 2 !important;
    line-height: 1.4 !important;
  }
  
  /* 视频播放按钮 - 移动端显示 */
  .guide-card .video-play-btn {
    width: 32px !important;
    height: 32px !important;
    bottom: 8px !important;
    right: 8px !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  
  .guide-card .video-play-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  /* featured卡片 - 移动端适配 */
  .guide-card.featured .guide-photo {
    width: 110px !important;
  }
  
  .guide-card.featured .guide-info {
    background: linear-gradient(135deg, #fffbf0 0%, #fff 100%) !important;
  }
  
  /* ===== 选择向导区域 ===== */
  .choose-guide {
    padding: 24px 0 !important;
  }
  
  .choose-guide .section-header {
    margin-bottom: 16px !important;
    padding: 0 16px !important;
  }
  
  .choose-guide .section-header h2 {
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }
  
  .choose-guide .section-header p {
    font-size: 12px !important;
  }
  
  .choose-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }
  
  .choose-card {
    padding: 14px !important;
    border-radius: 12px !important;
  }
  
  .choose-card .choose-icon {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
  }
  
  .choose-card h3 {
    font-size: 13px !important;
    margin-bottom: 4px !important;
  }
  
  .choose-card p {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
  
  .choose-card .choose-desc {
    font-size: 10px !important;
    margin-top: 4px !important;
  }
  
  /* ===== CTA区域 ===== */
  .guides-cta {
    padding: 24px 16px !important;
  }
  
  .guides-cta .cta-content h2 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  
  .guides-cta .cta-content p {
    font-size: 12px !important;
    margin-bottom: 16px !important;
  }
  
  .guides-cta .cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .guides-cta .cta-buttons .btn {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  
  /* ===== 向导介绍弹窗 - 全屏适配 ===== */
  .guide-intro-modal {
    z-index: 9999 !important;
  }
  
  .guide-intro-modal.active .intro-modal-content {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .intro-modal-overlay {
    display: none !important;
  }
  
  .intro-modal-close {
    position: fixed !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 10 !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    font-size: 20px !important;
  }
  
  .intro-modal-header {
    flex-shrink: 0 !important;
    padding: 16px !important;
    padding-top: 56px !important;
    flex-direction: row !important;
    align-items: center !important;
  }
  
  .intro-modal-photo {
    width: 70px !important;
    height: 70px !important;
    border-radius: 12px !important;
  }
  
  .intro-modal-info {
    flex: 1 !important;
  }
  
  .intro-modal-info h3 {
    font-size: 18px !important;
  }
  
  .intro-modal-info p {
    font-size: 12px !important;
  }
  
  .intro-modal-tags {
    gap: 4px !important;
  }
  
  .intro-modal-tags .tag {
    padding: 3px 10px !important;
    font-size: 11px !important;
  }
  
  .intro-modal-body {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 16px !important;
    max-height: none !important;
  }
  
  .intro-section {
    margin-bottom: 16px !important;
  }
  
  .intro-section h4 {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  
  .intro-section p {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }
  
  .intro-modal-footer {
    flex-shrink: 0 !important;
    padding: 12px 16px !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 10px)) !important;
  }
  
  .intro-modal-footer .btn {
    width: 100% !important;
    padding: 14px !important;
  }
  
  /* 视频介绍区域 */
  .intro-video-section {
    padding: 12px !important;
    margin-bottom: 16px !important;
  }
  
  .intro-video-container video {
    border-radius: 8px !important;
  }
  
  /* ===== 客服悬浮按钮 - 移动端适配 ===== */
  .customer-service {
    bottom: calc(var(--h5-bottom-height) + 30px) !important;
    right: 12px !important;
  }
  
  .customer-service .cs-btn {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3) !important;
    padding: 0 !important;
    justify-content: center !important;
  }
  
  .customer-service .cs-icon {
    font-size: 22px !important;
  }
  
  .customer-service .cs-text {
    display: none !important;
  }
  
  /* ===== 底部导航适配 ===== */
  .h5-bottom-nav {
    padding-bottom: env(safe-area-inset-bottom, 0) !important;
  }
  
  /* ===== 返回顶部按钮 ===== */
  .back-to-top {
    bottom: calc(var(--h5-bottom-height) + 60px) !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
  }
  
  /* ===== 弹窗通用样式 ===== */
  .modal.active {
    padding: 0 !important;
  }
  
  .modal.active .modal-content {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }
  
  .qrcode-wrapper {
    padding: 20px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .qrcode-wrapper h3 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  
  .qrcode-tip {
    font-size: 12px !important;
    margin-bottom: 16px !important;
  }
  
  .qrcode-main {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .qrcode-image img {
    max-width: 200px !important;
    border-radius: 12px !important;
  }
  
  .contact-methods {
    padding-top: 16px !important;
  }
  
  .method-item {
    padding: 10px 0 !important;
    font-size: 13px !important;
  }
  
  .modal-close {
    position: fixed !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 10 !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    font-size: 24px !important;
    border-radius: 50% !important;
  }
  
  .modal-overlay {
    display: none !important;
  }
  
  /* ===== 小屏幕适配 (iPhone SE等) ===== */
  @media (max-width: 374px) {
    .guide-card {
      flex-direction: column !important;
    }
    
    .guide-card .guide-photo {
      width: 100% !important;
      height: 160px !important;
    }
    
    .guide-card .guide-info {
      padding: 12px !important;
    }
    
    .guides-intro .intro-features {
      grid-template-columns: 1fr !important;
    }
    
    .choose-grid {
      grid-template-columns: 1fr !important;
    }
  }
  
  /* ===== 横屏模式适配 ===== */
  @media (max-width: 1023px) and (orientation: landscape) {
    .guides-header {
      min-height: 30vh !important;
    }
    
    .guides-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .guide-card .guide-photo {
      height: 140px !important;
    }
  }
}
