.product-cover {
  width: 100%;
  height: 500px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 467px) {
  .product-cover {
    height: 300px;
  }
}

.product-images {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.product-images > div {
  width: 70px;
  height: 70px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #dedede;
  cursor: pointer;
}
.product-images > div:last-child {
  margin-right: 0;
}

.product-detail {
  padding: 10px;
}
.product-detail .origin-price {
  color: #828282;
  font-style: italic;
}
.product-detail .price {
  color: #dd4200;
  font-size: 1.2rem;
}
.product-detail .discount-tag {
  padding: 5px 8px;
  background: #dd4200;
  color: #fff;
  font-size: 0.8rem;
  position: relative;
  top: -3px;
}
.product-detail .product-intro {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-code {
  color: #6b686a;
  margin-top: 10px;
  margin-bottom: 10px;
  font-style: italic;
}
