/* 列表页/详情页样式 - 优雅婚礼风格 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #5a4a3a;
  background: #fffaf7;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== 页面横幅 ===== */
.zh_page_banner {
  position: relative;
  padding: 100px 0 80px;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.zh_page_banner_detail {
  min-height: 380px;
}

.zh_page_banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.zh_page_banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_page_banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 74, 58, 0.85) 0%, rgba(139, 115, 85, 0.75) 100%);
}

.zh_page_banner .zh_container {
  position: relative;
  z-index: 1;
}

.zh_page_banner_content {
  text-align: center;
}

/* 面包屑 */
.zh_breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.zh_breadcrumb_link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.zh_breadcrumb_link:hover {
  color: #fff;
}

.zh_breadcrumb_sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.zh_breadcrumb_current {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.zh_page_title {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.zh_page_desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.zh_page_meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.zh_page_tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
}

.zh_page_views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* ===== 列表页主体 ===== */
.zh_list_main {
  padding: 60px 0 100px;
}

.zh_list_layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
}

.zh_list_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.zh_list_count {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5a4a3a;
  font-size: 16px;
  font-weight: 500;
}

.zh_list_count i {
  color: #c9967a;
}

/* 列表网格 */
.zh_list_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.zh_list_item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
}

.zh_list_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 115, 85, 0.15);
}

.zh_list_item_img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.zh_list_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zh_list_item:hover .zh_list_item_img img {
  transform: scale(1.08);
}

.zh_list_item_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.9), rgba(201, 150, 122, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.zh_list_item:hover .zh_list_item_hover {
  opacity: 1;
}

.zh_list_item_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #fff;
  color: #c9967a;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_list_item_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.zh_list_item_body {
  padding: 24px;
}

.zh_list_item_title {
  font-size: 18px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.zh_list_item_title a {
  transition: color 0.3s ease;
}

.zh_list_item_title a:hover {
  color: #c9967a;
}

.zh_list_item_desc {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #8b7355;
  font-size: 14px;
  line-height: 1.5;
}

.zh_list_item_desc i {
  color: #c9967a;
  margin-top: 3px;
  flex-shrink: 0;
}

/* 分页 */
.zh_pagination {
  text-align: center;
  margin-top: 50px;
}

.zh_pagination .pagination {
  display: inline-flex;
  gap: 8px;
  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: 44px;
  height: 44px;
  padding: 0 16px;
  background: #fff;
  color: #5a4a3a;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(139, 115, 85, 0.08);
}

.zh_pagination .pagination a:hover {
  background: linear-gradient(135deg, #d4a574, #c9967a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 150, 122, 0.3);
}

.zh_pagination .pagination .active span {
  background: linear-gradient(135deg, #d4a574, #c9967a);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 150, 122, 0.3);
}

/* ===== 侧边栏 ===== */
.zh_sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
}

.zh_sidebar_box {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
}

.zh_sidebar_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 165, 116, 0.15);
}

.zh_sidebar_head i {
  font-size: 18px;
  color: #c9967a;
}

.zh_sidebar_head h3 {
  font-size: 18px;
  font-weight: 600;
  color: #5a4a3a;
}

.zh_sidebar_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_sidebar_list li {
  margin-bottom: 4px;
}

.zh_sidebar_list li:last-child {
  margin-bottom: 0;
}

.zh_sidebar_list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #7a6a5a;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 165, 116, 0.08);
}

.zh_sidebar_list li:last-child a {
  border-bottom: none;
}

.zh_sidebar_list a:hover {
  color: #c9967a;
  transform: translateX(5px);
}

.zh_sidebar_list a i {
  font-size: 10px;
  color: #c9967a;
  flex-shrink: 0;
}

.zh_sidebar_list a span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 侧边栏推荐卡片 */
.zh_sidebar_card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
}

.zh_sidebar_card_img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.zh_sidebar_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zh_sidebar_card:hover .zh_sidebar_card_img img {
  transform: scale(1.05);
}

.zh_sidebar_card_tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #d4a574, #c9967a);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
}

.zh_sidebar_card_body {
  padding: 24px;
}

.zh_sidebar_card_title {
  font-size: 16px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.zh_sidebar_card_title a:hover {
  color: #c9967a;
}

.zh_sidebar_card_info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8b7355;
  font-size: 13px;
  margin-bottom: 16px;
}

.zh_sidebar_card_info i {
  color: #c9967a;
}

.zh_sidebar_card_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9967a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.zh_sidebar_card_btn:hover {
  gap: 12px;
}

/* ===== 详情页主体 ===== */
.zh_detail_main {
  padding: 60px 0 100px;
}

