.service-hero-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.service-hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: white;
}
.service-hero-text {
  max-width: 600px;
}
.service-hero-subtitle {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.9;
  text-transform: uppercase;
}
.service-hero-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .service-hero-title {
    font-size: 36px;
  }
}
.service-hero-description {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 500px;
}
.service-packages-section {
  padding: 80px 0 120px;
  background: #241ce8;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 500px;
  }
}
.package-card {
  background: linear-gradient(135deg, #241ce8 0%, #4c3bef 100%);
  color: white;
  border-radius: 8px;
  padding: 48px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.package-card .package-title {
  color: white;
}
.package-card .package-description {
  color: rgba(255, 255, 255, 0.9);
}
.package-card .package-payment {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.package-card .package-payment:hover {
  background: rgba(255, 255, 255, 0.3);
}
.package-card .features-title {
  color: white;
}
.package-card .features-list li {
  color: rgba(255, 255, 255, 0.9);
}
.package-card .price-period {
  color: rgba(255, 255, 255, 0.7);
}
.package-card.package-featured {
  background: white;
  color: #333;
}
.package-card.package-featured .package-title {
  color: #333;
}
.package-card.package-featured .package-description {
  color: #666;
}
.package-card.package-featured .package-payment {
  background: #241ce8;
  color: white;
  border: 1px solid #241ce8;
}
.package-card.package-featured .package-payment:hover {
  background: #1d16c7;
}
.package-card.package-featured .features-title {
  color: #333;
}
.package-card.package-featured .features-list li {
  color: #666;
}
.package-card.package-featured .price-period {
  color: #666;
}
.package-card.selected {
  border: 3px solid #ffd700;
}
.package-header {
  text-align: center;
  margin-bottom: 32px;
}
.package-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: white;
  /* 蓝色背景上的白色文字 */
  margin-bottom: 16px;
  text-transform: capitalize;
}
.package-featured .package-title {
  color: #212529;
  /* 白色Plus卡片上的深色文字 */
}
.package-description {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  /* 蓝色背景上的半透明白色文字 */
}
.package-featured .package-description {
  color: #6c757d;
  /* 白色Plus卡片上的深色文字 */
}
.package-price {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price-currency {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #f7b614;
  /* 统一黄色 */
}
.price-amount {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #f7b614;
  /* 统一黄色 */
}
.price-period {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  color: #6c757d;
}
.package-featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}
.package-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  /* 蓝色卡片上的半透明白色背景 */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
  /* 蓝色背景上的白色文字 */
  /* 白色Plus卡片的按钮样式 */
}
.package-payment:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.package-payment .payment-arrow {
  transition: transform 0.3s ease;
}
.package-payment:hover .payment-arrow {
  transform: translateX(4px);
}
.package-featured .package-payment {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #495057;
}
.package-featured .package-payment:hover {
  background: #e9ecef;
  border-color: #241ce8;
}
.package-features {
  text-align: left;
}
.features-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: white;
  /* 蓝色背景上的白色文字 */
  margin-bottom: 20px;
  /* 白色Plus卡片的标题样式 */
}
.package-featured .features-title {
  color: #212529;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list li {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  /* 蓝色背景上的半透明白色文字 */
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
  /* 白色Plus卡片的列表项样式 */
}
.features-list li:last-child {
  margin-bottom: 0;
}
.package-featured .features-list li {
  color: #6c757d;
}
@media (max-width: 768px) {
  .service-hero-section {
    padding: 60px 0;
  }
  .service-packages-section {
    padding: 80px 0;
  }
  .package-card {
    padding: 32px 24px;
  }
  .package-card.package-featured {
    transform: none;
  }
  .package-card.package-featured:hover {
    transform: translateY(-8px);
  }
  .package-title {
    font-size: 24px;
  }
  .price-amount {
    font-size: 36px;
  }
}
