/* 汽车救援平台 - 详情页样式 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* 页面头部区 */
.zh_show_hero {
  background: linear-gradient(135deg, #f2e5de 0%, #fef5f1 100%);
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}

.zh_show_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_show_hero_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 面包屑 */
.zh_show_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: 13px;
  margin-bottom: 40px;
}

.zh_show_breadcrumb_link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.zh_show_breadcrumb_link:hover {
  color: #d41011;
}

.zh_show_breadcrumb .fa-chevron-right {
  font-size: 10px;
  color: #999;
}

.zh_show_breadcrumb_current {
  color: #d41011;
  font-weight: 600;
}

/* Hero内容区 */
.zh_show_hero_content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 60px;
  align-items: start;
}

.zh_show_hero_image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.zh_show_hero_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_show_hero_badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d41011;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(212, 16, 17, 0.3);
}

.zh_show_hero_badge i {
  font-size: 12px;
}

.zh_show_hero_info {
  padding-top: 20px;
}

.zh_show_hero_label {
  display: inline-block;
  padding: 6px 16px;
  background: #fff;
  color: #d41011;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.zh_show_hero_title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.zh_show_hero_meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.zh_show_hero_meta_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #666;
}

.zh_show_hero_meta_item i {
  color: #d41011;
  font-size: 14px;
  width: 18px;
}

/* 快速联系卡片 */
.zh_show_quick_contact {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f2e5de;
}

.zh_show_quick_contact_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  color: #d41011;
  font-size: 16px;
  font-weight: 600;
}

.zh_show_quick_contact_header i {
  font-size: 18px;
}

.zh_show_quick_contact_body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.zh_show_quick_contact_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.zh_show_quick_contact_label {
  font-size: 14px;
  color: #666;
}

.zh_show_quick_contact_value {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.zh_show_quick_contact_value:hover {
  color: #d41011;
}

.zh_show_quick_contact_value i {
  color: #d41011;
  font-size: 14px;
}

/* 主内容区 */
.zh_show_main {
  padding: 60px 0;
  background: #fafafa;
}

.zh_show_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.zh_show_layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
}

/* 内容卡片 */
.zh_show_card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.zh_show_card_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.zh_show_card_header i {
  font-size: 22px;
  color: #d41011;
}

.zh_show_card_title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.zh_show_card_body {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.zh_show_description {
  word-wrap: break-word;
}

.zh_show_description p {
  margin-bottom: 15px;
}

.zh_show_description img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 20px 0;
}

/* 缩略图展示 */
.zh_show_thumb_image {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
  text-align: center;
}

.zh_show_thumb_image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.zh_show_thumb_image img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 16, 17, 0.15);
}

/* 服务商信息 */
.zh_show_provider_info {
  /* 样式已在卡片中定义 */
}

.zh_show_provider_header {
  margin-bottom: 25px;
}

.zh_show_provider_name {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.zh_show_provider_name a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_show_provider_name a:hover {
  color: #d41011;
}

.zh_show_provider_details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.zh_show_provider_detail_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zh_show_provider_detail_full {
  grid-column: 1 / -1;
}

.zh_show_provider_detail_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #999;
}

.zh_show_provider_detail_label i {
  color: #d41011;
  font-size: 13px;
}

.zh_show_provider_detail_value {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.zh_show_provider_detail_value a {
  color: #d41011;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.zh_show_provider_detail_value a:hover {
  opacity: 0.8;
}

.zh_show_provider_actions {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.zh_show_provider_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #d41011;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.zh_show_provider_btn:hover {
  background: #a30d0e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 16, 17, 0.3);
}

/* 相关服务 */
.zh_show_related {
  margin-top: 30px;
}

.zh_show_related_header {
  margin-bottom: 30px;
}

.zh_show_related_title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  position: relative;
  padding-bottom: 15px;
}

.zh_show_related_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #d41011;
  border-radius: 2px;
}

