/* ========== PC端产品介绍样式 ========== */
.products-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-list-card {
  background-color: #fff;
  border: 1px solid hsla(214, 15%, 88%, 0.6);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-list-card:hover {
  border-color: hsla(213, 75%, 32%, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-list-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: hsl(210, 20%, 96%);
}

.product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-list-card:hover .product-list-image img {
  transform: scale(1.08);
}

.product-list-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: hsl(213, 75%, 32%);
  border-radius: 999px;
}

.product-list-info {
  padding: 20px;
}

.product-list-model {
  font-size: 12px;
  color: hsl(215, 10%, 45%);
  margin-bottom: 6px;
}

.product-list-name {
  font-size: 17px;
  font-weight: 600;
  color: hsl(215, 28%, 17%);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.product-list-card:hover .product-list-name {
  color: hsl(213, 75%, 32%);
}

.product-list-desc {
  font-size: 13px;
  color: hsl(215, 10%, 45%);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-list-actions {
  display: flex;
  gap: 8px;
}

.product-list-actions .btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 13px;
}
