/* 首页样式定义 */
/* 所有自定义类和ID使用 zh_ 前缀 */

/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', 'Microsoft YaHei', sans-serif;
  color: #1D1D39;
  line-height: 1.6;
  overflow-x: hidden;
}

.zh_main_content {
  width: 100%;
  overflow: hidden;
}

/* Hero 主视觉区样式 */
.zh_hero_section {
  position: relative;
  min-height: 630px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EBFAE9 0%, #fff 100%);
  overflow: hidden;
}

.zh_hero_section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(38, 144, 27, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.zh_hero_overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

.zh_hero_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.zh_hero_content {
  flex: 1;
  max-width: 680px;
}

.zh_hero_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #1D1D39;
  margin-bottom: 20px;
}

.zh_hero_highlight {
  color: #26901B;
  position: relative;
  display: inline-block;
}

.zh_hero_description {
  font-size: 20px;
  color: #535362;
  line-height: 1.6;
  margin-bottom: 40px;
}

.zh_hero_actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.zh_hero_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.zh_hero_btn_primary {
  background: #26901B;
  color: #fff;
}

.zh_hero_btn_primary:hover {
  background: #31B923;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

.zh_hero_btn_outline {
  background: transparent;
  color: #26901B;
  border-color: #26901B;
}

.zh_hero_btn_outline:hover {
  background: #26901B;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

.zh_hero_stats {
  flex-shrink: 0;
}

.zh_hero_stat_card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(38, 144, 27, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 250px;
}

.zh_hero_stat_icon {
  width: 60px;
  height: 60px;
  background: #EBFAE9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zh_hero_stat_icon i {
  font-size: 28px;
  color: #26901B;
}

.zh_hero_stat_content {
  flex: 1;
}

.zh_hero_stat_number {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #26901B;
  line-height: 1;
  margin-bottom: 8px;
}

.zh_hero_stat_label {
  font-size: 16px;
  color: #535362;
  margin: 0;
}

/* 服务展示区样式 */
.zh_services_section {
  padding: 80px 0;
  position: relative;
}

.zh_services_clean {
  background: #fff;
}

.zh_services_moving {
  background: #175510;
}

.zh_services_moving .zh_section_title,
.zh_services_moving .zh_section_subtitle {
  color: #fff;
}

.zh_services_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.zh_section_header {
  text-align: center;
  margin-bottom: 60px;
}

.zh_section_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 12px;
  line-height: 1.2;
}

.zh_section_subtitle {
  font-size: 20px;
  color: #535362;
  max-width: 700px;
  margin: 0 auto;
}

.zh_services_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.zh_service_card {
  background: #EBFAE9;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zh_service_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(38, 144, 27, 0.2);
}

.zh_service_image_wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.zh_service_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zh_service_card:hover .zh_service_image {
  transform: scale(1.1);
}

.zh_service_badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #26901B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(38, 144, 27, 0.3);
}

.zh_service_badge i {
  font-size: 22px;
  color: #fff;
}

.zh_service_content {
  padding: 30px;
}

.zh_service_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 12px;
  line-height: 1.2;
}

.zh_service_description {
  font-size: 16px;
  color: #535362;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zh_service_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zh_service_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #26901B;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_service_link:hover {
  gap: 12px;
}

.zh_service_link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.zh_service_link:hover i {
  transform: translateX(5px);
}

.zh_section_more {
  text-align: center;
}

.zh_more_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #26901B;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.zh_more_btn:hover {
  background: #31B923;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

.zh_services_moving .zh_more_btn {
  background: #31B923;
}

.zh_services_moving .zh_more_btn:hover {
  background: #26901B;
}

/* 平台优势样式 */
.zh_features_section {
  padding: 80px 0;
  background: #fff;
}

.zh_features_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.zh_features_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.zh_feature_item {
  text-align: center;
  padding: 40px 20px;
  background: #EBFAE9;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.zh_feature_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(38, 144, 27, 0.15);
}

