@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=Playfair+Display:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: #fff;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* ===== 链接样式 ===== */
a {
  color: #f0c040;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #fff;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f0c040;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:visited {
  color: #d4a83d;
}

/* ===== 顶部标题 ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.top-bar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

.logo span {
  color: #f0c040;
}

.menu-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s;
}

.menu-label:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== 幻灯片主容器 ===== */
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vmin;
  overflow: hidden;
  touch-action: pan-y;
}

/* 手机端竖屏高度 */
@media (max-width: 768px) {
  .slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    overflow: hidden;
  }
}

/* ===== 人物图片层（底层） ===== */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.slide.active .slide-image {
  transform: scale(1);
  transition: transform 6s ease-out;
}

/* 图片上的渐变遮罩 */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* ===== 文字层（上层） ===== */
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10% 10% 80px;
  z-index: 10;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 192, 64, 0.4) transparent;
}

.slide-content::-webkit-scrollbar {
  width: 4px;
}

.slide-content::-webkit-scrollbar-track {
  background: transparent;
}

.slide-content::-webkit-scrollbar-thumb {
  background: rgba(240, 192, 64, 0.4);
  border-radius: 2px;
}

.slide-content::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 192, 64, 0.7);
}

.slide-content-inner {
  max-width: 700px;
}

/* 文字各元素的初始状态 */
.slide-tag,
.slide-name,
.slide-title,
.slide-desc,
.slide-stats,
.slide-quote {
  opacity: 0;
  transition: opacity 0.6s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== 向左滑入（新内容从右侧进入，带弹簧效果） ===== */
.slide.active .slide-tag {
  opacity: 1;
  transform: translateX(0) !important;
  transition-delay: 0.15s;
}
.slide.active .slide-name {
  opacity: 1;
  transform: translateX(0) !important;
  transition-delay: 0.3s;
}
.slide.active .slide-title {
  opacity: 1;
  transform: translateX(0) !important;
  transition-delay: 0.45s;
}
.slide.active .slide-desc {
  opacity: 1;
  transform: translateX(0) !important;
  transition-delay: 0.6s;
}
.slide.active .slide-stats {
  opacity: 1;
  transform: translateX(0) !important;
  transition-delay: 0.75s;
}
.slide.active .slide-quote {
  opacity: 1;
  transform: translateX(0) !important;
  transition-delay: 0.9s;
}

/* 向左滑入前的偏移 */
.slide.dir-left .slide-tag,
.slide.dir-left .slide-name,
.slide.dir-left .slide-title,
.slide.dir-left .slide-desc,
.slide.dir-left .slide-stats,
.slide.dir-left .slide-quote {
  transform: translateX(100px);
}

/* 向右滑入前的偏移 */
.slide.dir-right .slide-tag,
.slide.dir-right .slide-name,
.slide.dir-right .slide-title,
.slide.dir-right .slide-desc,
.slide.dir-right .slide-stats,
.slide.dir-right .slide-quote {
  transform: translateX(-100px);
}

/* ===== 图片层动画（淡入淡出 + 弹簧缩放） ===== */
.slide-image {
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.dir-left .slide-image,
.slide.dir-right .slide-image {
  opacity: 0;
  transform: scale(0.92);
}

.slide.active .slide-image {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s ease, transform 6s ease-out;
}

/* ===== 标签 ===== */
.slide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0c040;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(240, 192, 64, 0.4);
  border-radius: 30px;
  width: fit-content;
}

/* ===== 姓名 ===== */
.slide-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== 职位 ===== */
.slide-title {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

/* ===== 描述 ===== */
.slide-desc {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ===== 数据统计 ===== */
.slide-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f0c040;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== 引言 ===== */
.slide-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 20px;
  border-left: 2px solid rgba(240, 192, 64, 0.4);
  max-width: 480px;
  line-height: 1.7;
}

/* ===== 导航箭头 ===== */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  opacity: 1;
}

/* 手机端隐藏导航箭头 */
@media (max-width: 768px) {
  .nav-arrow {
    display: none !important;
  }
}

.nav-arrow:hover {
  background: rgba(240, 192, 64, 0.15);
  border-color: rgba(240, 192, 64, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-prev {
  left: 30px;
}

.nav-next {
  right: 30px;
}

/* ===== 指示器圆点 ===== */
.indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 12px;
  align-items: center;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.indicator:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.indicator.active {
  border-color: #f0c040;
  background: #f0c040;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(240, 192, 64, 0.4);
}

/* ===== 进度条 ===== */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #f0c040, #e8a020);
  z-index: 100;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== Teacher Mode 样式 ===== */
.teacher-mode .progress-bar {
  display: none;
}

.teacher-mode .indicators {
  width: 80%;
  max-width: 600px;
  justify-content: space-evenly;
}

.teacher-mode .indicator {
  width: 35%;
  height: 3px;
  border-radius: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
}

.teacher-mode .indicator:hover {
  background: rgba(255, 255, 255, 0.4);
}

.teacher-mode .indicator.active {
  border-color: transparent;
  background: #f0c040;
}

/* ===== 页码 ===== */
.page-number {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 100;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-number .current {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
}


/* ===== 关于湾區茶馆内容区 ===== */
.bottom-section {
  position: relative;
  z-index: 10;
  background: #ffffff;
  padding: 180px 20px;
  touch-action: pan-y;
}

.bottom-section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #f0c040;
  padding: 10px 0px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 1200px;
  text-align: center;
}

.bottom-section.visible .bottom-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.bottom-text {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 2;
  color: #555;
  max-width: 800px;
}

.bottom-text p {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bottom-section.visible .bottom-text p:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.bottom-section.visible .bottom-text p:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}
.bottom-section.visible .bottom-text p:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
.bottom-section.visible .bottom-text p:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.65s;
}

/* ===== 业务信息区 ===== */
.gallery-section {
  position: relative;
  z-index: 10;
  background: #111;
  padding: 180px 10%;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 50px;
  color: #f0c040;
  text-align: center;
  padding: 10px 0px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-section.visible .gallery-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
}

.gallery-section.visible .gallery-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.2s;
}
.gallery-section.visible .gallery-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.35s;
}
.gallery-section.visible .gallery-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.5s;
}
.gallery-section.visible .gallery-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.65s;
}

