.product {
  background: #fff;
  padding: 0.54rem 0 1.15rem;
}
.product .product_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.62rem;
  row-gap: 0.7rem;
}
.product .product_list .product_item {
  width: calc(33.33% - 0.41334rem);
  height: auto;
}
.product .product_list .product_item .product_img {
  width: 100%;
  height: 0;
  padding-bottom: 63.2%;
  overflow: hidden;
  position: relative;
  background: #F5F5F5;
  border: 0.02rem solid transparent;
}
.product .product_list .product_item .product_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.product .product_list .product_item h3 {
  margin-top: 0.37rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.2rem;
  color: #000000;
  line-height: 1.2;
}
.product .product_list .product_item:hover .product_img {
  background: #fff;
  border-color: #0A50B4;
}
.product .product_list .product_item:hover .product_img img {
  transform: scale(1.1);
}
.product .product_list .product_item:hover h3 {
  color: #0A50B4;
}
@media screen and (max-width: 1042px) {
  .product .product_list {
    column-gap: 16px;
    row-gap: 30px;
  }
  .product .product_list .product_item {
    width: calc(50% - 8px);
  }
  .product .product_list .product_item h3 {
    font-size: 16px;
    margin-top: 14px;
  }
}
