/* 产品详情页面样式 */
.product-details-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* 产品标题 */
.product-title {
  font-size: 24px;
  color: #4554a6;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* 产品描述文本 */
.product-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* 产品多图网格 */
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #eeeeee;
  transition: all 0.3s ease;
}

.product-gallery-item span{
    overflow: hidden;
    display:block;
}

.product-gallery-item:hover {
    /* 向上5像素 */
    transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
}

.product-gallery-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-gallery-item:hover img {
  transform: scale(1.05);
}

.product-image-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  color: #333;
  padding: 12px 15px;
  font-size: 14px;
  text-align: center;
  display: block;
}

/* 产品详情内容 */
.product-content-section {
  margin-top: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
}

.product-content-section .blog_content {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.product-content-section .blog_content p {
  margin-bottom: 15px;
}

.product-content-section .blog_content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

/* Tag 标签 */
.jzk_tag {
  margin-top: 30px;
  width: 100%;
  display: block;
  height: auto;
  overflow: hidden;
}

.jzk_tag a {
  display: inline-block;
  float: left;
  margin-right: 8px;
  padding: 6px 16px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 19px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  font-size: 14px;
}

.jzk_tag a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.jzk_tag i {
  padding-right: 5px;
}

/* 上一页下一页导航 */
.fu_post_links {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 2px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.fu_post_links a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
  max-width: 48%;
  word-wrap: break-word;
  font-size: 14px;
}

.fu_post_links a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  border-color: transparent;
}

/* 产品字段信息 */
.product-fields-section {
  margin: 40px 0;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.product-fields-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.product-fields-section li {
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
}

.product-fields-section li span {
  font-weight: 600;
  color: #333;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .product-title {
    font-size: 28px;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .product-gallery-item img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .product-details-container {
    margin: 40px auto;
  }

  .product-title {
    font-size: 24px;
  }

  .product-description {
    font-size: 14px;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-gallery-item img {
    height: 200px;
  }

  .product-content-section {
    padding: 20px;
  }

  .fu_post_links {
    flex-direction: column;
  }

  .fu_post_links a {
    max-width: 100%;
    text-align: center;
  }

  .product-fields-section {
    padding: 20px;
  }

  .product-fields-section ul {
    grid-template-columns: 1fr;
  }
  .product-title {
    font-size: 20px;
  }

  .product-image-caption {
    font-size: 12px;
    padding: 8px 10px;
  }
}
