@charset "UTF-8";
/* 产品列表 */
.product-list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product-list .product-item {
  display: block;
  width: 25%;
  padding-top: 25%;
  box-sizing: border-box;
  position: relative;
}
.product-list .product-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 12;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3294117647));
}
.product-list .product-item:hover .foreground {
  opacity: 0;
}
.product-list .product-item:hover .text-warp .prod-name {
  opacity: 1;
}
.product-list .product-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 500ms;
}
.product-list .product-item .foreground {
  z-index: 11;
}
.product-list .product-item .background {
  z-index: 10;
}
.product-list .product-item .text-warp {
  position: absolute;
  bottom: 20px;
  left: 4.5%;
  z-index: 15;
  color: #ffffff;
}
.product-list .product-item .text-warp span {
  font-weight: 500;
  font-size: 22px;
  display: block;
}
.product-list .product-item .text-warp .prod-name {
  transition: opacity 300ms;
  opacity: 0.8;
  font-family: "Gotham-Medium";
}

@media screen and (max-width: 1000px) {
  .product-item {
    width: 50% !important;
    padding-top: 50% !important;
  }
}
@media screen and (max-width: 550px) {
  .product-item {
    width: 100% !important;
    padding-top: 100% !important;
  }
}