/* 产品详情页样式 */

/* 产品详情容器 */
.product-detail-container {
  /* max-width: 1200px; */
  margin: 50px auto 80px;
  padding: 0 15px;
}

.product-detail-main {
  display: flex;
  gap: 30px;
}

/* 右侧产品详情内容 */
.product-detail-content {
  flex: 1;
}

/* 产品详情视图 */
.product-detail-view {
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 40px;
  overflow: hidden;
}

/* 产品图片区域 */
.product-detail-image {
  /* flex: 1; */
  max-width: 570px;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
  min-height: 395px;
}

/* Swiper轮播样式 */
.product-swiper {
  width: 100%;
  height: 100%;
}

.product-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 自定义Swiper导航按钮样式 */
.product-swiper .swiper-button-prev, 
.product-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.1);
  /* margin-top: -20px; */
}

.product-swiper .swiper-button-next {
  background-color: #66cc33;
}

/* 修改Swiper默认导航按钮箭头样式 */
.product-swiper .swiper-button-prev:after,
.product-swiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: bold;
}

.product-swiper .swiper-button-prev:after {
  color: #666;
}

.product-swiper .swiper-button-next:after {
  color: #fff;
}

/* 产品信息区域 */
.product-detail-info {
  /* flex: 0 0 195px; */
  padding: 50px 40px;
}

.product-title {
  font-size: 24px;
  font-weight: 300;
  color: #000000;
  margin: 0 0 20px;
  font-family: 'Microsoft YaHei', sans-serif;
}
#66cc33
.product-divider {
  width: 52px;
  height: 3px;
  background-color: #66cc33;
  margin: 24px 0 28px;
}

.product-description {
  margin-bottom: 30px;
}

.description-title {
  font-size: 14px;
  color: #77777A;
  margin-bottom: 10px;
  font-weight: 300;
}

.description-content {
  font-size: 16px;
  color: #77777A;
  line-height: 20px;
  font-weight: 300;
}

.product-navigation {
  margin-top: 80px;
}

.product-navigation p {
  font-size: 14px;
  color: #77777A;
  line-height: 20px;
  margin: 0;
  font-weight: 300;
}

/* 产品详情标题 */
.detail-section-title {
  font-size: 18px;
  color: #77777A;
  margin: 30px 0 20px;
  font-weight: 300;
}

.detail-divider {
  width: 100%;
  height: 1px;
  background-color: #EEEEEE;
  margin-bottom: 25px;
}

/* 产品详情文本 */
.product-detail-text {
  color: #666666;
  line-height: 1.6;
}

.product-detail-text h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}

.product-detail-text p {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 300;
}

/* 适配移动端 */
@media (max-width: 992px) {
  .product-detail-main {
    flex-direction: column;
  }
  
  .product-categories {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .product-detail-view {
    flex-direction: column;
  }
  
  .product-detail-image {
    max-width: 100%;
    min-height: 300px;
  }
  
  .product-detail-info {
    padding: 30px 20px;
  }
  
  .product-navigation {
    margin-top: 40px;
  }
  
  .product-swiper .swiper-button-prev,
  .product-swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  
  .product-swiper .swiper-button-prev:after,
  .product-swiper .swiper-button-next:after {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .product-detail-image {
    min-height: 250px;
  }
  
  .product-swiper .swiper-button-prev,
  .product-swiper .swiper-button-next {
    width: 25px;
    height: 25px;
    margin-top: -12.5px;
  }
  
  .product-swiper .swiper-button-prev:after,
  .product-swiper .swiper-button-next:after {
    font-size: 12px;
  }
  
  .product-title {
    font-size: 20px;
  }
  
  .description-content {
    font-size: 14px;
  }
  
  .product-detail-text h3 {
    font-size: 16px;
  }
  
  .product-detail-text p {
    font-size: 13px;
  }
} 