/****product_list样式*******/
.product_list {
  padding-bottom: 0.5rem;
}
.product_list .box1 {
  position: relative;
  margin-bottom: 0.85rem;
}
.product_list .box1 .img img {
  width: 100%;
  display: block;
}
.product_list .box1 .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 15%;
  top: 0;
  display: flex;
  align-items: center;
}
.product_list .box1 .txt h3 {
  font-size: 45px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
  width: 100%;
  font-weight: bold;
}
.product_list .box1 .txt a {
  display: block;
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: #00b1c7;
  font-size: 16px;
  border-radius: 20px;
  margin-top: 50px;
}
.product_list .box1 .txt a:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.product_list .box1_m {
  position: relative;
  margin-bottom: 0.85rem;
  display: none;
}
.product_list .box1_m .img img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.product_list .box1_m .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0.7rem;
  text-align: center;
  overflow: hidden;
  padding: 0 0.2rem;
}
.product_list .box1_m .txt h3 {
  font-size: 0.5rem;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
  padding-bottom: 0.15rem;
  width: 100%;
  font-weight: bold;
}
.product_list .box1_m .txt a {
  display: block;
  width: 1.5rem;
  line-height: 0.5rem;
  text-align: center;
  color: #fff;
  background: #00b1c7;
  font-size: 0.24rem;
  border-radius: 0.25rem;
  margin: 0 auto;
  margin-top: 0.3rem;
}
.product_list .box1_m .txt a:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.product_list .box2 {
  padding: 0 8%;
}
.product_list .box2 dl {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
.product_list .box2 dd {
  position: relative;
  width: 32%;
  margin-bottom: 0.5rem;
  margin-right: 2%;
  background: #fff;
  transition: all ease 0.36s;
  box-sizing: border-box;
  overflow: hidden;
}
.product_list .box2 dd h3 {
  font-size: 0.3rem;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-top: 0.2rem;
}
.product_list .box2 dd p {
  font-size: 0.24rem;
  color: #000;
}
.product_list .box2 dd:nth-child(3n) {
  margin-right: 0;
}
.product_list .box2 dd:hover {
  transform: translateY(-5px);
}
.product_list .box2 dd .img {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  z-index: 10;
}
.product_list .box2 dd .img {
  padding-top: 75%;
}
.product_list .box2 dd img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 1440px) {
  .product_list .box2 dd h3 {
    font-size: 0.26rem;
  }
  .product_list .box2 {
    padding: 0 2%;
  }
}
@media (max-width: 751px) {
  .product_list .box2 dd {
    width: 49%;
  }
  .product_list .box2 dd:nth-child(3n) {
    margin-right: 2%;
  }
  .product_list .box2 dd:nth-child(2n) {
    margin-right: 0;
  }
}
