.head-page .item:nth-child(3) span{
  color: #CD2620;
}
.banner .advice_tit{
  color: #CD2620;
  font-weight: bold;
}
.banner .advice_ftit{
  color: #333333;
  font-size: 20px;
}
.banner .advice{
  text-align: left;
  
}
.product_lists .list{
  width: 23.8%;
  margin-right: 1.6%;
  margin-bottom: 60px;
  background: #FFFFFF;
}
.product_lists .list:nth-child(4n){
  margin-right: 0;
}
.product_lists .list .img{
  height: 422px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 15px;
  box-sizing: border-box;
}
.product_lists .list .img img{
  display: block;
  transition: all .4s;
  max-width: 100%;
  max-height: 100%;
}


.product_lists .list .text{
  height: 80px;
  line-height: 80px;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
  border-top: 1px solid #f5f5f5;
  transition: all .4s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;

}
.product_detail .product_lists {
  background: #FFFFFF;
}
.product_detail .product_lists .list{
  margin-bottom: 0;
  background: #FAFAFA;
}

.product_detail01 .img{
  width: 560px;
  height: 608px;
  background: #FCFCFC;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.product_detail01 .img img{
  transition: all .4s;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.product_detail .texts{
  width: calc(100% - 560px);
  padding-right: 13%;
  box-sizing: border-box;
}
.product_detail .box{
  margin-bottom: 33px;
}
.product_detail .box:last-child{
  margin-bottom: 0;
}

.product_detail .text_tit{
  position: relative;
  padding-left: 26px;
  box-sizing: border-box;
  margin-bottom: 9px;
}
.product_detail .text_tit::before{
  content: "";
  display: block;
  width: 3px;
  height: 22px;
  background: #C00E1C;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product_detail .line{
  width: 100%;
  height: 1px;
  background: #eeeeee;
  margin-top: 22px;
  margin-bottom: 42px;
  position: relative;
}
.product_detail .line::before{
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #CD2620;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (min-width: 960px) {
  .product_lists .list:hover .img img{
     transform: scale(1.05);
  }
  .product_lists .list:hover .text {
    background:#CD2620;
    color: #FFFFFF;
  }
  .product_detail01 .img:hover img{
    transform: scale(1.05);
  }
}
@media only screen and (max-width:1280px) {
  .product_lists .list .img {
    height: 365px;
  }
  .product_detail .texts {
    width: calc(100% - 500px);
    padding-right: 5%;
    box-sizing: border-box;
  }
  .product_detail01 .img{
    width: 500px;
  }
}
@media only screen and (max-width:1200px) {
  .product_detail01 .img {
    width: 440px;
  }
  .product_detail .texts {
    width: calc(100% - 440px);
  }
}
@media only screen and (max-width:1043px) {
  .product_lists .list{
    margin-bottom: 35px;
    width: 32%;
    margin-right: 2%;
  }
  .product_lists .list:nth-child(4n){
    margin-right: 2%;
  }
  .product_lists .list:nth-child(3n){
    margin-right: 0;
  }
}
@media only screen and (max-width:768px) {
  .product_lists .list {
    margin-bottom: 20px;
    width: 100%;
    margin-right: 0;
  }
  .product_lists .list:last-child{
    margin-bottom: 0;
  }
  .product_lists .list .img {
    height: 285px;
  }

  .product_detail .texts {
    width: 100%;
    padding-right: 0;
  }
  .product_detail01 .img {
    width: 100%;
    height: 340px;
    margin-top: 30px;
  }
  .product_detail .text_tit{
    padding-left: 20px;
  }
  .product_detail .box {
    margin-bottom: 20px;
  }
  .product_detail .line{
    margin-bottom: 30px;
  }
  .product_detail .line::before{
    width: 34%;
  }
  .banner .advice_tit{
      display:none;
  }
}