/* ===================================
   服务商入驻页面样式 - 深色豪华主题
   =================================== */
@charset "UTF-8";

/* ===== 页面头部样式 ===== */
.zh_page_header {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.zh_page_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.zh_page_header_content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.zh_page_title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.zh_page_subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 400;
  line-height: 1.8;
}

/* ===== 面包屑导航 ===== */
.zh_breadcrumb {
  background: #0f0f0f;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zh_breadcrumb_container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_breadcrumb_icon {
  color: #d4af37;
  font-size: 16px;
}

.zh_breadcrumb_text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.zh_breadcrumb_text a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_breadcrumb_text a:hover {
  color: #f4d03f;
}

/* ===== 主内容区 ===== */
.zh_merchant_section {
  padding: 120px 0;
  background: #1a1a1a;
}

.zh_merchant_wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== 左侧信息区 ===== */
.zh_merchant_info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 40px;
  border-radius: 12px;
  color: #ffffff;
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
}

.zh_merchant_info:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
}

.zh_merchant_icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.zh_merchant_info:hover .zh_merchant_icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}

.zh_merchant_icon i {
  font-size: 48px;
  color: #d4af37;
}

.zh_merchant_title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.zh_merchant_divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
  margin: 0 auto 30px;
}

.zh_merchant_text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.zh_merchant_benefits {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zh_benefit_item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.zh_benefit_item:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.zh_benefit_item i {
  color: #d4af37;
  font-size: 18px;
}

/* ===== 右侧表单区 ===== */
.zh_merchant_form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zh_merchant_form:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 175, 55, 0.2);
}

#formContainer {
  padding: 50px;
}

.zh_form_title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: -1px;
}

.zh_form_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, #f4d03f, transparent);
  border-radius: 2px;
}

/* ===== 表单区块 ===== */
.zh_form_section {
  margin-bottom: 40px;
}

.zh_form_section_title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zh_form_section_title i {
  color: #d4af37;
  font-size: 22px;
}

/* ===== 表单网格 ===== */
.zh_form_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.zh_form_field {
  position: relative;
}

.zh_form_field_full {
  grid-column: 1 / -1;
}

.zh_form_label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.zh_form_label::after {
  content: ' *';
  color: #d4af37;
  font-weight: normal;
}

/* ===== 表单输入框 ===== */
.zh_form_input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.zh_form_input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.zh_form_input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== 文件上传 ===== */
.zh_form_upload {
  position: relative;
}

.zh_form_file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.zh_upload_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0f0f0f;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.zh_upload_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.zh_upload_btn i {
  font-size: 18px;
}

.zh_upload_text {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

/* ===== 错误提示 ===== */
.zh_form_error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #d4af37;
}

/* ===== 协议复选框 ===== */
.zh_form_agreement {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.zh_form_checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.zh_form_checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.zh_checkbox_mark {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.zh_form_checkbox input:checked ~ .zh_checkbox_mark {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-color: #d4af37;
}

.zh_form_checkbox input:checked ~ .zh_checkbox_mark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0f0f0f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.zh_checkbox_text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.zh_agreement_link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.zh_agreement_link:hover {
  color: #f4d03f;
  text-decoration: underline;
}

/* ===== 表单按钮 ===== */
.zh_form_buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.zh_btn_submit,
.zh_btn_reset {
  flex: 1;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.zh_btn_submit {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0f0f0f;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.zh_btn_submit:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.zh_btn_submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.zh_btn_reset {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zh_btn_reset:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.zh_btn_submit i,
.zh_btn_reset i {
  font-size: 18px;
}

/* ===== 成功提示 ===== */
.zh_form_success {
  padding: 80px 50px;
  text-align: center;
}

.zh_success_icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
  border: 3px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: successPulse 1s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zh_success_icon i {
  font-size: 50px;
  color: #d4af37;
}

.zh_success_title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.zh_success_message {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.zh_success_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #0f0f0f;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.zh_success_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
  .zh_merchant_wrapper {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }
  
  .zh_merchant_info {
    padding: 40px 30px;
  }
  
  #formContainer {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .zh_merchant_wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .zh_merchant_info {
    position: static;
  }
  
  .zh_form_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .zh_page_header {
    padding: 60px 0;
  }
  
  .zh_page_title {
    font-size: 32px;
  }
  
  .zh_page_subtitle {
    font-size: 16px;
  }
  
  .zh_merchant_section {
    padding: 40px 0;
  }
  
  .zh_merchant_info {
    padding: 30px 25px;
  }
  
  .zh_merchant_title {
    font-size: 26px;
  }
  
  #formContainer {
    padding: 30px 20px;
  }
  
  .zh_form_title {
    font-size: 24px;
  }
  
  .zh_form_buttons {
    flex-direction: column;
  }
  
  .zh_form_success {
    padding: 60px 30px;
  }
}

@media (max-width: 480px) {
  .zh_page_title {
    font-size: 28px;
  }
  
  .zh_merchant_icon {
    width: 60px;
    height: 60px;
  }
  
  .zh_merchant_icon i {
    font-size: 30px;
  }
  
  .zh_merchant_title {
    font-size: 22px;
  }
  
  .zh_form_title {
    font-size: 20px;
  }
  
  .zh_form_section_title {
    font-size: 18px;
  }
  
  .zh_success_icon {
    width: 80px;
    height: 80px;
  }
  
  .zh_success_icon i {
    font-size: 40px;
  }
  
  .zh_success_title {
    font-size: 24px;
  }
}
