.pic{
  width: 100%;
  height: 550px;
}
.pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-products{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -50px;
  height: 100px;
  padding: 0 46px;
  box-sizing: border-box;
  box-shadow:0px 0px 12px 0px rgba(21,6,10,0.1);
  background: #fff;
}
.about-products h4{
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 400;
}
.about-products span{
  font-size: 16px;
  text-transform: uppercase;
  color: #888;
}

.min-nav{
  display: flex;
  align-items: center;
  padding: 36px 0;
  font-size: 14px;
  color: #888;
}
.min-nav i{
  margin: 0 2px;
}

.main{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.main .classify{
  width: 280px;
  flex-shrink: 0;
  box-shadow:0px 0px 12px 0px rgba(21,6,10,0.1);
  border-radius: 4px;
  background: #fff;
}
.classify li{
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  color: #565656;
}
.classify li:not(:last-child){
  border-bottom: 1px solid #eaeaea;
}
.classify li.active{
  color: #25cad3;
}
.classify li a{
  width: 100%;
  height: 28px;
  line-height: 28px;
  padding-left: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-left: 4px solid transparent;
}
.classify li.active a{
  border-left: 4px solid;
}

.commodity{
  width: 1080px;
  display: flex;
  flex-wrap: wrap;
}
.commodity li{
  width: 333px;
  display: inline-block;
  margin-bottom: 43px;
}
.commodity li a{
  display: flex;
  flex-direction: column;
}
.commodity li:not(:nth-of-type(3n)){
  margin-right: 34px;
}
.commodity li img{
  width: 100%;
  height: 245px;    
  /* padding: 1px;
  box-sizing: border-box;
  background: #c9c9c9; */
}
.commodity li .com-detail{
  width: 100%;
}
.com-detail h4{
  position: relative;
  font-size: 18px;
  font-weight: 400;
  margin: 24px 0 10px;
  color: #333333;
  padding-bottom: 6px;
}
.com-detail h4::after{
  position: absolute;
  top: 100%;
  left: 0;
  content: '';
  width: 36px;
  height: 2px;
  background: #25cad3;
}
.com-detail p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #565656;
}

#myPage{
  margin: 70px 0;
  text-align: center;
}

@media only screen and (max-width: 1366px){
  .commodity li{
    width: 294px !important;
  }
}