/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  width: 40px;
  height: 40px;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #00b6f3;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00b6f3;
}

/* 移动端导航按钮 */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 8px;
}

/* 移动端导航菜单内的语言切换 */
.nav-language-dropdown {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.nav-language-toggle {
  background: #00b6f3;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  width: 100%;
  justify-content: center;
}

.nav-language-toggle:hover {
  background: #0098d1;
}

.nav-language-options {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.nav-language-dropdown.active .nav-language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-language-option {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.nav-language-option:last-child {
  border-bottom: none;
}

.nav-language-option:hover {
  background: #f8f9fa;
  color: #00b6f3;
}

.nav-language-option.active {
  background: #e8f4fd;
  color: #00b6f3;
}

/* 语言下拉菜单样式 */
.language-dropdown {
  position: relative;
}

.language-toggle {
  background: #00b6f3;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.language-toggle:hover {
  background: #0098d1;
  transform: translateY(-2px);
}

.language-toggle i:first-child {
  font-size: 16px;
}

.language-toggle i:last-child {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-dropdown.active .language-toggle i:last-child {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
  margin-top: 5px;
}

.language-dropdown.active .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: #f8f9fa;
  color: #00b6f3;
}

.language-option.active {
  background: #e8f4fd;
  color: #00b6f3;
}

/* Hero 区域样式 */
.hero {
  padding: 100px 0 80px;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  width: 100%;
}

.hero-background {
  background: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    url("../images/index/1.jpg") center/cover no-repeat;
  background-image: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    url("../images/index/1.jpg");
  background-size: cover, auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  box-sizing: border-box;
  min-height: 600px;
  position: relative;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

.hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero底部统计模块 */
.hero-bottom-module {
  margin-top: -60px;
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}

.hero-features {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-feature-item {
  text-align: center;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00b6f3 0%, #0098d1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.feature-icon i {
  font-size: 20px;
  color: white;
}

.feature-text {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
  line-height: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 通用按钮样式 */
.btn-primary {
  background: #00b6f3;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #0098d1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 182, 243, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #00b6f3;
  border: 2px solid #00b6f3;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #00b6f3;
  color: white;
  transform: translateY(-2px);
}

/* 章节标题样式 */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #333;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 公司服务样式 */
.company-services {
  padding: 130px 0 100px;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00b6f3 0%, #0098d1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 28px;
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* 旅行记忆样式 */
.travel-memories {
  padding: 100px 0;
  background: white;
}

.memories-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.memories-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.memories-text > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #e8f8ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: #00b6f3;
  font-size: 20px;
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.feature-text p {
  color: #666;
  line-height: 1.6;
}

.memories-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* 热门景点样式 */
.popular-attractions {
  padding: 100px 0;
  background: #fff;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.attraction-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.attraction-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.1);
}

.attraction-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
}

.attraction-info {
  padding: 25px;
}

.attraction-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.attraction-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 冒险之旅样式 */
.adventure {
  padding: 100px 0;
  background: #fff;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.adventure-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.adventure-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.adventure-card:hover::before {
  opacity: 1;
}

.adventure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.adventure-card:nth-child(1) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.adventure-card:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.adventure-card:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.adventure-card:nth-child(4) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.adventure-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.adventure-card:hover .adventure-icon {
  transform: scale(1.1);
}

.adventure-icon i {
  font-size: 24px;
}

.adventure-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* 预订票据样式 */
.booking {
  padding: 100px 0;
  background: #fff;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.booking-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.2;
}

.booking-image {
  position: relative;
}

.booking-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* 页脚样式 */
.footer {
  background: #fff;
  color: #333;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #00b6f3;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00b6f3;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.contact-info i {
  color: #00b6f3;
  width: 20px;
  text-align: center;
}

.quick-message-form .form-group {
  margin-bottom: 15px;
}

.quick-message-form input,
.quick-message-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

.quick-message-form input::placeholder,
.quick-message-form textarea::placeholder {
  color: #aaa;
}

.quick-message-form input:focus,
.quick-message-form textarea:focus {
  border-color: #00b6f3;
}

.quick-message-form textarea {
  min-height: 80px;
  resize: vertical;
}

.quick-message-form .btn-primary {
  width: 100%;
  padding: 12px;
  justify-content: center;
}

/* intl-tel-input组件样式修复 */
.quick-message-form .iti {
  width: 100% !important;
  display: block !important;
}

.quick-message-form .iti__tel-input {
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #333 !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
  box-sizing: border-box !important;
}

.quick-message-form .iti__tel-input:focus {
  border-color: #00b6f3 !important;
}

.quick-message-form .iti__tel-input::placeholder {
  color: #aaa !important;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .memories-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
    min-height: 90vh;
  }

  .hero-background {
    padding: 80px 20px;
    border-radius: 20px;
    min-height: 500px;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  /* 导游风采页面移动端样式 */
  .guide-hero {
    padding: 80px 0 30px;
    min-height: 40vh;
  }

  .guide-hero-background {
    padding: 60px 20px;
    border-radius: 20px;
    min-height: 250px;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .guides-showcase {
    padding: 80px 0;
  }

  .guides-grid {
    gap: 20px;
  }

  .guide-card {
    flex: 0 0 calc(50% - 10px);
  }

  .guide-image {
    height: 250px;
  }

  .guide-info {
    padding: 20px 15px;
  }

  .guide-info h3 {
    font-size: 1.2rem;
  }

  .guide-info p {
    font-size: 0.9rem;
  }

  /* 旅遊風采页面移动端样式 */
  .travel-hero {
    padding: 80px 0 30px;
    min-height: 40vh;
  }

  .travel-hero-background {
    padding: 60px 20px;
    border-radius: 20px;
    min-height: 250px;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .travel-showcase {
    padding: 80px 0;
  }

  .travel-grid {
    gap: 20px;
  }

  .travel-card {
    flex: 0 0 calc(50% - 10px);
  }

  .travel-image {
    height: 180px;
  }

  .travel-review {
    padding: 15px;
  }

  .review-content p {
    font-size: 0.85rem;
    padding-left: 12px;
  }

  .reviewer-info {
    gap: 10px;
  }

  .reviewer-avatar {
    width: 35px;
    height: 35px;
  }

  .reviewer-name {
    font-size: 0.85rem;
  }

  .reviewer-location {
    font-size: 0.75rem;
  }

  /* 影片分享页面移动端样式 */
  .video-hero {
    padding: 80px 0 30px;
    min-height: 40vh;
  }

  .video-hero-background {
    padding: 60px 20px;
    border-radius: 20px;
    min-height: 250px;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .video-showcase {
    padding: 80px 0;
  }

  .video-grid {
    gap: 20px;
  }

  .video-card {
    flex: 0 0 calc(50% - 10px);
  }

  .video-container {
    height: 180px;
  }

  .video-review {
    padding: 15px;
  }

  .video-review .review-content p {
    font-size: 0.85rem;
    padding-left: 12px;
  }

  .video-review .reviewer-info {
    gap: 10px;
  }

  .video-review .reviewer-avatar {
    width: 35px;
    height: 35px;
  }

  .video-review .reviewer-name {
    font-size: 0.85rem;
  }

  .video-review .reviewer-location {
    font-size: 0.75rem;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 25px 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 18px;
  }

  .feature-text {
    font-size: 0.85rem;
  }

  .company-services {
    padding: 110px 0 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* 移动端导航样式 */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    justify-content: flex-start;
    gap: 0;
    z-index: 9999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #00b6f3;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-language-dropdown {
    display: block;
  }

  .language-options {
    right: -10px;
    min-width: 100px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 25px 15px;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
  }

  .adventure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card-1,
  .floating-card-2 {
    position: static;
    margin: 10px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  /* 移动端快速留言表单优化 */
  .success-content {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .phone-error {
    font-size: 11px;
  }

  /* 移动端intl-tel-input样式 */
  .quick-message-form .iti {
    width: 100% !important;
  }

  .quick-message-form .iti__tel-input {
    width: 100% !important;
    padding: 10px !important;
    font-size: 16px !important; /* 防止iOS缩放 */
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 50px;
    min-height: 85vh;
  }

  .hero-background {
    padding: 60px 15px;
    border-radius: 15px;
    min-height: 450px;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }

  /* 导游风采页面小屏幕样式 */
  .guide-hero {
    padding: 70px 0 20px;
    min-height: 35vh;
  }

  .guide-hero-background {
    padding: 50px 15px;
    border-radius: 15px;
    min-height: 200px;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }

  .guides-showcase {
    padding: 60px 0;
  }

  .guides-grid {
    gap: 15px;
  }

  .guide-card {
    flex: 0 0 100%;
  }

  .guide-image {
    height: 280px;
  }

  .guide-info {
    padding: 15px;
  }

  .guide-info h3 {
    font-size: 1.1rem;
  }

  .guide-info p {
    font-size: 0.85rem;
  }

  /* 旅遊風采页面小屏幕样式 */
  .travel-hero {
    padding: 70px 0 20px;
    min-height: 35vh;
  }

  .travel-hero-background {
    padding: 50px 15px;
    border-radius: 15px;
    min-height: 200px;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }

  .travel-showcase {
    padding: 60px 0;
  }

  .travel-grid {
    gap: 15px;
  }

  .travel-card {
    flex: 0 0 100%;
  }

  .travel-image {
    height: 200px;
  }

  .travel-review {
    padding: 15px;
  }

  .review-content p {
    font-size: 0.8rem;
    padding-left: 10px;
  }

  .reviewer-info {
    gap: 8px;
  }

  .reviewer-avatar {
    width: 30px;
    height: 30px;
  }

  .reviewer-name {
    font-size: 0.8rem;
  }

  .reviewer-location {
    font-size: 0.7rem;
  }

  /* 影片分享页面小屏幕样式 */
  .video-hero {
    padding: 70px 0 20px;
    min-height: 35vh;
  }

  .video-hero-background {
    padding: 50px 15px;
    border-radius: 15px;
    min-height: 200px;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }

  .video-showcase {
    padding: 60px 0;
  }

  .video-grid {
    gap: 15px;
  }

  .video-card {
    flex: 0 0 100%;
  }

  .video-container {
    height: 200px;
  }

  .video-review {
    padding: 15px;
  }

  .video-review .review-content p {
    font-size: 0.8rem;
    padding-left: 10px;
  }

  .video-review .reviewer-info {
    gap: 8px;
  }

  .video-review .reviewer-avatar {
    width: 30px;
    height: 30px;
  }

  .video-review .reviewer-name {
    font-size: 0.8rem;
  }

  .video-review .reviewer-location {
    font-size: 0.7rem;
  }

  /* 聯絡我們页面移动端样式 */
  .contact-hero {
    padding: 80px 0 30px;
    min-height: 40vh;
  }

  .contact-hero-background {
    padding: 60px 20px;
    border-radius: 20px;
    min-height: 250px;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon i {
    font-size: 20px;
  }

  .contact-details h3 {
    font-size: 1.1rem;
  }

  .contact-details p {
    font-size: 0.95rem;
  }

  /* 聯絡我們页面小屏幕样式 */
  .contact-hero {
    padding: 70px 0 20px;
    min-height: 35vh;
  }

  .contact-hero-background {
    padding: 50px 15px;
    border-radius: 15px;
    min-height: 200px;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-item {
    padding: 15px;
    margin-bottom: 15px;
    gap: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 18px;
  }

  .contact-details h3 {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.9rem;
  }

  /* 關於我們页面移动端样式 */
  .about-hero {
    padding: 80px 0 30px;
    min-height: 40vh;
  }

  .about-hero-background {
    padding: 60px 20px;
    border-radius: 20px;
    min-height: 250px;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-content {
    max-width: none;
    padding: 0 10px;
  }

  .about-description p {
    font-size: 1rem;
    text-align: left;
  }

  .company-features {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .license-section {
    padding: 30px 20px;
  }

  .license-image {
    max-width: 100%;
  }

  /* 關於我們页面小屏幕样式 */
  .about-hero {
    padding: 70px 0 20px;
    min-height: 35vh;
  }

  .about-hero-background {
    padding: 50px 15px;
    border-radius: 15px;
    min-height: 200px;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding: 0 5px;
  }

  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .company-features {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 15px;
    margin-bottom: 30px;
  }

  .feature-item {
    padding: 15px;
    gap: 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 18px;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  .license-section {
    padding: 25px 15px;
  }

  .license-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .hero-bottom-module {
    width: 95%;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 10px;
    border-radius: 15px;
  }

  .hero-feature-item {
    padding: 10px 5px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon i {
    font-size: 16px;
  }

  .feature-text {
    font-size: 0.8rem;
  }

  .company-services {
    padding: 100px 0 70px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .adventure-grid {
    grid-template-columns: 1fr;
  }

  .explore-tabs {
    gap: 10px;
  }

  .explore-tab {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.place-card,
.destination-card,
.adventure-card,
.feature {
  animation: fadeInUp 0.6s ease forwards;
}

.place-card:nth-child(2) {
  animation-delay: 0.1s;
}
.place-card:nth-child(3) {
  animation-delay: 0.2s;
}
.place-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* 导游风采页面样式 */
.guide-hero {
  padding: 100px 0 40px;
  background: #fff;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.guide-hero .container {
  width: 100%;
}

.guide-hero-background {
  background: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    url("../images/index/1.jpg") center/cover no-repeat;
  background-image: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    url("../images/index/1.jpg");
  background-size: cover, auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  min-height: 300px;
  position: relative;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

/* 导游展示区域 */
.guides-showcase {
  padding: 100px 0;
  background: #fff;
}

.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: left;
}

.guide-card {
  flex: 0 0 calc(25% - 22.5px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.guide-image {
  width: 100%;
  position: relative;
}

.guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

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

.guide-info {
  padding: 25px 20px;
}

.guide-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.guide-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 旅遊風采页面样式 */
.travel-hero {
  padding: 100px 0 40px;
  background: #fff;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.travel-hero .container {
  width: 100%;
}

.travel-hero-background {
  background: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    url("../images/index/1.jpg") center/cover no-repeat;
  background-image: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    url("../images/index/1.jpg");
  background-size: cover, auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  min-height: 300px;
  position: relative;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

/* 旅游风采展示区域 */
.travel-showcase {
  padding: 100px 0;
  background: #fff;
}

.travel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.travel-card {
  flex: 0 0 calc(25% - 22.5px);
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.travel-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-card:hover .travel-image img {
  transform: scale(1.05);
}

.travel-review {
  padding: 20px;
}

.review-content {
  margin-bottom: 15px;
}

.review-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 15px;
}

.review-content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 1.5rem;
  color: #00b6f3;
  font-family: serif;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.reviewer-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
  font-size: 0.8rem;
}

.reviewer-location i {
  color: #00b6f3;
  font-size: 0.75rem;
}

/* 影片分享页面样式 */
.video-hero {
  padding: 100px 0 40px;
  background: #fff;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.video-hero .container {
  width: 100%;
}

.video-hero-background {
  background: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    url("../images/index/1.jpg") center/cover no-repeat;
  background-image: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    url("../images/index/1.jpg");
  background-size: cover, auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  min-height: 300px;
  position: relative;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

/* 影片分享展示区域 */
.video-showcase {
  padding: 100px 0;
  background: #fff;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-card {
  flex: 0 0 calc(25% - 22.5px);
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-container video {
  transform: scale(1.05);
}

.video-review {
  padding: 20px;
}

.video-review .review-content {
  margin-bottom: 15px;
}

.video-review .review-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 15px;
}

.video-review .review-content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 1.5rem;
  color: #00b6f3;
  font-family: serif;
}

.video-review .reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-review .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.video-review .reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-review .reviewer-details {
  flex: 1;
}

.video-review .reviewer-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.video-review .reviewer-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
  font-size: 0.8rem;
}

.video-review .reviewer-location i {
  color: #00b6f3;
  font-size: 0.75rem;
}

/* 聯絡我們页面样式 */
.contact-hero {
  padding: 100px 0 40px;
  background: #fff;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.contact-hero .container {
  width: 100%;
}

.contact-hero-background {
  background: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    url("../images/index/1.jpg") center/cover no-repeat;
  background-image: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    url("../images/index/1.jpg");
  background-size: cover, auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  min-height: 300px;
  position: relative;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

/* 联系信息区域 */
.contact-section {
  padding: 100px 0;
  background: #fff;
}

.contact-content {
  display: flex;
  justify-content: center;
}

.contact-info-main {
  max-width: 800px;
  width: 100%;
}

.contact-items {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e8f4fd;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 182, 243, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b6f3 0%, #0098d1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  color: white;
  font-size: 24px;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-details p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.contact-details a {
  color: #00b6f3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0098d1;
  text-decoration: underline;
}

/* WhatsApp二维码样式 */
.whatsapp-qr {
  margin-top: 15px;
  text-align: center;
}

.qr-code {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.05);
}

/* 關於我們页面样式 */
.about-hero {
  padding: 100px 0 40px;
  background: #fff;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.about-hero .container {
  width: 100%;
}

.about-hero-background {
  background: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    url("../images/index/1.jpg") center/cover no-repeat;
  background-image: linear-gradient(
      135deg,
      rgba(64, 232, 244, 0.7) 0%,
      rgba(0, 182, 243, 0.8) 100%
    ),
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    url("../images/index/1.jpg");
  background-size: cover, auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  min-height: 300px;
  position: relative;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

/* 关于我们内容区域 */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 60px;
}

.about-description {
  margin: 30px 0 50px;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
  text-align: justify;
}

.company-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #e8f4fd;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 182, 243, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b6f3 0%, #0098d1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  color: white;
  font-size: 24px;
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* 营业执照区域 */
.license-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.license-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.license-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.license-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.license-image:hover {
  transform: scale(1.02);
}

/* 快速留言表单样式增强 */
.phone-error {
  display: block;
  color: #ff4757;
  font-size: 12px;
  margin-top: 5px;
  min-height: 18px;
}

.btn-loading {
  display: none;
}

.quick-message-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 成功提示模态框样式 */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.success-content {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  color: white;
  font-size: 30px;
}

.success-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.success-content p {
  color: #666;
  margin-bottom: 25px;
  font-size: 1rem;
}

.success-btn {
  background: #00b6f3;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.success-btn:hover {
  background: #0098d1;
}

/* 滚动平滑 */
html {
  scroll-behavior: smooth;
}

/* 加载动画 */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
