/* 产品详情列表区域 */
.product-detail-list-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.product-detail-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

/* 产品详情项 */
.product-detail-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding:30px 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-detail-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #004e8c;
  transition: height 0.4s ease;
}

.product-detail-item:hover {
  box-shadow: 0 8px 30px rgba(0, 78, 140, 0.15);
  transform: translateY(-5px);
}

.product-detail-item:hover::before {
  height: 5px;
}

/* 产品图片 */
.product-detail-image {
  flex-shrink: 0;
  width: 226px;
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.product-detail-item:hover .product-detail-image img {
  transform: scale(1.1);
}

/* 产品内容 */
.product-detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-detail-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 0;
  transition: color 0.3s ease;
}

.product-detail-item:hover .product-detail-title {
  color: #004E8C;
}

/* 分隔线 */
.product-detail-divider {
  width: 36px;
  height: 2px;
  background: #004E8C;
  transition: width 0.4s ease;
}

.product-detail-item:hover .product-detail-divider {
  width: 50px;
}

/* 产品描述 */
.product-detail-desc {
  font-size: 16px;
  color: #676767;
  line-height: 1.8;
}
/* 查看详情按钮 */
.product-detail-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #fff;
  color: #004E8C;
  border: 1px solid #004E8C;
  border-radius: 28px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-right: 30px;
}
.product-detail-btn i {
  width: 28px;
  height: 16px;
  display: inline-block;
  background: url(../images/new1r.png) no-repeat center center;
 background-size: contain;

}

.product-detail-item:hover .product-detail-btn {
  background: #004E8C;
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 78, 140, 0.3);
}
.product-detail-item:hover .product-detail-btn i {
  background: url(../images/new1rh.png) no-repeat center center;
 background-size: contain;
}

/* 箭头图标 */
.product-detail-btn .btn-arrow {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.product-detail-item:hover .product-detail-btn .btn-arrow {
  transform: rotate(45deg) translate(3px, -3px);
}

/* 平板响应式 */
@media screen and (max-width: 1024px) {
  .product-detail-list-section {
    padding: 60px 0;
  }

  .product-detail-item {
    padding: 35px;
    gap: 30px;
  }

  .product-detail-image {
    width: 160px;
    height: 150px;
    /* height: 160px; */
  }

  .product-detail-title {
    font-size: 18px;
  }

  .product-detail-desc {
    font-size: 13px;
  }

  .product-detail-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* 移动端 */
@media screen and (max-width: 768px) {
  .product-detail-list-section {
    padding: 50px 0;
  }

  .product-detail-list {
    gap: 25px;
    margin-bottom: 40px;
  }

  .product-detail-item {
    flex-direction: column;
    padding: 30px 25px;
    gap: 25px;
    align-items: flex-start;
  }

  .product-detail-image {
    width: 160px;
    height: auto;
    margin: 0 auto;
  }

  .product-detail-content {
    width: 100%;
  }

  .product-detail-title {
    font-size: 17px;
  }

  .product-detail-desc {
    font-size: 13px;
  }

  .product-detail-specs {
    font-size: 12px;
  }

  .product-detail-btn {
    align-self: center;
    padding: 10px 24px;
  }
}