.zh_show_related_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.zh_show_related_card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.zh_show_related_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 16, 17, 0.15);
}

.zh_show_related_image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.zh_show_related_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.zh_show_related_card:hover .zh_show_related_image img {
  transform: scale(1.05);
}

.zh_show_related_content {
  padding: 20px;
}

.zh_show_related_card_title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.zh_show_related_card_title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_show_related_card_title a:hover {
  color: #d41011;
}

.zh_show_related_location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.zh_show_related_location i {
  color: #d41011;
  font-size: 12px;
}

.zh_show_related_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d41011;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.zh_show_related_link:hover {
  gap: 10px;
}

.zh_show_related_link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.zh_show_related_link:hover i {
  transform: translateX(3px);
}

/* 右侧边栏 */
.zh_show_sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* 侧边栏 CTA */
.zh_sidebar_cta {
  background: linear-gradient(135deg, #d41011 0%, #a30d0e 100%);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(212, 16, 17, 0.3);
  margin-bottom: 30px;
}

.zh_sidebar_cta_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  backdrop-filter: blur(10px);
}

.zh_sidebar_cta_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.zh_sidebar_cta_text {
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.zh_sidebar_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #d41011;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.zh_sidebar_cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 侧边栏小部件 */
.zh_sidebar_widget {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.zh_sidebar_widget_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.zh_sidebar_widget_header i {
  font-size: 20px;
  color: #d41011;
}

.zh_sidebar_widget_title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* 侧边栏列表 */
.zh_sidebar_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_sidebar_list_item {
  margin-bottom: 15px;
}

.zh_sidebar_list_item:last-child {
  margin-bottom: 0;
}

.zh_sidebar_list_link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.zh_sidebar_list_link:hover {
  color: #d41011;
  transform: translateX(5px);
}

.zh_sidebar_list_index {
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2e5de;
  color: #d41011;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}

.zh_sidebar_list_item:nth-child(1) .zh_sidebar_list_index {
  background: #d41011;
  color: #fff;
}

.zh_sidebar_list_item:nth-child(2) .zh_sidebar_list_index {
  background: #ff6b6b;
  color: #fff;
}

.zh_sidebar_list_item:nth-child(3) .zh_sidebar_list_index {
  background: #ffa07a;
  color: #fff;
}

.zh_sidebar_list_title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 简单列表样式 */
.zh_sidebar_list_simple .zh_sidebar_list_link {
  gap: 8px;
}

.zh_sidebar_list_simple .zh_sidebar_list_link i {
  font-size: 12px;
  color: #d41011;
}

.zh_sidebar_list_simple .zh_sidebar_list_link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_show_hero_content {
    grid-template-columns: 450px 1fr;
    gap: 50px;
  }

  .zh_show_hero_image {
    height: 450px;
  }

  .zh_show_hero_title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .zh_show_hero_content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zh_show_hero_image {
    max-width: 600px;
    margin: 0 auto;
  }

  .zh_show_layout {
    grid-template-columns: 1fr;
  }

  .zh_show_sidebar {
    position: static;
  }

  .zh_show_related_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .zh_show_container {
    padding: 0 20px;
  }

  .zh_show_hero {
    padding: 30px 0 60px;
  }

  .zh_show_hero_title {
    font-size: 28px;
  }

  .zh_show_hero_image {
    height: 350px;
  }

  .zh_show_main {
    padding: 40px 0;
  }

  .zh_show_card {
    padding: 30px 20px;
  }

  .zh_show_card_title {
    font-size: 20px;
  }

  .zh_show_provider_details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .zh_show_related_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zh_sidebar_widget {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .zh_show_hero_title {
    font-size: 24px;
  }

  .zh_show_breadcrumb {
    font-size: 12px;
    padding: 8px 16px;
  }

  .zh_show_hero_image {
    height: 280px;
  }

  .zh_show_quick_contact {
    padding: 20px;
  }

  .zh_sidebar_cta {
    padding: 30px 25px;
  }
}
