.product-container {
  color: var(--main-text-color);
}
.product-container .product-main .goods {
  display: inline-block;
  vertical-align: top;
  width: 33%;
  padding: 0 40px;
  margin-bottom: 30px;
}
.product-container .product-main .goods .box {
  /*box-shadow: 0 0 15px #ffffff75;*/
  border-radius: 30px;
  background-color: #0b090e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.product-container .product-main .goods .box-img {
  overflow: hidden;
}
.product-container .product-main .goods .box-img img {
  width: 130%;
  transform: translateX(-45px);
}
.product-container .product-main .goods .box-body {
  padding: 0px 20px 30px;
}
.product-container .product-main .goods .box-body .pbb .sale {
  font-size: 14px;
  margin-bottom: 10px;
}
.product-container .product-main .goods .box-body .pbb .title {
  font-size: 24px;
  font-weight: bold;
}
.product-container .product-main .goods .box-body .pbb .title a {
  color: inherit;
}
.product-container .product-main .goods .box-body .atr {
  margin-top: 20px;
  margin-bottom: 20px;
}
.product-container .product-main .goods .box-body .atr .taste {
  flex-grow: 1;
  margin-bottom: 10px;
  color: var(--main-text-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-container .product-main .goods .box-body .atr .taste .taste-item {
  margin-bottom: 6px;
  width: 50%;
  flex-shrink: 0;
}
.product-container .product-main .goods .box-body .atr .taste .taste-item .taste-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.product-container .product-main .goods .box-body .atr .taste .taste-item .taste-speed {
  margin-top: 2px;
}
.product-container .product-main .goods .box-body .atr .taste .taste-item .taste-speed .dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.product-container .product-main .goods .box-body .atr .taste .taste-item .taste-speed .dot::before {
  content: "";
  position: absolute;
  height: 100%;
  width: var(--progress);
  background-color: var(--main-text-color);
}
.product-container .product-main .goods .box-body .atr .and {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.product-container .product-main .goods .box-body .atr .and .price {
  font-weight: 500;
  font-size: 24px;
  display: flex;
  align-items: center;
}
.product-container .product-main .goods .box-body .atr .and .su-cart {
  position: relative;
  width: 120px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
.product-container .product-main .goods .box-body .atr .and .su-cart:hover {
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
.product-container .product-main .goods .box-body .atr .and .su-cart input {
  width: 100%;
  text-align: center;
  height: 36px;
  font-size: 22px;
  border: none;
  color: inherit;
  background-color: transparent;
}
.product-container .product-main .goods .box-body .atr .and .su-cart i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
}
.product-container .product-main .goods .box-body .atr .and .su-cart i.cart-reduce {
  left: 0;
}
.product-container .product-main .goods .box-body .atr .and .su-cart i.cart-add {
  right: 0;
}
.product-container .product-main .goods .box-body .add-cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-btn-backgroud-color, #000);
  color: var(--main-btn-text-color, #000);
  height: 45px;
  border-radius: 35px;
}
.product-container .product-main .goods .box-body .add-cart-btn i {
  margin-right: 4px;
  font-size: 18px;
}
.product-container .product-main .goods .box-body .add-cart-btn:hover {
  background-color: #333333;
  color: #fff;
  transition: 0.3s;
}
.product-description {
  max-width: 800px;
  margin: 0 auto 100px;
  margin-top: 40px;
}
.product-description .description-warp {
  background-color: #222;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  line-height: 1.6;
  font-size: 13px;
}
