/* 服务商入驻页样式 - 基于首页设计风格 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', 'Microsoft YaHei', sans-serif;
  color: #1D1D39;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.zh_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 页面头部 - Hero区域 */
.zh_page_header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EBFAE9 0%, #fff 100%);
  overflow: hidden;
  margin-top: 80px;
}

.zh_page_header::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_page_header_content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.zh_page_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #1D1D39;
  line-height: 1.2;
  margin-bottom: 20px;
}

.zh_page_subtitle {
  font-size: 20px;
  color: #535362;
  line-height: 1.6;
}

/* 面包屑导航 */
.zh_breadcrumb {
  background: #EBFAE9;
  padding: 20px 0;
  border-bottom: 1px solid rgba(38, 144, 27, 0.1);
}

.zh_breadcrumb_container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zh_breadcrumb_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.zh_breadcrumb_text {
  font-size: 14px;
  color: #535362;
}

.zh_breadcrumb_text a {
  color: #26901B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_breadcrumb_text a:hover {
  color: #31B923;
}

.zh_breadcrumb_text span {
  color: #1D1D39;
  font-weight: 600;
}

/* 优势展示区 */
.zh_benefits_section {
  padding: 80px 0;
  background: #fff;
}

.zh_benefits_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.zh_benefit_card {
  background: #EBFAE9;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(38, 144, 27, 0.1);
}

.zh_benefit_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(38, 144, 27, 0.2);
}

.zh_benefit_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #26901B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.zh_benefit_card:hover .zh_benefit_icon {
  background: #31B923;
  transform: scale(1.1) rotate(10deg);
}

.zh_benefit_icon i {
  font-size: 36px;
  color: #fff;
}

.zh_benefit_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 15px;
}

.zh_benefit_desc {
  font-size: 16px;
  color: #535362;
  line-height: 1.6;
}

/* 主内容区 - 垂直布局 */
.zh_merchant_section {
  padding: 80px 0;
  background: linear-gradient(135deg, #EBFAE9 0%, #fff 100%);
}

.zh_merchant_content {
  max-width: 900px;
  margin: 0 auto;
}

/* 表单标题区 */
.zh_form_header {
  text-align: center;
  margin-bottom: 50px;
}

.zh_form_header_icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: #26901B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

.zh_form_header_icon i {
  font-size: 48px;
  color: #fff;
}

.zh_form_header_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 15px;
}

.zh_form_header_desc {
  font-size: 18px;
  color: #535362;
  line-height: 1.6;
}

/* 表单容器 */
.zh_form_container {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(38, 144, 27, 0.1);
}

/* 表单区域 */
.zh_form_section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(38, 144, 27, 0.1);
}

.zh_form_section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.zh_form_section_title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 25px;
}

.zh_form_section_title i {
  color: #26901B;
  font-size: 22px;
}

.zh_form_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.zh_form_field {
  display: flex;
  flex-direction: column;
}

.zh_form_field_full {
  grid-column: 1 / -1;
}

.zh_form_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1D1D39;
  margin-bottom: 10px;
}

.zh_form_label i {
  color: #26901B;
}

.zh_form_input,
.zh_form_textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(38, 144, 27, 0.2);
  border-radius: 10px;
  font-size: 15px;
  color: #1D1D39;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.zh_form_input:focus,
.zh_form_textarea:focus {
  outline: none;
  border-color: #26901B;
  box-shadow: 0 0 0 3px rgba(38, 144, 27, 0.1);
}

.zh_form_input.error,
.zh_form_textarea.error {
  border-color: #e74c3c;
}

.zh_form_textarea {
  resize: vertical;
  min-height: 120px;
}

.zh_form_error {
  display: none;
  font-size: 13px;
  color: #e74c3c;
  margin-top: 6px;
}

/* 文件上传 */
.zh_form_upload {
  border: 2px dashed rgba(38, 144, 27, 0.3);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  background: #EBFAE9;
}

.zh_form_upload:hover {
  border-color: #26901B;
  background: rgba(38, 144, 27, 0.05);
}

.zh_form_file {
  display: none;
}

.zh_upload_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #26901B;
  color: #fff;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.zh_upload_btn:hover {
  background: #31B923;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(38, 144, 27, 0.3);
}

.zh_upload_text {
  font-size: 14px;
  color: #535362;
}

/* 同意条款 */
.zh_form_agreement {
  margin: 40px 0;
  padding: 25px;
  background: #EBFAE9;
  border-radius: 10px;
}

.zh_form_checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #535362;
}

.zh_form_checkbox input[type="checkbox"] {
  display: none;
}

.zh_checkbox_mark {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(38, 144, 27, 0.3);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.zh_form_checkbox input[type="checkbox"]:checked + .zh_checkbox_mark {
  background: #26901B;
  border-color: #26901B;
}

.zh_form_checkbox input[type="checkbox"]:checked + .zh_checkbox_mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.zh_checkbox_text {
  flex: 1;
  line-height: 1.6;
}

.zh_agreement_link {
  color: #26901B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.zh_agreement_link:hover {
  color: #31B923;
  text-decoration: underline;
}

/* 表单按钮 */
.zh_form_buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.zh_btn_submit,
.zh_btn_reset {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zh_btn_submit {
  background: #26901B;
  color: #fff;
  box-shadow: 0 5px 15px rgba(38, 144, 27, 0.3);
}

.zh_btn_submit:hover {
  background: #31B923;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

.zh_btn_reset {
  background: #fff;
  color: #26901B;
  border: 2px solid #26901B;
}

.zh_btn_reset:hover {
  background: #EBFAE9;
}

/* 成功提示 */
.zh_form_success {
  text-align: center;
  padding: 60px 40px;
}

.zh_success_icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: #26901B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

.zh_success_icon i {
  font-size: 50px;
  color: #fff;
}

.zh_success_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1D1D39;
  margin-bottom: 20px;
}

.zh_success_message {
  font-size: 16px;
  color: #535362;
  line-height: 1.8;
  margin-bottom: 40px;
}

.zh_success_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #26901B;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.zh_success_btn:hover {
  background: #31B923;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 144, 27, 0.3);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_benefits_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .zh_page_title {
    font-size: 42px;
  }
  
  .zh_form_grid {
    grid-template-columns: 1fr;
  }
  
  .zh_benefits_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }
  
  .zh_page_header {
    margin-top: 70px;
    min-height: 300px;
  }
  
  .zh_page_header_content {
    padding: 60px 20px;
  }
  
  .zh_page_title {
    font-size: 32px;
  }
  
  .zh_page_subtitle {
    font-size: 18px;
  }
  
  .zh_breadcrumb {
    padding: 15px 0;
  }
  
  .zh_benefits_section {
    padding: 60px 0;
  }
  
  .zh_merchant_section {
    padding: 60px 0;
  }
  
  .zh_form_container {
    padding: 30px;
  }
  
  .zh_form_header_title {
    font-size: 28px;
  }
  
  .zh_form_section_title {
    font-size: 20px;
  }
  
  .zh_form_buttons {
    flex-direction: column;
  }
}
