.products__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.products__top .product {
  margin-right: 55px;
  padding: 10px 15px 30px;
  width: 222px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.products__top .product--hover:hover {
  background: rgba(255,255,255,.4);
  -webkit-box-shadow: 0 3px 24px rgba(0,0,0,.15);
  box-shadow: 0 3px 24px rgba(0,0,0,.15);
  border-radius: 8px;
}

.products__top .product--hover:hover .product__title {
  color: #f18300;
}

.products__top .product:last-child {
  margin-right: 0;
}

.products__top .product__img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

.products__top .product__title {
  margin-top: 15px;
  font-size: 20px;
  color: #333;
  font-family: siyuan light;
  font-weight: 700;
}

.products__top .product__summary {
  margin-top: 8px;
  font-size: 14px;
  color: #999;
  text-align: center;
}

.products__goodses {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.products__bottom {
  margin-top: 24px;
  padding: 21px 24px;
  background: #f9f9f9;
  border-radius: 4px;
}

.products__bottom .goods {
  margin-right: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.products__bottom .goods:last-child {
  margin-right: 0;
}

.products__bottom .goods__img {
  width: 220px;
  height: 220px;
}

.products__bottom .goods__right {
  margin-left: 16px;
  width: 220px;
  padding: 6px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.products__bottom .goods__title {
  font-size: 18px;
  color: #333;
  font-family: siyuan light;
  font-weight: 700;
}

.products__bottom .goods__summary {
  margin-top: 8px;
  font-size: 14px;
  color: #999;
}

.products__bottom .goods__button {
  width: 96px;
  height: 32px;
  font-size: 14px;
  color: #fff;
}

.products__bottom .goods__button span {
  font-size: 14px;
}

.products__title {
  font-size: 20px;
  color: #333;
}