/* 首页样式文件 - 四川学考科技有限公司 */
/* 所有自定义类和ID使用 zh_ 前缀 */

/* ============================================
   基础样式重置
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0F1214;
  background: #FFFFFF;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   布局容器
   ============================================ */
.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.zh_main {
  overflow-x: hidden;
}

/* ============================================
   Hero Banner 区域
   ============================================ */
.zh_hero {
  background: #F8F8F8;
  padding: 0;
  position: relative;
}

.zh_hero-wrapper {
  background: #FFFFFF;
}

.zh_hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 20px;
  position: relative;
}

/* 左侧产品分类栏 */
.zh_category-sidebar {
  width: 250px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.zh_category-header {
  background: #BF9271;
  color: #FFFFFF;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.zh_category-header i {
  font-size: 18px;
}

.zh_category-menu {
  padding: 10px 0;
}

.zh_category-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: #0F1214;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.zh_category-item i:first-child {
  font-size: 18px;
  width: 25px;
  color: #BF9271;
}

.zh_category-item span {
  flex: 1;
  font-size: 15px;
}

.zh_category-item i:last-child {
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.zh_category-item:hover {
  background: #F8F8F8;
  border-left-color: #BF9271;
}

.zh_category-item:hover i:last-child {
  opacity: 1;
}

/* Banner主体内容 */
.zh_hero-content {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.zh_hero-slider {
  position: relative;
}

.zh_hero-slide {
  background: linear-gradient(135deg, #E3B7A0 0%, #BF9271 100%);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 450px;
}

.zh_hero-text {
  color: #FFFFFF;
}

.zh_hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.zh_hero-title {
  font-family: 'Mulish', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.zh_hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

.zh_hero-buttons {
  display: flex;
  gap: 20px;
}

.zh_btn-primary {
  background: #362222;
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.zh_btn-primary:hover {
  background: #0F1214;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.zh_btn-secondary {
  background: #FFFFFF;
  color: #362222;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.zh_btn-secondary:hover {
  background: #EEEEEE;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.zh_hero-image {
  position: relative;
}

.zh_hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   服务特点区域
   ============================================ */
.zh_features {
  padding: 80px 0;
  background: #FFFFFF;
}

.zh_features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.zh_feature-card {
  text-align: center;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}

.zh_feature-card:hover {
  border-color: #BF9271;
  box-shadow: 0 10px 30px rgba(191, 146, 113, 0.15);
  transform: translateY(-5px);
}

.zh_feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: #FFFFFF;
}

.zh_feature-card h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0F1214;
}

.zh_feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   区块标题
   ============================================ */
.zh_section-header {
  text-align: center;
  margin-bottom: 60px;
}

.zh_section-title {
  font-family: 'Mulish', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0F1214;
  margin-bottom: 10px;
}

.zh_section-subtitle {
  font-size: 18px;
  color: #BF9271;
  font-weight: 500;
}

/* ============================================
   精选商品区域
   ============================================ */
.zh_featured {
  padding: 80px 0;
  background: #FFFFFF;
}

.zh_featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.zh_product-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}

.zh_product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.zh_product-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #F8F8F8;
}

.zh_product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.zh_product-card:hover .zh_product-image img {
  transform: scale(1.1);
}

.zh_product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #DA3E31;
  color: #FFFFFF;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.zh_product-content {
  padding: 25px;
}

.zh_product-title {
  font-size: 16px;
  font-weight: 500;
  color: #0F1214;
  margin-bottom: 15px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}

.zh_product-title:hover {
  color: #BF9271;
}

.zh_product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zh_product-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.zh_price-current {
  font-size: 22px;
  font-weight: 700;
  color: #DA3E31;
}

.zh_price-original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.zh_btn-view {
  background: #BF9271;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.zh_btn-view:hover {
  background: #362222;
}

/* ============================================
   分类展示区域
   ============================================ */
.zh_categories {
  padding: 80px 0;
  background: #F8F8F8;
}

.zh_categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  height: 500px;
}

.zh_category-large,
.zh_category-small {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.zh_category-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}

.zh_category-content h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.zh_category-content p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.zh_category-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  transition: gap 0.3s;
}

.zh_category-link:hover {
  gap: 15px;
}

.zh_category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.zh_category-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.zh_category-large:hover .zh_category-bg,
.zh_category-small:hover .zh_category-bg {
  transform: scale(1.1);
}

/* ============================================
   热销商品区域
   ============================================ */
.zh_bestsellers {
  padding: 80px 0;
  background: #FFFFFF;
}

.zh_product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.zh_product-item {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}

.zh_product-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.zh_product-thumb {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #F8F8F8;
}

.zh_product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.zh_product-item:hover .zh_product-overlay {
  opacity: 1;
}

.zh_quick-view {
  background: #FFFFFF;
  color: #0F1214;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.zh_product-item:hover .zh_quick-view {
  transform: translateY(0);
}

