.productList{
  margin-bottom: 30px;
}
.productItem{
  float: left;
  width: 33.33%;
  margin-bottom: 10px;
}
.productInner{
  text-align: center;
  margin: 0 8px;
  padding: 10px 0;
}
.productInner:hover{
  box-shadow: rgba(0,0,0,0.1) 0px 0px 15px 0px;
}
.productItem .img{
  width: 100%;
  height: 16vw;
  object-fit: cover;
}
.productItem .name{
  text-align: center;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  padding: 0 10px;
}
.productInner:hover .name{
  color: #d81e06;
}

.productInfo{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
.productInfo p {
  margin-bottom: 1em;
  text-indent: 2em;
}

@media screen and (max-width: 800px) {
  .productItem {
    float: none;
    width: 100%;
  }
  .productItem .img{
    height: 50vw;
  }
}