/* 首页样式 - 按照Figma设计稿布局 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', 'Microsoft YaHei', sans-serif;
  color: #f0f0f0;
  background: #3a2f2b;
  line-height: 1.6;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Hero区域 - 左右分栏 */
.zh_hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background: #3a2f2b;
  padding: 100px 0 80px;
}

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

.zh_hero_left {
  position: relative;
  z-index: 2;
}

.zh_hero_subtitle {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(250, 125, 9, 0.15);
  color: #fa7d09;
  font-size: 13px;
  font-weight: 600;
  border-radius: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zh_hero_title {
  font-size: 72px;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: 'Cardo', serif;
}

.zh_text_orange {
  color: #fa7d09;
}

.zh_hero_description {
  font-size: 16px;
  color: rgba(240, 240, 240, 0.75);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
}

.zh_hero_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #fa7d09, #ff9500);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(250, 125, 9, 0.3);
}

.zh_hero_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(250, 125, 9, 0.4);
}

.zh_hero_features {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.zh_hero_feature {
  text-align: center;
}

.zh_hero_feature_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: rgba(250, 125, 9, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh_hero_feature_icon i {
  font-size: 28px;
  color: #fa7d09;
}

.zh_hero_feature_text {
  font-size: 13px;
  color: rgba(240, 240, 240, 0.8);
  font-weight: 500;
}

.zh_hero_right {
  position: relative;
}

.zh_hero_image {
  width: 100%;
  height: 550px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.zh_hero_card {
  position: absolute;
  bottom: 40px;
  right: -40px;
  background: rgba(58, 47, 43, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 16px;
  max-width: 280px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(250, 125, 9, 0.2);
}

.zh_hero_card_stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.zh_hero_card_stars i {
  color: #fa7d09;
  font-size: 14px;
}

.zh_hero_card_text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240, 240, 240, 0.85);
  font-style: italic;
}

/* 产品展示区 - 3列布局 */
.zh_products {
  padding: 100px 0;
  background: #3a2f2b;
}

.zh_section_header {
  margin-bottom: 60px;
}

.zh_section_title {
  font-size: 40px;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 15px;
  font-family: 'Cardo', serif;
}

.zh_section_subtitle {
  font-size: 16px;
  color: rgba(240, 240, 240, 0.65);
  max-width: 700px;
  line-height: 1.6;
}

.zh_section_actions {
  margin-top: 15px;
}

.zh_section_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  color: #fa7d09;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fa7d09;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.zh_section_btn:hover {
  background: #fa7d09;
  color: #fff;
}

.zh_products_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 50px;
}

.zh_product_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.zh_product_card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 125, 9, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.zh_product_image {
  width: 100%;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.zh_product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zh_product_card:hover .zh_product_image img {
  transform: scale(1.05);
}

.zh_product_content {
  padding: 25px;
}

.zh_product_title {
  font-size: 20px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.zh_product_desc {
  font-size: 14px;
  color: rgba(240, 240, 240, 0.6);
  line-height: 1.5;
  margin-bottom: 20px;
}

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

.zh_product_price {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(250, 125, 9, 0.15);
  color: #fa7d09;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
}

.zh_product_link {
  color: rgba(240, 240, 240, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.zh_product_link:hover {
  color: #fa7d09;
}

/* 优势区域 - 左图右文 */
.zh_benefits {
  padding: 100px 0;
  background: #3a2f2b;
}

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

.zh_benefits_image {
  width: 100%;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.zh_benefits_content {
  padding-left: 20px;
}

.zh_benefits_title {
  font-size: 40px;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 20px;
  font-family: 'Cardo', serif;
  line-height: 1.2;
}

.zh_benefits_desc {
  font-size: 16px;
  color: rgba(240, 240, 240, 0.7);
  line-height: 1.6;
  margin-bottom: 35px;
}

.zh_benefits_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zh_benefit_item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  background: rgba(250, 125, 9, 0.08);
  border-radius: 12px;
  border-left: 3px solid #fa7d09;
  transition: all 0.3s ease;
}

.zh_benefit_item:hover {
  background: rgba(250, 125, 9, 0.12);
  transform: translateX(8px);
}

.zh_benefit_icon {
  width: 24px;
  height: 24px;
  background: #fa7d09;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zh_benefit_icon i {
  color: #fff;
  font-size: 12px;
}

.zh_benefit_text {
  font-size: 16px;
  color: rgba(240, 240, 240, 0.85);
  font-weight: 500;
}

/* 评价区域 - 3列布局 */
.zh_testimonials {
  padding: 100px 0;
  background: #3a2f2b;
}

.zh_testimonials_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.zh_testimonial_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s ease;
}

.zh_testimonial_card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 125, 9, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.zh_testimonial_text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.75);
  font-style: italic;
  margin-bottom: 25px;
}

.zh_testimonial_author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.zh_testimonial_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(250, 125, 9, 0.15);
}

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

.zh_testimonial_name {
  font-size: 17px;
  font-weight: 600;
  color: #f0f0f0;
}

/* CTA区域 - 深色背景居中 */
.zh_cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #2a2420, #3a2f2b);
  position: relative;
  overflow: hidden;
}

.zh_cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 125, 9, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.zh_cta_container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.zh_cta_title {
  font-size: 48px;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 20px;
  font-family: 'Cardo', serif;
  line-height: 1.2;
}

.zh_cta_description {
  font-size: 16px;
  color: rgba(240, 240, 240, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.zh_cta_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #fa7d09, #ff9500);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(250, 125, 9, 0.35);
}

.zh_cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(250, 125, 9, 0.45);
}

/* 统计数据 */
.zh_stats {
  background: linear-gradient(135deg, #fa7d09, #ff9500);
  padding: 80px 0;
}

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

.zh_stat_card {
  text-align: center;
}

.zh_stat_value {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Cardo', serif;
}

.zh_stat_label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_hero_wrapper {
    gap: 60px;
  }

  .zh_hero_title {
    font-size: 60px;
  }

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

@media (max-width: 992px) {
  .zh_hero_wrapper,
  .zh_benefits_wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zh_hero_title {
    font-size: 48px;
  }

  .zh_hero_image {
    height: 400px;
  }

  .zh_hero_card {
    position: static;
    margin-top: 20px;
  }

  .zh_benefits_image {
    height: 450px;
  }

  .zh_benefits_content {
    padding-left: 0;
  }

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

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

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .zh_hero_title {
    font-size: 40px;
  }

  .zh_hero_features {
    flex-direction: column;
    gap: 25px;
  }

  .zh_products,
  .zh_benefits,
  .zh_testimonials {
    padding: 70px 0;
  }

  .zh_section_title {
    font-size: 32px;
  }

  .zh_products_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .zh_benefits_title {
    font-size: 32px;
  }

  .zh_cta {
    padding: 80px 0;
  }

  .zh_cta_title {
    font-size: 36px;
  }

  .zh_stats {
    padding: 60px 0;
  }

  .zh_stats_grid {
    gap: 30px;
  }

  .zh_stat_value {
    font-size: 44px;
  }
}