.zh_feature_icon_wrapper {
  width: 80px;
  height: 80px;
  background: #26901B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.zh_feature_item:hover .zh_feature_icon_wrapper {
  background: #31B923;
  transform: scale(1.1) rotate(10deg);
}

.zh_feature_icon_wrapper i {
  font-size: 36px;
  color: #fff;
}

.zh_feature_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 12px;
}

.zh_feature_text {
  font-size: 16px;
  color: #535362;
  line-height: 1.6;
  margin: 0;
}

/* 数据统计样式 */
.zh_statistics_section {
  position: relative;
  padding: 80px 0;
  background: #175510;
  overflow: hidden;
}

.zh_statistics_overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.zh_statistics_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.zh_statistics_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.zh_stat_box {
  text-align: center;
  padding: 40px 20px;
}

.zh_stat_number {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.zh_stat_label {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* CTA 行动号召样式 */
.zh_cta_section {
  padding: 100px 0;
  background: linear-gradient(135deg, #EBFAE9 0%, #fff 100%);
}

.zh_cta_container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.zh_cta_content {
  text-align: center;
  background: #fff;
  padding: 80px 60px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(38, 144, 27, 0.1);
}

.zh_cta_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 20px;
  line-height: 1.2;
}

.zh_cta_description {
  font-size: 24px;
  color: #535362;
  margin-bottom: 40px;
}

.zh_cta_actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.zh_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.zh_cta_btn_primary {
  background: #26901B;
  color: #fff;
}

.zh_cta_btn_primary:hover {
  background: #31B923;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

.zh_cta_btn_outline {
  background: transparent;
  color: #26901B;
  border-color: #26901B;
}

.zh_cta_btn_outline:hover {
  background: #26901B;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_hero_title {
    font-size: 48px;
  }
  
  .zh_section_title {
    font-size: 48px;
  }
  
  .zh_services_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .zh_features_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .zh_hero_section {
    min-height: auto;
  }
  
  .zh_hero_container {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }
  
  .zh_hero_content {
    max-width: 100%;
  }
  
  .zh_hero_title {
    font-size: 36px;
  }
  
  .zh_hero_description {
    font-size: 18px;
  }
  
  .zh_hero_actions {
    flex-direction: column;
  }
  
  .zh_hero_btn {
    width: 100%;
    justify-content: center;
  }
  
  .zh_hero_stat_card {
    width: 100%;
  }
  
  .zh_section_title {
    font-size: 36px;
  }
  
  .zh_section_subtitle {
    font-size: 18px;
  }
  
  .zh_services_section {
    padding: 60px 0;
  }
  
  .zh_services_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .zh_features_section {
    padding: 60px 0;
  }
  
  .zh_features_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .zh_statistics_section {
    padding: 60px 0;
  }
  
  .zh_statistics_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .zh_stat_number {
    font-size: 42px;
  }
  
  .zh_cta_section {
    padding: 60px 0;
  }
  
  .zh_cta_content {
    padding: 50px 30px;
  }
  
  .zh_cta_title {
    font-size: 36px;
  }
  
  .zh_cta_description {
    font-size: 18px;
  }
  
  .zh_cta_actions {
    flex-direction: column;
  }
  
  .zh_cta_btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .zh_hero_title {
    font-size: 28px;
  }
  
  .zh_hero_description {
    font-size: 16px;
  }
  
  .zh_section_title {
    font-size: 28px;
  }
  
  .zh_section_subtitle {
    font-size: 16px;
  }
  
  .zh_service_title {
    font-size: 24px;
  }
  
  .zh_feature_title {
    font-size: 20px;
  }
  
  .zh_stat_number {
    font-size: 36px;
  }
  
  .zh_cta_title {
    font-size: 28px;
  }
  
  .zh_cta_description {
    font-size: 16px;
  }
  
  .zh_statistics_grid {
    grid-template-columns: 1fr;
  }
}