.zh_detail_layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
}

/* 主图展示 */
.zh_detail_gallery {
  margin-bottom: 30px;
}

.zh_detail_main_img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.12);
}

.zh_detail_main_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 信息卡片 */
.zh_detail_info_card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
}

.zh_detail_info_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 165, 116, 0.15);
}

.zh_detail_info_head i {
  font-size: 20px;
  color: #c9967a;
}

.zh_detail_info_head h3 {
  font-size: 20px;
  font-weight: 600;
  color: #5a4a3a;
}

.zh_detail_info_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zh_detail_info_row {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #fffaf7;
  border-radius: 12px;
}

.zh_detail_info_label {
  width: 100px;
  color: #8b7355;
  font-size: 14px;
  flex-shrink: 0;
}

.zh_detail_info_value {
  flex: 1;
  color: #5a4a3a;
  font-size: 15px;
  font-weight: 500;
}

/* 发布人信息 */
.zh_detail_provider {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
}

.zh_detail_provider_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 165, 116, 0.15);
}

.zh_detail_provider_head i {
  font-size: 20px;
  color: #c9967a;
}

.zh_detail_provider_head h3 {
  font-size: 20px;
  font-weight: 600;
  color: #5a4a3a;
}

.zh_detail_provider_main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.zh_detail_provider_avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(201, 150, 122, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zh_detail_provider_avatar i {
  font-size: 28px;
  color: #c9967a;
}

.zh_detail_provider_info {
  flex: 1;
}

.zh_detail_provider_name {
  font-size: 18px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 8px;
}

.zh_detail_provider_name a:hover {
  color: #c9967a;
}

.zh_detail_provider_intro {
  color: #8b7355;
  font-size: 14px;
  line-height: 1.6;
}

.zh_detail_provider_contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.zh_detail_contact_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fffaf7;
  border-radius: 12px;
}

.zh_detail_contact_item i {
  font-size: 18px;
  color: #c9967a;
}

.zh_detail_contact_item span {
  color: #5a4a3a;
  font-size: 14px;
}

.zh_detail_provider_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #d4a574, #c9967a);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 150, 122, 0.3);
}

.zh_detail_provider_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 150, 122, 0.4);
}

/* 详情介绍 */
.zh_detail_desc {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
}

.zh_detail_desc_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 165, 116, 0.15);
}

.zh_detail_desc_head i {
  font-size: 20px;
  color: #c9967a;
}

.zh_detail_desc_head h3 {
  font-size: 20px;
  font-weight: 600;
  color: #5a4a3a;
}

.zh_detail_desc_body {
  color: #5a4a3a;
  font-size: 15px;
  line-height: 1.8;
}

.zh_detail_desc_body p {
  margin-bottom: 16px;
}

.zh_detail_desc_body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

/* 侧边栏联系卡片 */
.zh_sidebar_contact {
  background: linear-gradient(135deg, #d4a574, #c9967a);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
  color: #fff;
}

.zh_sidebar_contact_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.zh_sidebar_contact_head i {
  font-size: 22px;
}

.zh_sidebar_contact_head h3 {
  font-size: 18px;
  font-weight: 600;
}

.zh_sidebar_contact_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zh_sidebar_contact_item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.zh_sidebar_contact_item > i {
  font-size: 20px;
}

.zh_sidebar_contact_item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zh_sidebar_contact_item span {
  font-size: 12px;
  opacity: 0.8;
}

.zh_sidebar_contact_item strong {
  font-size: 15px;
  font-weight: 600;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
  .zh_container {
    padding: 0 30px;
  }

  .zh_list_layout,
  .zh_detail_layout {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .zh_page_title {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .zh_list_layout,
  .zh_detail_layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zh_sidebar {
    position: static;
  }

  .zh_page_title {
    font-size: 36px;
  }

  .zh_detail_provider_contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_page_banner {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .zh_page_title {
    font-size: 28px;
  }

  .zh_list_main,
  .zh_detail_main {
    padding: 40px 0 70px;
  }

  .zh_list_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zh_list_item_img {
    height: 200px;
  }

  .zh_sidebar_box,
  .zh_detail_info_card,
  .zh_detail_provider,
  .zh_detail_desc {
    padding: 24px;
  }

  .zh_detail_provider_main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .zh_page_meta {
    gap: 12px;
  }

  .zh_page_tag {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .zh_page_title {
    font-size: 24px;
  }

  .zh_list_item_body,
  .zh_sidebar_card_body {
    padding: 20px;
  }

  .zh_detail_info_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .zh_detail_info_label {
    width: auto;
  }

  .zh_breadcrumb {
    font-size: 12px;
  }
}
