/* 单页面通用样式 - 基于首页Figma设计风格 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #1b1b1b;
  background: #f8f8f8;
  overflow-x: hidden;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 页面头部Banner */
.zh_page_header {
  background: linear-gradient(135deg, #1b1b1b 0%, #3d3d3d 100%);
  padding: 100px 0 60px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.zh_page_header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.zh_page_header_content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.zh_page_title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.zh_page_subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

/* 面包屑导航 */
.zh_breadcrumb {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.zh_breadcrumb_inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.zh_breadcrumb_inner i {
  color: #e60000;
}

.zh_breadcrumb_inner a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.zh_breadcrumb_inner a:hover {
  color: #e60000;
}

.zh_breadcrumb_inner span {
  color: #1b1b1b;
  font-weight: 500;
}

/* 内容区域 - 通用 */
.zh_content_section {
  padding: 80px 0;
}

.zh_content_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.zh_content_box {
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zh_content_box h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1b1b1b;
  margin: 40px 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #e60000;
  display: inline-block;
}

.zh_content_box h2:first-child {
  margin-top: 0;
}

.zh_content_box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1b1b1b;
  margin: 30px 0 15px 0;
}

.zh_content_box p {
  font-size: 15px;
  line-height: 1.8;
  color: #505050;
  margin-bottom: 20px;
}

.zh_content_box ul, .zh_content_box ol {
  font-size: 15px;
  line-height: 1.8;
  color: #505050;
  margin: 20px 0;
  padding-left: 30px;
}

.zh_content_box li {
  margin-bottom: 10px;
}

.zh_content_box strong {
  color: #e60000;
  font-weight: 600;
}

/* 联系我们页面 */
.zh_contact_section {
  padding: 80px 0;
}

.zh_contact_intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.zh_contact_intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #505050;
  margin-bottom: 15px;
}

.zh_contact_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.zh_contact_card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zh_contact_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 0, 0, 0.15);
}

.zh_contact_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e60000 0%, #ff4d4d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.zh_contact_icon i {
  font-size: 32px;
  color: #fff;
}

.zh_contact_title {
  font-size: 20px;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 15px;
}

.zh_contact_info {
  font-size: 18px;
  font-weight: 600;
  color: #e60000;
  margin-bottom: 10px;
}

.zh_contact_desc {
  font-size: 14px;
  color: #999;
}

.zh_contact_note {
  max-width: 900px;
  margin: 0 auto;
}

.zh_note_content {
  background: rgba(230, 0, 0, 0.05);
  border-left: 4px solid #e60000;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
}

.zh_note_content i {
  font-size: 24px;
  color: #e60000;
  flex-shrink: 0;
  margin-top: 3px;
}

.zh_note_content p {
  font-size: 15px;
  line-height: 1.8;
  color: #505050;
  margin-bottom: 10px;
}

.zh_note_content p:last-child {
  margin-bottom: 0;
}

/* 商家入驻页面 */
.zh_merchant_section {
  padding: 80px 0;
}

.zh_merchant_wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
}

.zh_merchant_info {
  background: linear-gradient(135deg, #1b1b1b 0%, #3d3d3d 100%);
  border-radius: 30px;
  padding: 50px 40px;
  color: #fff;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.zh_merchant_icon {
  width: 80px;
  height: 80px;
  background: rgba(230, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.zh_merchant_icon i {
  font-size: 36px;
  color: #e60000;
}

.zh_merchant_title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.zh_merchant_divider {
  width: 60px;
  height: 4px;
  background: #e60000;
  margin-bottom: 25px;
}

.zh_merchant_text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.zh_merchant_benefits {
  margin-top: 30px;
}

.zh_benefit_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zh_benefit_item:last-child {
  border-bottom: none;
}

.zh_benefit_item i {
  color: #e60000;
  font-size: 16px;
}

.zh_benefit_item span {
  font-size: 15px;
}

/* 表单区域 */
.zh_merchant_form {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zh_form_title {
  font-size: 28px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 30px;
  text-align: center;
}

/* 选项卡 */
.zh_tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.zh_tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: #f8f8f8;
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 600;
  color: #666;
}

.zh_tab:hover {
  background: rgba(230, 0, 0, 0.05);
  border-color: rgba(230, 0, 0, 0.2);
}

.zh_tab.active {
  background: linear-gradient(135deg, #e60000 0%, #ff4d4d 100%);
  border-color: #e60000;
  color: #fff;
}

.zh_tab i {
  font-size: 18px;
}

/* 表单分组 */
.zh_form_section {
  margin-bottom: 35px;
}

.zh_form_section_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f5f5f5;
}

.zh_form_section_title i {
  font-size: 16px;
  color: #e60000;
}

.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: 14px;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.zh_form_input,
.zh_form_textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 14px;
  color: #1b1b1b;
  transition: all 0.3s;
  font-family: inherit;
}

.zh_form_input:focus,
.zh_form_textarea:focus {
  outline: none;
  border-color: #e60000;
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
}

.zh_form_input.error {
  border-color: #ff4444;
}

.zh_form_textarea {
  min-height: 120px;
  resize: vertical;
}

.zh_form_error {
  display: none;
  font-size: 12px;
  color: #ff4444;
  margin-top: 5px;
}

/* 文件上传 */
.zh_form_upload {
  border: 2px dashed #e8e8e8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.zh_form_upload:hover {
  border-color: #e60000;
  background: rgba(230, 0, 0, 0.02);
}

.zh_form_file {
  display: none;
}

.zh_upload_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #f8f8f8;
  border-radius: 24px;
  color: #666;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 10px;
}

.zh_upload_btn:hover {
  background: #e60000;
  color: #fff;
}

.zh_upload_btn i {
  font-size: 18px;
}

.zh_upload_text {
  font-size: 13px;
  color: #999;
}

/* 表单按钮 */
.zh_form_buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.zh_btn_submit,
.zh_btn_reset {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.zh_btn_submit {
  background: linear-gradient(135deg, #e60000 0%, #ff4d4d 100%);
  color: #fff;
}

.zh_btn_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.3);
}

.zh_btn_reset {
  background: #f8f8f8;
  color: #666;
}

.zh_btn_reset:hover {
  background: #e8e8e8;
  color: #1b1b1b;
}

/* 提交成功提示 */
.zh_form_success {
  text-align: center;
  padding: 80px 40px;
}

.zh_success_icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.zh_success_icon i {
  font-size: 50px;
  color: #fff;
}

.zh_success_title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 15px;
}

.zh_success_message {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.zh_success_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e60000 0%, #ff4d4d 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.zh_success_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .zh_merchant_wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zh_merchant_info {
    position: static;
  }

  .zh_contact_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_page_header {
    padding: 60px 0 40px;
  }

  .zh_page_title {
    font-size: 32px;
  }

  .zh_page_subtitle {
    font-size: 16px;
  }

  .zh_content_section {
    padding: 50px 0;
  }

  .zh_content_box {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .zh_merchant_form {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .zh_form_grid {
    grid-template-columns: 1fr;
  }

  .zh_form_buttons {
    flex-direction: column;
  }

  .zh_tabs {
    flex-direction: column;
  }
}
