/* 详情页样式 - 婚礼平台风格 */
@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_detail_hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #ed1c24, #f9484f);
  position: relative;
  overflow: hidden;
}

.zh_detail_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_detail_hero_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zh_detail_hero_left {
  position: relative;
}

.zh_detail_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_detail_hero_title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 25px;
  font-family: 'Raleway', sans-serif;
}

.zh_detail_hero_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.zh_detail_hero_tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.zh_detail_hero_tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.zh_detail_hero_views {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

.zh_detail_hero_views i {
  color: #fff;
}

.zh_detail_hero_right {
  position: relative;
}

.zh_detail_hero_image {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.zh_detail_hero_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 主内容区 */
.zh_detail_main {
  padding: 60px 0;
}

.zh_detail_wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

/* 详情卡片 */
.zh_detail_card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_detail_info_section {
  margin-bottom: 0;
}

.zh_detail_info_title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(237, 28, 36, 0.1);
}

.zh_detail_info_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_detail_info_list li {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.zh_detail_info_list li:last-child {
  border-bottom: none;
}

.zh_detail_info_label {
  display: flex;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.zh_detail_info_value {
  flex: 1;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.zh_provider_actions {
  display: flex;
  align-items: center;
}

.zh_provider_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(237, 28, 36, 0.1);
  color: #ed1c24;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_provider_link:hover {
  background: #ed1c24;
  color: #fff;
}

/* 详情介绍 */
.zh_detail_section {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_detail_section_header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(237, 28, 36, 0.1);
}

.zh_detail_section_title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Raleway', sans-serif;
}

.zh_detail_section_content {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.zh_detail_section_content p {
  margin-bottom: 15px;
}

.zh_detail_section_content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 20px 0;
}

.zh_detail_images {
  margin-top: 30px;
}

.zh_detail_full_image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 右侧边栏 */
.zh_detail_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_detail_hero_content {
    gap: 60px;
  }
  
  .zh_detail_hero_title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .zh_detail_hero_content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .zh_detail_hero_title {
    font-size: 36px;
  }
  
  .zh_detail_hero_image {
    height: 400px;
  }
  
  .zh_detail_wrapper {
    grid-template-columns: 1fr;
  }
  
  .zh_detail_sidebar {
    position: static;
  }
  
  .zh_detail_card,
  .zh_detail_section {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }
  
  .zh_breadcrumb {
    margin-top: 70px;
  }
  
  .zh_detail_hero {
    padding: 60px 0;
  }
  
  .zh_detail_hero_title {
    font-size: 28px;
  }
  
  .zh_detail_hero_image {
    height: 300px;
  }
  
  .zh_detail_main {
    padding: 40px 0;
  }
  
  .zh_detail_card,
  .zh_detail_section {
    padding: 25px;
  }
  
  .zh_detail_section_title {
    font-size: 22px;
  }
  
  .zh_detail_info_label {
    width: 100px;
  }
  
  .zh_sidebar_widget {
    padding: 25px;
  }
}
