.main {
  padding-top: 40px;
  padding-bottom: 60px;
}

.goods-right {
  margin-left: 340px;
}

.pro-top {
  margin-bottom: 15px;
  background: #F7F7F7;
  padding: 20px;
}

.pro-top h1 {
  font-size: 24px;
  color: #111;
  font-weight: 600;
}

.pro-top .t {
  font-size: 16px;
  color: #545454;
  line-height: 24px;
  margin: 15px 0 0;
}

.pro-top .t h5 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-top: 10px;
}

.pro-top .t p~p {
  margin-top: 10px;
}

.prolist ul {
  margin: 0 0 0 -2%;
}

.prolist ul li {
  width: 31.333333333%;
  float: left;
  text-align: center;
  background: #fff;
  margin: 0 0 20px 2%;
  cursor: pointer;
  box-sizing: border-box;
}

.prolist ul li .pic {
  display: block;
  width: 100%;
  height: 370px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #C9C9C9;
  padding: 5px;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.prolist ul li .pic img {
  max-width: 90%;
  max-height: 90%;
  display: block;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.prolist ul li .t {
  background: #3C3C4F;
  text-align: center;
  padding: 20px 10px;
}

.prolist ul li .t h6 {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  height: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}

.prolist ul li:hover .pic {
  border: 1px solid #DEDEDE;
  box-shadow: 5px 5px 40px rgba(0, 0, 0, .2);
}

.prolist ul li:hover .pic img {
  transform: scale(1.06);
  -webkit-transform: scale(1.06);
}

.prolist ul li:hover .t {
  background: var(--color-primary);
}

@media screen and (max-width:1500px) {

  .prolist ul li .pic {
    height: 300px;
  }

}

@media screen and (max-width:768px) {

  .main {
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .goods-right {
    margin-left: 0;
  }

  .prolist ul li {
    width: 48%;
    margin: 0 0 15px 2%;
  }

  .prolist ul li .t {
    padding: 10px 5px;
  }

  .prolist ul li .t h6 {
    font-size: 15px;
    height: 60px;
    line-height: 20px;
  }
}

@media screen and (max-width:600px) {

  .prolist ul li .pic {
    height: 300px;
  }

}

@media screen and (max-width:480px) {

  .prolist ul li .pic {
    height: 220px;
  }

  .prolist ul {
    margin: 0;
  }

  .prolist ul li {

  }

  .prolist ul li .t h6 {
    font-size: 12px;
    line-height: 16px;
    height: auto;
  }
}

@media screen and (max-width:400px) {

  .prolist ul li .pic {
    height: 180px;
  }
}

.prolist ul li .t h6 a{
  display: -webkit-box;  
  -webkit-line-clamp: 3;  
  -webkit-box-orient: vertical;  
  overflow: hidden;  
}