/* 汽车救援平台 - 服务商入驻页面样式 */
/* 文件编码：UTF-8 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

/* ========== Hero 主视觉区 ========== */
.zh_page_hero {
  position: relative;
  background: #f2e5de;
  padding: 100px 0 80px;
  overflow: hidden;
}

.zh_page_hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 16, 17, 0.03));
  pointer-events: none;
}

.zh_page_hero_container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 96px;
}

.zh_page_hero_content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.zh_page_hero_label {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #d41011;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.zh_page_hero_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.zh_page_hero_subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* 面包屑导航 */
.zh_page_breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.zh_page_breadcrumb_link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.zh_page_breadcrumb_link:hover {
  color: #d41011;
}

.zh_page_breadcrumb .fa-chevron-right {
  font-size: 10px;
  color: #999;
}

.zh_page_breadcrumb_current {
  color: #d41011;
  font-weight: 600;
}

/* ========== 主内容区 ========== */
.zh_page_main {
  padding: 100px 0;
  background: #fff;
}

.zh_page_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ========== 优势介绍区域 ========== */
.zh_merchant_intro {
  margin-bottom: 60px;
}

.zh_merchant_intro_content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.zh_merchant_intro_icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d41011 0%, #a30d0e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 20px rgba(212, 16, 17, 0.3);
}

.zh_merchant_intro_icon i {
  font-size: 42px;
  color: #fff;
}

.zh_merchant_intro_title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.zh_merchant_intro_text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* 优势卡片网格 */
.zh_merchant_benefits_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.zh_benefit_card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
}

.zh_benefit_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 16, 17, 0.2);
}

.zh_benefit_card_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d41011 0%, #a30d0e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(212, 16, 17, 0.3);
}

.zh_benefit_card_icon i {
  font-size: 32px;
  color: #fff;
}

.zh_benefit_card_title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.zh_benefit_card_text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ========== 表单区域 ========== */
.zh_merchant_form_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.zh_merchant_form {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_form_title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

/* 表单分组 */
.zh_form_section {
  margin-bottom: 35px;
}

.zh_form_section_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.zh_form_section_title i {
  color: #d41011;
  font-size: 20px;
}

/* 表单网格 */
.zh_form_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.zh_form_field {
  display: flex;
  flex-direction: column;
}

.zh_form_field_full {
  grid-column: 1 / -1;
}

.zh_form_label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.zh_form_input,
.zh_form_textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
}

.zh_form_input:focus,
.zh_form_textarea:focus {
  border-color: #d41011;
  box-shadow: 0 0 0 3px rgba(212, 16, 17, 0.1);
}

.zh_form_input::placeholder,
.zh_form_textarea::placeholder {
  color: #999;
}

.zh_form_textarea {
  resize: vertical;
  min-height: 120px;
}

.zh_form_error {
  display: none;
  font-size: 13px;
  color: #d41011;
  margin-top: 6px;
}

/* 文件上传 */
.zh_form_upload {
  position: relative;
}

.zh_form_file {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.zh_upload_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #f2e5de;
  border: 2px dashed #d41011;
  border-radius: 12px;
  color: #d41011;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zh_upload_btn:hover {
  background: #d41011;
  color: #fff;
  border-color: #d41011;
}

.zh_upload_btn i {
  font-size: 18px;
}

.zh_upload_text {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

/* 协议复选框 */
.zh_form_agreement {
  margin: 35px 0;
  padding: 25px;
  background: #fafafa;
  border-radius: 12px;
}

.zh_form_checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.zh_form_checkbox input[type="checkbox"] {
  display: none;
}

.zh_checkbox_mark {
  width: 20px;
  height: 20px;
  border: 2px solid #d41011;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.zh_form_checkbox input[type="checkbox"]:checked + .zh_checkbox_mark {
  background: #d41011;
  border-color: #d41011;
}

.zh_form_checkbox input[type="checkbox"]:checked + .zh_checkbox_mark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.zh_checkbox_text {
  flex: 1;
  line-height: 1.6;
}

.zh_agreement_link {
  color: #d41011;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.zh_agreement_link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* 表单按钮 */
.zh_form_buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.zh_btn_submit,
.zh_btn_reset {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zh_btn_submit {
  background: #d41011;
  color: #fff;
  box-shadow: 0 4px 15px rgba(212, 16, 17, 0.3);
}

.zh_btn_submit:hover {
  background: #a30d0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 16, 17, 0.4);
}

.zh_btn_submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.zh_btn_reset {
  background: #fff;
  color: #d41011;
  border: 2px solid #d41011;
}

.zh_btn_reset:hover {
  background: #f2e5de;
}

/* 成功提示 */
.zh_form_success {
  text-align: center;
  padding: 60px 40px;
}

.zh_success_icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d41011 0%, #a30d0e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 20px rgba(212, 16, 17, 0.3);
}

.zh_success_icon i {
  font-size: 48px;
  color: #fff;
}

.zh_success_title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.zh_success_message {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.zh_success_btn {
  display: inline-block;
  background: #d41011;
  color: #fff;
  padding: 14px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 16, 17, 0.3);
}

.zh_success_btn:hover {
  background: #a30d0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 16, 17, 0.4);
}

/* ========== 响应式设计 ========== */
@media (max-width: 1400px) {
  .zh_page_hero_container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1200px) {
  .zh_page_hero_title {
    font-size: 40px;
  }

  .zh_merchant_benefits_grid {
    gap: 25px;
  }

  .zh_merchant_form {
    padding: 40px 30px;
  }
}

@media (max-width: 992px) {
  .zh_page_hero {
    padding: 80px 0 60px;
  }

  .zh_page_main {
    padding: 80px 0;
  }

  .zh_merchant_intro_title {
    font-size: 32px;
  }

  .zh_merchant_benefits_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .zh_page_hero {
    padding: 60px 0 40px;
  }

  .zh_page_hero_container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .zh_page_hero_title {
    font-size: 32px;
  }

  .zh_page_hero_subtitle {
    font-size: 16px;
  }

  .zh_page_main {
    padding: 60px 0;
  }

  .zh_merchant_intro {
    margin-bottom: 40px;
  }

  .zh_merchant_intro_icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .zh_merchant_intro_icon i {
    font-size: 36px;
  }

  .zh_merchant_intro_title {
    font-size: 28px;
  }

  .zh_merchant_benefits_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zh_merchant_form {
    padding: 35px 25px;
  }

  .zh_form_grid {
    grid-template-columns: 1fr;
  }

  .zh_form_buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .zh_page_hero_title {
    font-size: 28px;
  }

  .zh_page_breadcrumb {
    font-size: 12px;
    padding: 8px 16px;
  }

  .zh_merchant_intro_content {
    margin-bottom: 30px;
  }

  .zh_merchant_intro_icon {
    width: 70px;
    height: 70px;
  }

  .zh_merchant_intro_icon i {
    font-size: 32px;
  }

  .zh_merchant_intro_title {
    font-size: 24px;
  }

  .zh_benefit_card {
    padding: 30px 20px;
  }

  .zh_benefit_card_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .zh_benefit_card_icon i {
    font-size: 28px;
  }

  .zh_merchant_form {
    padding: 30px 20px;
  }

  .zh_form_title {
    font-size: 24px;
  }

  .zh_form_section_title {
    font-size: 18px;
  }
}