.zh_product-info {
  padding: 20px;
}

.zh_product-name {
  font-size: 15px;
  font-weight: 500;
  color: #0F1214;
  margin-bottom: 12px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}

.zh_product-name:hover {
  color: #BF9271;
}

.zh_product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_current-price {
  font-size: 20px;
  font-weight: 700;
  color: #DA3E31;
}

.zh_old-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

/* ============================================
   大型促销横幅
   ============================================ */
.zh_promo-banner {
  background: linear-gradient(135deg, #362222 0%, #0F1214 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zh_promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(191, 146, 113, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.zh_promo-content {
  position: relative;
  z-index: 1;
}

.zh_promo-content h2 {
  font-family: 'Mulish', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.zh_promo-content p {
  font-size: 20px;
  color: #EEEEEE;
  margin-bottom: 35px;
}

.zh_promo-btn {
  background: #BF9271;
  color: #FFFFFF;
  padding: 18px 50px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.zh_promo-btn:hover {
  background: #E3B7A0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(191, 146, 113, 0.4);
}

/* ============================================
   DIY/外设产品区域
   ============================================ */
.zh_diy-section {
  padding: 80px 0;
  background: #F8F8F8;
}

.zh_product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.zh_list-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 30px;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}

.zh_list-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.zh_list-image {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #F8F8F8;
}

.zh_list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.zh_list-item:hover .zh_list-image img {
  transform: scale(1.1);
}

.zh_list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zh_list-title {
  font-size: 20px;
  font-weight: 600;
  color: #0F1214;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s;
}

.zh_list-title:hover {
  color: #BF9271;
}

.zh_list-price {
  margin-bottom: 20px;
}

.zh_price-new {
  font-size: 28px;
  font-weight: 700;
  color: #DA3E31;
  margin-right: 15px;
}

.zh_price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.zh_list-btn {
  background: #BF9271;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  align-self: flex-start;
  transition: all 0.3s;
}

.zh_list-btn:hover {
  background: #362222;
  transform: translateX(5px);
}

/* ============================================
   最新商品区域
   ============================================ */
.zh_latest {
  padding: 80px 0;
  background: #FFFFFF;
}

.zh_latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.zh_latest-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}

.zh_latest-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.zh_latest-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #F8F8F8;
}

.zh_latest-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.zh_latest-card:hover .zh_latest-image img {
  transform: scale(1.1);
}

.zh_new-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #52C41A;
  color: #FFFFFF;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.zh_latest-details {
  padding: 25px;
}

.zh_latest-name {
  font-size: 16px;
  font-weight: 500;
  color: #0F1214;
  margin-bottom: 15px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}

.zh_latest-name:hover {
  color: #BF9271;
}

.zh_latest-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_sale-price {
  font-size: 22px;
  font-weight: 700;
  color: #DA3E31;
}

.zh_market-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1200px) {
  .zh_hero-title {
    font-size: 52px;
  }

  .zh_features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zh_featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .zh_product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .zh_categories-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .zh_category-large {
    grid-column: span 2;
    height: 400px;
  }

  .zh_category-small {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .zh_hero {
    padding: 60px 0;
  }

  .zh_hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zh_hero-title {
    font-size: 36px;
  }

  .zh_hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .zh_btn-primary,
  .zh_btn-secondary {
    text-align: center;
  }

  .zh_features {
    padding: 50px 0;
  }

  .zh_features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zh_section-title {
    font-size: 32px;
  }

  .zh_featured-grid,
  .zh_product-grid,
  .zh_latest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .zh_categories-grid {
    grid-template-columns: 1fr;
  }

  .zh_category-large {
    grid-column: span 1;
    height: 300px;
  }

  .zh_product-list {
    grid-template-columns: 1fr;
  }

  .zh_list-item {
    flex-direction: column;
    padding: 20px;
  }

  .zh_list-image {
    width: 100%;
    height: 250px;
  }

  .zh_promo-content h2 {
    font-size: 36px;
  }

  .zh_promo-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .zh_hero-title {
    font-size: 28px;
  }

  .zh_hero-description {
    font-size: 16px;
  }

  .zh_section-title {
    font-size: 26px;
  }

  .zh_featured-grid,
  .zh_product-grid,
  .zh_latest-grid {
    grid-template-columns: 1fr;
  }

  .zh_product-card,
  .zh_product-item,
  .zh_latest-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .zh_category-sidebar {
    display: none;
  }

  .zh_hero-slide {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

/* ============================================
   快速分类导航
   ============================================ */
.zh_quick-nav {
  padding: 60px 0;
  background: #FFFFFF;
}

.zh_quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.zh_quick-item {
  background: #FFFFFF;
  border: 2px solid #EEEEEE;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  cursor: pointer;
}

.zh_quick-item i {
  font-size: 36px;
  color: #BF9271;
  transition: transform 0.3s;
}

.zh_quick-item span {
  font-size: 15px;
  font-weight: 500;
  color: #0F1214;
}

.zh_quick-item:hover {
  border-color: #BF9271;
  background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(191, 146, 113, 0.3);
}

.zh_quick-item:hover i,
.zh_quick-item:hover span {
  color: #FFFFFF;
}

.zh_quick-item:hover i {
  transform: scale(1.2);
}

/* ============================================
   区块标题优化
   ============================================ */
.zh_section-header {
  position: relative;
  padding-bottom: 10px;
}

.zh_view-all {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #BF9271;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.zh_view-all:hover {
  gap: 12px;
  color: #362222;
}

/* ============================================
   专区标题
   ============================================ */
.zh_zone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #EEEEEE;
}

.zh_zone-title-group {
  flex: 1;
}

.zh_zone-title {
  font-family: 'Mulish', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0F1214;
  margin-bottom: 5px;
}

.zh_zone-subtitle {
  font-size: 16px;
  color: #BF9271;
  font-weight: 500;
}

.zh_zone-more {
  color: #BF9271;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.zh_zone-more:hover {
  gap: 12px;
  color: #362222;
}

/* ============================================
   手机配件专区 - 混合布局
   ============================================ */
.zh_mobile-zone {
  padding: 80px 0;
  background: #F8F8F8;
}

.zh_mixed-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
}

.zh_mixed-featured {
  position: relative;
}

.zh_featured-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 600px;
}