.gallery-section.visible .gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(240, 192, 64, 0.15), rgba(240, 192, 64, 0.05));
  border: 1px solid rgba(240, 192, 64, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.gallery-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.gallery-item p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 客户寄言区 ===== */
.testimonial-section {
  position: relative;
  z-index: 10;
  background: #ffffff;
  padding: 180px 8%;
  overflow: hidden;
}

.testimonial-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-align: center;
  padding: 10px 0px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-section.visible .testimonial-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-section.visible .testimonial-slider {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.testimonial-track:active {
  cursor: grabbing;
}



.testimonial-item {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-quote {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.9;
  color: #333;
  margin-bottom: 36px;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid #f0c040;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0c040;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #888;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-section.visible .testimonial-dots {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  background: #f0c040;
  transform: scale(1.2);
}

/* ===== 版权信息区 ===== */
.footer-section {
  position: relative;
  z-index: 10;
  background: #0a0a0a;
  padding: 80px 10%;
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

/* ===== 地图区域样式 ===== */
.map-section {
  position: relative;
  padding: 80px 0%;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  padding: 10px 0px;
  margin-bottom: 50px;
  color:#f0c040;
  margin-bottom: 50px;
}


.map-wrapper {
  width: 100%;
  max-width: 900px;
  height: 350px;
  margin: 0 auto 0px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(240, 192, 64, 0.2);
}

.small-map-container {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.small-map-container:hover {
  opacity: 0.9;
}

/* ===== 地图弹窗样式 ===== */
.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.map-modal.active {
  display: flex;
}

.map-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.map-modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 100vh;
  background: #0a0a0a;
  border-radius: 16px;
  border: 1px solid rgba(240, 192, 64, 0.3);
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.map-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.map-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #f0c040;
}

.map-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-modal-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0c040;
  margin-bottom: 5px;
}

.map-modal-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.map-modal-body {
  padding: 0;
}

.modal-map-container {
  width: 100%;
  height: 200px;
}

.map-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-modal-nav-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f0c040, #e8a020);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-modal-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(240, 192, 64, 0.4);
}

.map-modal-tip {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 12px;
}

/* ===== 地图页面样式 ===== */
.map-container {
  width: 100%;
  height: calc(100vh - 116px);
  margin-top: 116px;
}

.map-info-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  padding: 20px;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(240, 192, 64, 0.2);
}

.map-info-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f0c040;
  margin-bottom: 10px;
}

.map-info-address {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.map-nav-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f0c040, #e8a020);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(240, 192, 64, 0.4);
}

.map-nav-btn:active {
  transform: translateY(0);
}

.map-tip {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 12px;
}

/* ===== 地图页面响应式 ===== */
@media (min-width: 768px) {
  .map-info-panel {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 320px;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(240, 192, 64, 0.2);
  }

  .map-container {
    height: calc(100vh - 116px);
  }
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .slide-content {
    padding: 15% 8% 50px;
  }
  .slide-stats {
    gap: 24px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .nav-arrow {
    width: 44px;
    height: 44px;
  }
  .nav-prev { left: 16px; }
  .nav-next { right: 16px; }
  .top-bar {
    padding: 20px 20px;
  }
  .page-number {
    right: 20px;
    bottom: 28px;
  }
  .indicators {
    bottom: 28px;
  }
  .bottom-section {
    padding: 60px 8%;
  }
  .gallery-section {
    padding: 60px 8%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .gallery-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }
  .testimonial-section {
    padding: 60px 8%;
  }
  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }
  /* 地图区域响应式 */
  .map-section {
    padding: 0px;
  }
  .map-wrapper {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}