/* products-detail */
.products-detail {
  padding: 30px 0;
}

.products-detail .item-wrap {
  margin-bottom: 30px;
}

.products-detail .swiper-thumbs {
  display: none;
}

.products-detail .swiper-slide {
  cursor: pointer;
}

.products-detail .rt {
  margin-top: 20px;
}

.products-detail .title {
  text-align: left;
  margin-bottom: 15px;
}

.products-detail .sub-info {
  line-height: 1.8;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E6E6E6;
}

.products-detail .tit {
  margin-bottom: 15px;
}

.products-detail .params:not(:last-child) {
  margin-bottom: 22px;
}

.products-detail .params-title {
  margin-bottom: 7px;
}

.products-detail .params-item {
  position: relative;
  cursor: pointer;
}

.products-detail .item-title {
  padding: 7px 15px;
  border-radius: 4px;
  color: var(--style-color);
  border: 2px solid var(--style-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-detail .item-info {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, .2);
  display: none;
}

.products-detail .params-item.active .item-info {
  display: block;
}

.products-detail .item {
  padding: 7px 15px;
  color: var(--style-color);
}

.products-detail .btn {
  width: 100%;
  color: #fff;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--style-color);
}

.products-detail .btn i {
  font-size: 26px;
  line-height: 1;
  margin-left: 10px;
}

.products-detail .filter-wrap {
  padding: 28px 20px 30px;
  background: linear-gradient(180deg, #92C0F1 0%, #75A6E1 55%, #5B8FCE 100%);
}

.products-detail .filter-title {
  color: #fff;
  margin-bottom: 15px;
}

.products-detail .filter-group {
  margin-bottom: -10px;
}

.products-detail .filter-item {
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}

.products-detail .filter-tit {
  padding: 7px 15px;
  color: #999;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-detail .filter-tit i {
  font-size: inherit;
  line-height: 1;
}

.products-detail .filter-info {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  z-index: 10;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, .2);
  display: none;
}

.products-detail .filter-item.active .filter-info {
  display: block;
}

.products-detail .filter {
  color: #999;
  padding: 7px 15px;
}

.products-detail .filter-result {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -10px -20px;
}

.products-detail .filter-result li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.products-detail .filter-result img {
  width: 100%;
  border: 1px solid transparent;
  cursor: pointer;
}

.products-detail .filter-result li.active img {
  border-color: var(--style-color);
}

.products-detail .type-tit {
  margin-top: 12px;
  margin-bottom: 1px;
}

.products-detail .filter-type {
  color: #999;
}

.products-detail .products-advantage {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #E6E6E6;
}

.products-detail .advantage-title {
  margin-bottom: 20px;
}

.products-detail .advantage-tit {
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
}

.products-detail .advantage-info {
  max-height: 87px;
  line-height: 1.8;
}

@media(min-width: 500px) {
  .products-detail .filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
  }

  .products-detail .filter-item {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .products-detail .filter-result li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media(min-width: 768px) {
  .products-detail .filter-result li {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media(min-width: 768px) {
  .products-detail .swiper-thumbs {
    margin-top: 22px;
    padding: 0 30px;
    position: relative;
    display: block;
  }

  .products-detail .swiper-thumbs .swiper-slide img {
    border-radius: 4px;
    border: 1px solid transparent;
  }

  .products-detail .swiper-thumbs .swiper-slide-thumb-active img {
    border-color: var(--style-color);
  }

  .products-detail .swiper-thumbs .prev-btn, .products-detail .swiper-thumbs .next-btn {
    font-size: 18px;
    color: var(--style-color);
  }

  .products-detail .swiper-thumbs .swiper-button-disabled {
    color: #333;
  }

  .products-detail .filter-item {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

@media(min-width: 992px) {
  .products-detail .item-wrap {
    display: flex;
  }

  .products-detail .lt {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }

  .products-detail .rt {
    flex: 0 0 37.5%;
    max-width: 37.5%;
    margin-top: 0;
    padding-left: 30px;
  }

  .products-detail .filter-result li {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media(min-width: 1200px) {
  .products-detail {
    padding: 50px 0 64px;
  }

  .products-detail .item-wrap {
    margin-bottom: 45px;
  }

  .products-detail .rt {
    padding-left: 40px;
  }

  .products-detail .title {
    margin-bottom: 29px;
  }

  .products-detail .sub-info {
    padding-bottom: 35px;
    margin-bottom: 36px;
  }

  .products-detail .tit {
    margin-bottom: 20px;
  }

  .products-detail .item-title {
    padding: 11px 24px 10px;
  }

  .products-detail .item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .products-detail .item:hover {
    color: #fff;
    background: var(--sub-color);
  }

  .products-detail .btn {
    margin-top: 40px;
    padding: 11px 15px;
    transition: background .3s;
  }

  .products-detail .btn:hover {
    background: var(--sub-color);
  }

  .products-detail .btn i {
    margin-left: 17px;
  }

  .products-detail .filter-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .products-detail .filter-title {
    margin-bottom: 19px;
  }

  .products-detail .filter-group {
    margin-left: -20px;
    margin-right: -20px;
  }

  .products-detail .filter-item {
    flex: 0 0 calc(33.33% - 40px);
    max-width: calc(33.33% - 40px);
    font-size: 16px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .products-detail .filter-tit {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .products-detail .filter:hover {
    color: #fff;
    background: var(--sub-color);
  }

  .products-detail .filter-result {
    margin: 40px -17px -40px;
  }

  .products-detail .filter-result li {
    padding: 0 17px;
    margin-bottom: 40px;
  }

  .products-detail .products-advantage {
    margin-top: 50px;
    padding-top: 64px;
  }

  .products-detail .advantage-title {
    margin-bottom: 40px;
  }

  .products-detail .advantage-tit {
    margin-top: 21px;
    margin-bottom: 15px;
  }

  .products-detail .advantage-tit:hover {
    color: var(--style-color);
  }
}

@media(min-width: 1440px) {
  .products-detail .filter-result li {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
}

@media(min-width: 1640px) {
  .products-detail .item-wrap {
    margin-bottom: 60px;
  }

  .products-detail .rt {
    padding-left: 60px;
  }

  .products-detail .btn {
    margin-top: 62px;
  }

  .products-detail .filter-result {
    margin-top: 60px;
  }

  .products-detail .filter-result li {
    flex: 0 0 14.28%;
    max-width: 14.28%;
  }
}


/* recommend */
.recommend {
  padding: 30px 0;
  border-top: 1px solid #E6E6E6;
}

.recommend .title {
  margin-bottom: 20px;
}

.recommend .scale-img {
  position: relative;
}

.recommend .scale-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.05) 46%, rgba(0, 0, 0, 0.05) 58%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.recommend .tit {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  color: #fff;
  padding-left: 15px;
}

@media(min-width: 1200px) {
  .recommend {
    padding: 64px 0 70px;
  }

  .recommend .title {
    margin-bottom: 40px;
  }

  .recommend .tit {
    right: 60px;
    bottom: 28px;
  }
}

@media(min-width: 1640px) {
  .recommend {
    padding-bottom: 100px;
  }

  .recommend .tit {
    right: 70px;
  }
}