/* ===================================
   单页样式 - 深色豪华主题
   房源信息发布平台 - 通用样式
   =================================== */
@charset "UTF-8";

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===================================
   Page Header
   =================================== */
.zh_page_header {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  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-1497366216548-37526070297c?w=1920&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.zh_page_header_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
}

.zh_page_header_content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.zh_page_badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 25px;
}

.zh_page_title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zh_page_subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================================
   Breadcrumb
   =================================== */
.zh_breadcrumb {
  background: #1a1a1a;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zh_breadcrumb_container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.zh_breadcrumb_container i {
  font-size: 12px;
  color: rgba(212, 175, 55, 0.6);
}

.zh_breadcrumb_container a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_breadcrumb_container a:hover {
  color: #d4af37;
}

.zh_breadcrumb_container span {
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Page Section
   =================================== */
.zh_page_section {
  background: #0f0f0f;
  padding: 80px 0;
}

.zh_page_content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Content Card */
.zh_content_card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 50px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.zh_content_card:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.zh_content_card h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
}

.zh_content_card h2 i {
  color: #d4af37;
  font-size: 28px;
}

.zh_content_card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 35px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.zh_content_card h3 i {
  color: #d4af37;
  font-size: 20px;
}

.zh_content_card p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.zh_content_card ul,
.zh_content_card ol {
  margin-left: 30px;
  margin-bottom: 25px;
}

.zh_content_card li {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.zh_content_card li::marker {
  color: #d4af37;
}

.zh_content_card strong {
  color: #d4af37;
  font-weight: 600;
}

/* Info Box */
.zh_info_box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}

.zh_info_box_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 15px;
}

.zh_info_box_title i {
  font-size: 20px;
}

.zh_info_box p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.zh_info_box p:last-child {
  margin-bottom: 0;
}

/* Warning Box */
.zh_warning_box {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}

.zh_warning_box_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 15px;
}

.zh_warning_box_title i {
  font-size: 20px;
}

.zh_warning_box p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

/* Success Box */
.zh_success_box {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}

.zh_success_box_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 15px;
}

.zh_success_box_title i {
  font-size: 20px;
}

.zh_success_box p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

/* Feature Grid */
.zh_feature_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.zh_feature_item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}

.zh_feature_item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.zh_feature_item_icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.zh_feature_item_icon i {
  color: #d4af37;
  font-size: 24px;
}

.zh_feature_item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.zh_feature_item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* CTA Section */
.zh_cta_section {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  margin-top: 50px;
}

.zh_cta_section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.zh_cta_section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zh_cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.zh_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.zh_btn_primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #0f0f0f;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.zh_btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.zh_btn_secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zh_btn_secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_page_header {
    padding: 140px 0 80px;
  }

  .zh_page_title {
    font-size: 42px;
  }

  .zh_page_subtitle {
    font-size: 16px;
  }

  .zh_page_section {
    padding: 60px 0;
  }

  .zh_content_card {
    padding: 30px 25px;
  }

  .zh_content_card h2 {
    font-size: 26px;
  }

  .zh_content_card h3 {
    font-size: 20px;
  }

  .zh_feature_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zh_cta_section {
    padding: 35px 25px;
  }

  .zh_cta_section h3 {
    font-size: 26px;
  }

  .zh_cta_buttons {
    flex-direction: column;
  }

  .zh_btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .zh_page_title {
    font-size: 32px;
  }

  .zh_content_card {
    padding: 25px 20px;
  }

  .zh_content_card h2 {
    font-size: 22px;
  }

  .zh_content_card h3 {
    font-size: 18px;
  }
}