/* productInfo --start */
.product-info {
  padding-right: 80px;
}

.product-name {
  margin-bottom: 26px;
  font-size: 30px;
}

.product-des {
  margin-bottom: 26px;
  font-size: 20px;
  font-weight: 400;
}

.prodcut-sku-list {
  width: 90%;
  border-top: 1px solid #EFEFF4;
  border-bottom: 1px solid #EFEFF4;
}

.prodcut-sku-list li {
  padding: 8px 0;
  border-bottom: 1px solid #EFEFF4;
  font-size: 16px;
  color: #1b2437;
}

.prodcut-sku-list li:last-child {
  border-bottom: none;
}

.prodcut-sku-list li div:nth-child(2) {
  text-align: right;
  font-weight: bold;
}

.buy-btn {
  margin-top: 36px;
  min-width: 180px;
  border-radius: 0;
  font-size: 20px;
}

.product-box li {
  flex: 1;
}
/* productInfo --end */


/* priceBar --start */
.price-bar {
  margin-top: 40px;
  padding: 0 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.10); 
}

.price-bar small {
  margin-top: 6px;
}

.price-bar-l, .price-bar-r {
  padding: 15px;
}

.price-bar-r {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #1875F0;
  color: #fff;
  cursor: pointer;
}

.price-bar-r h6 {
  color: #fff;
}

.price b {
  font-size: 30px;
  font-weight: bold;
  color: #FF0000;
}

.price small {
  margin-left: 4px;
  font-size: 13px;
}
/* priceBar --end */

/* productDetail --start */
.product-detail {
  border: 1px solid #d8d8d8;
}

.product-detail img {
  max-width: 100%;
}

.detail-nav {
  height: 100%;
  padding: 20px 15px 20px 50px;
  background: #f1f7fe;
}

.detail-nav li {
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 500;
  /* text-align: center; */
  color: #333333;
  line-height: 28px;
  cursor: pointer;
}

.detail-nav-active {
  position: relative;
  color: #1875F0!important;
}
.detail-nav-active::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1875F0;
}

.detail-title {
  position: relative;
  margin: 20px 0;
  padding-left: 12px;
  font-size: 19px;
  font-weight: bold;
  color: #333333;
}

.detail-title::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  border-radius: 6px;
  background: #1875F0;
}

.detail-content {
  padding: 20px 50px;
}
/* productDetail --end */

#product-pop-up {
  top: 30%;
  left: 30%;
  position: fixed;
  width: 500px;
  height: 300px;
  background-color: #fbfbfb;
  border: 1px solid #cbcaca;
  border-radius: 25px;
  box-shadow: 5px 5px 20px #888888
}