/* 汽车救援平台 - 列表页样式 */
@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_list_hero {
  background: linear-gradient(135deg, #f2e5de 0%, #fef5f1 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.zh_list_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_list_hero_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.zh_list_hero_content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.zh_list_hero_title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.zh_list_hero_subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.zh_list_breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.zh_list_breadcrumb_link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.zh_list_breadcrumb_link:hover {
  color: #d41011;
}

.zh_list_breadcrumb .fa-chevron-right {
  font-size: 12px;
  color: #999;
}

.zh_list_breadcrumb_current {
  color: #d41011;
  font-weight: 600;
}

/* 主内容区 */
.zh_list_main {
  padding: 60px 0;
  background: #fafafa;
}

.zh_list_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.zh_list_layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
}

/* 列表网格 */
.zh_list_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.zh_list_card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.zh_list_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(212, 16, 17, 0.15);
}

.zh_list_card_image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.zh_list_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zh_list_card:hover .zh_list_card_image img {
  transform: scale(1.08);
}

.zh_list_card_badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d41011;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(212, 16, 17, 0.3);
}

.zh_list_card_badge i {
  font-size: 11px;
}

.zh_list_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 16, 17, 0.9), rgba(163, 13, 14, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zh_list_card:hover .zh_list_card_overlay {
  opacity: 1;
}

.zh_list_card_view_btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #d41011;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.zh_list_card_view_btn:hover {
  transform: scale(1.1) rotate(45deg);
}

.zh_list_card_body {
  padding: 24px;
}

.zh_list_card_title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.zh_list_card_title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_list_card_title a:hover {
  color: #d41011;
}

.zh_list_card_meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.zh_list_card_location,
.zh_list_card_views {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.zh_list_card_location i,
.zh_list_card_views i {
  color: #d41011;
  font-size: 13px;
}

.zh_list_card_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_list_card_link:hover {
  gap: 10px;
}

.zh_list_card_link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.zh_list_card_link:hover i {
  transform: translateX(3px);
}

/* 分页 */
.zh_list_pagination {
  text-align: center;
}

.zh_list_pagination .pagination {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_list_pagination .pagination li {
  display: inline-block;
}

.zh_list_pagination .pagination a,
.zh_list_pagination .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.zh_list_pagination .pagination a:hover {
  background: #d41011;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 16, 17, 0.3);
}

.zh_list_pagination .pagination .active span {
  background: #d41011;
  color: #fff;
}

/* 右侧边栏 */
.zh_list_sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.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_search_box {
  margin-top: 20px;
}

.zh_sidebar_search_box form {
  display: flex;
  gap: 8px;
}

.zh_sidebar_search_input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.zh_sidebar_search_input:focus {
  border-color: #d41011;
}

.zh_sidebar_search_btn {
  width: 48px;
  height: 48px;
  border: none;
  background: #d41011;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zh_sidebar_search_btn:hover {
  background: #a30d0e;
  transform: scale(1.05);
}

/* 侧边栏列表 */
.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;
}

.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;
}

/* 联系 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);
}

.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);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_list_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .zh_list_layout {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .zh_list_hero_title {
    font-size: 40px;
  }

  .zh_list_layout {
    grid-template-columns: 1fr;
  }

  .zh_list_sidebar {
    position: static;
  }

  .zh_list_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .zh_list_container {
    padding: 0 20px;
  }

  .zh_list_hero {
    padding: 60px 0 40px;
  }

  .zh_list_hero_title {
    font-size: 32px;
  }

  .zh_list_hero_subtitle {
    font-size: 16px;
  }

  .zh_list_main {
    padding: 40px 0;
  }

  .zh_list_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zh_list_card_image {
    height: 220px;
  }

  .zh_sidebar_widget {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .zh_list_hero_title {
    font-size: 28px;
  }

  .zh_list_breadcrumb {
    font-size: 13px;
    padding: 10px 18px;
  }

  .zh_sidebar_cta {
    padding: 30px 25px;
  }
}
