@charset "UTF-8";
/* 产品分类 */
.goods {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.goods .goods-item {
  display: block;
  width: 50%;
  height: auto;
  position: relative;
  padding-top: 50%;
  z-index: 1;
}
.goods .goods-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7725490196));
}
.goods .goods-item .goods-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.goods .goods-item .product-title {
  font-family: gotham;
  position: absolute;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  z-index: 3;
  left: 5%;
  bottom: 50px;
  opacity: 0.8;
}
.goods .goods-item .product-en-title {
  font-family: regular;
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  z-index: 3;
  left: 5%;
  bottom: 20px;
}

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