.zh_featured-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
  padding: 40px 30px;
  color: #FFFFFF;
}

.zh_featured-overlay h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.zh_featured-overlay p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.zh_featured-btn {
  background: #BF9271;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.zh_featured-btn:hover {
  background: #FFFFFF;
  color: #BF9271;
  transform: translateX(5px);
}

.zh_mixed-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-content: start;
}

.zh_mini-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  gap: 15px;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}

.zh_mini-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.zh_mini-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #F8F8F8;
}

.zh_mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.zh_mini-card:hover .zh_mini-image img {
  transform: scale(1.1);
}

.zh_mini-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zh_mini-title {
  font-size: 14px;
  font-weight: 500;
  color: #0F1214;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  transition: color 0.3s;
}

.zh_mini-title:hover {
  color: #BF9271;
}

.zh_mini-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zh_mini-current {
  font-size: 18px;
  font-weight: 700;
  color: #DA3E31;
}

.zh_mini-original {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

/* ============================================
   摄影相机专区 - 瀑布流布局
   ============================================ */
.zh_camera-zone {
  padding: 80px 0;
  background: #FFFFFF;
}

.zh_masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.zh_masonry-item {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}

.zh_masonry-item:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transform: scale(1.03);
}

.zh_masonry-image {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
  background: #F8F8F8;
}

.zh_masonry-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.zh_masonry-item:hover .zh_masonry-image img {
  transform: scale(1.15);
}

.zh_masonry-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #DA3E31;
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.zh_masonry-content {
  padding: 20px;
}

.zh_masonry-title {
  font-size: 15px;
  font-weight: 500;
  color: #0F1214;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  transition: color 0.3s;
}

.zh_masonry-title:hover {
  color: #BF9271;
}

.zh_masonry-price {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_masonry-current {
  font-size: 20px;
  font-weight: 700;
  color: #DA3E31;
}

.zh_masonry-old {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.zh_masonry-btn {
  width: 100%;
  text-align: center;
  background: #BF9271;
  color: #FFFFFF;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.zh_masonry-btn:hover {
  background: #362222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(191, 146, 113, 0.4);
}

/* ============================================
   响应式优化
   ============================================ */
@media (max-width: 1200px) {
  .zh_quick-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .zh_mixed-layout {
    grid-template-columns: 300px 1fr;
  }

  .zh_mixed-products {
    grid-template-columns: 1fr;
  }

  .zh_masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .zh_zone-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .zh_zone-more {
    align-self: flex-end;
  }

  .zh_quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zh_mixed-layout {
    grid-template-columns: 1fr;
  }

  .zh_featured-banner {
    min-height: 400px;
  }

  .zh_mixed-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .zh_quick-nav {
    padding: 40px 0;
  }

  .zh_quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .zh_quick-item {
    padding: 20px 15px;
  }

  .zh_quick-item i {
    font-size: 28px;
  }

  .zh_quick-item span {
    font-size: 13px;
  }

  .zh_zone-title {
    font-size: 28px;
  }

  .zh_zone-subtitle {
    font-size: 14px;
  }

  .zh_mixed-products {
    grid-template-columns: 1fr;
  }

  .zh_masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .zh_mobile-zone,
  .zh_camera-zone {
    padding: 50px 0;
  }
}
