/* 服务商入驻页面样式 */
:root {
  --zh-primary: #00f2ff;
  --zh-secondary: #7000ff;
  --zh-dark-bg: #030508;
  --zh-card-bg: rgba(255, 255, 255, 0.03);
  --zh-card-border: rgba(255, 255, 255, 0.05);
  --zh-input-bg: rgba(255, 255, 255, 0.05);
  --zh-text-main: #ffffff;
  --zh-text-muted: #8b9bb4;
  --zh-gradient: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
}

/* 页面头部 */
.zh_page_header {
  padding: 180px 0 80px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 242, 255, 0.1), transparent 70%);
  text-align: center;
}

.zh_page_title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  background: linear-gradient(to right, #fff, #00f2ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zh_page_subtitle {
  font-size: 18px;
  color: var(--zh-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* 主体区域 */
.zh_merchant_section {
  padding-bottom: 100px;
}

.zh_merchant_wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

/* 左侧信息栏 */
.zh_merchant_info {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--zh-card-border);
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 100px;
}

.zh_merchant_icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--zh-primary);
  margin-bottom: 30px;
}

.zh_merchant_title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.zh_merchant_divider {
  width: 40px;
  height: 4px;
  background: var(--zh-gradient);
  margin-bottom: 30px;
  border-radius: 2px;
}

.zh_merchant_text {
  color: var(--zh-text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.zh_merchant_benefits {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zh_benefit_item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-weight: 500;
}

.zh_benefit_item i {
  color: var(--zh-primary);
}

/* 右侧表单 */
.zh_merchant_form {
  background: var(--zh-card-bg);
  border: 1px solid var(--zh-card-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.zh_form_title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

/* 选项卡 */
.zh_tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 12px;
}

.zh_tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  cursor: pointer;
  border-radius: 8px;
  color: var(--zh-text-muted);
  transition: all 0.3s ease;
}

.zh_tab.active {
  background: var(--zh-primary);
  color: #000;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.zh_tab:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* 表单区域 */
.zh_form_section {
  margin-bottom: 40px;
}

.zh_form_section_title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--zh-card-border);
}

.zh_form_section_title i {
  color: var(--zh-primary);
}

.zh_form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.zh_form_field_full {
  grid-column: 1 / -1;
}

.zh_form_label {
  display: block;
  color: var(--zh-text-muted);
  margin-bottom: 10px;
  font-size: 14px;
}

.zh_form_input {
  width: 100%;
  background: var(--zh-input-bg);
  border: 1px solid var(--zh-card-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.zh_form_input:focus {
  outline: none;
  border-color: var(--zh-primary);
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.1);
  background: rgba(0, 242, 255, 0.05);
}

/* 文件上传 */
.zh_form_upload {
  border: 2px dashed var(--zh-card-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.zh_form_upload:hover {
  border-color: var(--zh-primary);
  background: rgba(0, 242, 255, 0.02);
}

.zh_form_file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.zh_upload_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--zh-primary);
  margin-bottom: 10px;
}

.zh_upload_btn i {
  font-size: 32px;
}

.zh_upload_text {
  font-size: 12px;
  color: var(--zh-text-muted);
}

/* 按钮 */
.zh_form_buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.zh_btn_submit,
.zh_btn_reset {
  flex: 1;
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.zh_btn_submit {
  background: var(--zh-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

.zh_btn_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 255, 0.4);
}

.zh_btn_reset {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.zh_btn_reset:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* 错误提示 */
.zh_form_error {
  color: var(--zh-accent);
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.zh_form_input.error {
  border-color: var(--zh-accent);
}

/* 成功提示 */
.zh_form_success {
  text-align: center;
  padding: 60px 20px;
}

.zh_success_icon {
  font-size: 64px;
  color: #00ff88;
  margin-bottom: 20px;
}

.zh_success_title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.zh_success_message {
  color: var(--zh-text-muted);
  margin-bottom: 30px;
}

.zh_success_btn {
  display: inline-block;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.zh_success_btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* 响应式 */
@media (max-width: 992px) {
  .zh_merchant_wrapper {
    grid-template-columns: 1fr;
  }

  .zh_merchant_info {
    position: static;
  }
}

@media (max-width: 576px) {
  .zh_form_grid {
    grid-template-columns: 1fr;
  }

  .zh_page_title {
    font-size: 32px;
  }
}