/* 列表页样式 - 婚礼平台风格 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Microsoft YaHei', sans-serif;
  color: #333;
  background: #fff4ee;
  line-height: 1.6;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 面包屑导航 */
.zh_breadcrumb {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(237, 28, 36, 0.1);
  margin-top: 80px;
}

.zh_breadcrumb_content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_breadcrumb_link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.zh_breadcrumb_link:hover {
  color: #ed1c24;
}

.zh_breadcrumb_separator {
  color: #999;
  font-size: 12px;
}

.zh_breadcrumb_current {
  color: #ed1c24;
  font-weight: 600;
}

/* Hero区域 - 借鉴首页设计 */
.zh_list_hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #ed1c24, #f9484f);
  position: relative;
  overflow: hidden;
}

.zh_list_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-30 0a30 30 0 1 1 60 0a30 30 0 1 1 -60 0' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.zh_list_hero_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zh_list_hero_left {
  position: relative;
}

.zh_list_hero_badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.zh_list_hero_title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: 'Raleway', sans-serif;
}

.zh_list_hero_description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 40px;
}

.zh_list_hero_stats {
  display: flex;
  gap: 40px;
}

.zh_list_hero_stat {
  text-align: center;
}

.zh_list_hero_stat_value {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.zh_list_hero_stat_label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.zh_list_hero_right {
  position: relative;
}

.zh_list_hero_images {
  position: relative;
}

.zh_list_hero_image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.zh_list_hero_image_main {
  width: 100%;
  height: 450px;
}

.zh_list_hero_image_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_list_hero_image_overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 200px;
  transform: rotate(8deg);
  border: 8px solid #fff;
}

.zh_list_hero_image_overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 主内容区 */
.zh_list_main {
  padding: 60px 0;
}

.zh_list_wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

/* 列表网格 */
.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 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_list_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.15);
}

.zh_list_card_image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.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.05);
}

.zh_list_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(237, 28, 36, 0.85);
  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_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #ed1c24;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_list_card_btn:hover {
  transform: scale(1.05);
}

.zh_list_card_content {
  padding: 25px;
}

.zh_list_card_title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.zh_list_card_title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_list_card_title a:hover {
  color: #ed1c24;
}

.zh_list_card_info {
  display: flex;
  align-items: center;
}

.zh_list_card_location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 14px;
}

.zh_list_card_location i {
  color: #ed1c24;
}

/* 分页控件 */
.zh_pagination {
  margin-top: 50px;
  text-align: center;
}

.zh_pagination .pagination {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_pagination .pagination li {
  display: inline-block;
}

.zh_pagination .pagination a,
.zh_pagination .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(237, 28, 36, 0.1);
}

.zh_pagination .pagination a:hover {
  background: #ed1c24;
  color: #fff;
  border-color: #ed1c24;
}

.zh_pagination .pagination .active span {
  background: #ed1c24;
  color: #fff;
  border-color: #ed1c24;
}

/* 右侧边栏 */
.zh_list_sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.zh_sidebar_widget {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_sidebar_widget_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(237, 28, 36, 0.1);
}

.zh_sidebar_widget_icon {
  font-size: 20px;
  color: #ed1c24;
}

.zh_sidebar_widget_title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.zh_sidebar_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_sidebar_list li {
  margin-bottom: 12px;
}

.zh_sidebar_list li:last-child {
  margin-bottom: 0;
}

.zh_sidebar_list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.zh_sidebar_list a:hover {
  color: #ed1c24;
  transform: translateX(5px);
}

.zh_sidebar_list a i {
  font-size: 12px;
  color: #ed1c24;
}

/* 推荐卡片 */
.zh_sidebar_featured {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_sidebar_featured_card {
  transition: all 0.4s ease;
}

.zh_sidebar_featured_card:hover {
  transform: translateY(-5px);
}

.zh_sidebar_featured_image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.zh_sidebar_featured_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zh_sidebar_featured_card:hover .zh_sidebar_featured_image img {
  transform: scale(1.05);
}

.zh_sidebar_featured_content {
  padding: 20px;
}

.zh_sidebar_featured_title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.zh_sidebar_featured_title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_sidebar_featured_title a:hover {
  color: #ed1c24;
}

.zh_sidebar_featured_meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 13px;
}

.zh_sidebar_featured_meta i {
  color: #ed1c24;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_list_hero_content {
    gap: 60px;
  }
  
  .zh_list_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .zh_list_hero_content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .zh_list_hero_title {
    font-size: 42px;
  }
  
  .zh_list_hero_image_main {
    height: 400px;
  }
  
  .zh_list_hero_image_overlay {
    position: static;
    width: 100%;
    height: 250px;
    transform: none;
    margin-top: 20px;
  }
  
  .zh_list_wrapper {
    grid-template-columns: 1fr;
  }
  
  .zh_list_sidebar {
    position: static;
  }
  
  .zh_list_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }
  
  .zh_breadcrumb {
    margin-top: 70px;
  }
  
  .zh_list_hero {
    padding: 60px 0;
  }
  
  .zh_list_hero_title {
    font-size: 32px;
  }
  
  .zh_list_hero_stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .zh_list_hero_stat_value {
    font-size: 40px;
  }
  
  .zh_list_main {
    padding: 40px 0;
  }
  
  .zh_list_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .zh_sidebar_widget {
    padding: 25px;
  }
}
