/* 汽车救援平台 - 联系我们页面样式 */
/* 文件编码：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_contact_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* 左侧联系方式区域 */
.zh_contact_left {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_contact_left_header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.zh_contact_left_title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.zh_contact_left_subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* 联系方式列表 */
.zh_contact_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.zh_contact_item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: #fafafa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.zh_contact_item:hover {
  background: #f2e5de;
  transform: translateX(5px);
}

.zh_contact_item_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d41011 0%, #a30d0e 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(212, 16, 17, 0.25);
}

.zh_contact_item_icon i {
  font-size: 24px;
  color: #fff;
}

.zh_contact_item_content {
  flex: 1;
}

.zh_contact_item_title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.zh_contact_item_value {
  font-size: 18px;
  font-weight: 600;
  color: #d41011;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
  word-break: break-all;
}

.zh_contact_item_value:hover {
  opacity: 0.8;
}

.zh_contact_item_desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 右侧信息区域 */
.zh_contact_right {
  position: sticky;
  top: 120px;
}

.zh_contact_info_card {
  background: linear-gradient(135deg, #f2e5de 0%, #fef5f1 100%);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.zh_contact_info_card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(212, 16, 17, 0.1) 0%, transparent 100%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
}

.zh_contact_info_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d41011 0%, #a30d0e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(212, 16, 17, 0.3);
}

.zh_contact_info_icon i {
  font-size: 36px;
  color: #fff;
}

.zh_contact_info_title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.zh_contact_info_content {
  position: relative;
  z-index: 1;
}

.zh_contact_info_content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.zh_contact_info_content p:last-child {
  margin-bottom: 0;
}

.zh_contact_info_highlight {
  font-size: 16px;
  color: #d41011;
  font-weight: 600;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid #d41011;
  margin-top: 20px !important;
}

/* ========== 响应式设计 ========== */
@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_contact_layout {
    gap: 40px;
  }

  .zh_contact_left,
  .zh_contact_info_card {
    padding: 40px 30px;
  }
}

@media (max-width: 992px) {
  .zh_page_hero {
    padding: 80px 0 60px;
  }

  .zh_page_main {
    padding: 80px 0;
  }

  .zh_contact_layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zh_contact_right {
    position: static;
  }
}

@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_contact_left,
  .zh_contact_info_card {
    padding: 35px 25px;
  }

  .zh_contact_left_title {
    font-size: 28px;
  }

  .zh_contact_info_title {
    font-size: 24px;
  }

  .zh_contact_item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .zh_page_hero_title {
    font-size: 28px;
  }

  .zh_page_breadcrumb {
    font-size: 12px;
    padding: 8px 16px;
  }

  .zh_contact_left,
  .zh_contact_info_card {
    padding: 30px 20px;
  }

  .zh_contact_left_title {
    font-size: 24px;
  }

  .zh_contact_left_subtitle {
    font-size: 14px;
  }

  .zh_contact_item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .zh_contact_item_icon {
    margin: 0 auto;
  }

  .zh_contact_info_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .zh_contact_info_icon i {
    font-size: 28px;
  }

  .zh_contact_info_title {
    font-size: 22px;
  }

  .zh_contact_info_content p {
    font-size: 15px;
  }
}
