.products-detail {
  padding-top: 30px;
}

.products-detail .pdt-group {
  margin-bottom: 30px;
}

.products-detail .lt {
  margin-bottom: 20px;
}

.products-detail .swiper-gallery .swiper-container {
  box-shadow: 0 0 10px #ddd;
}

.products-detail .swiper-thumbs {
  display: none;
}

.products-detail .title {
  text-align: left;
  font-weight: 900;
  margin-bottom: 20px;
}

.products-detail .sub-info {
  margin-bottom: 20px;
}

.products-detail .sub-info ul {
  padding-left: 20px;
}

.products-detail .sub-info>*:not(:last-child) {
  margin-bottom: 20px;
}

.products-detail .btn {
  width: 110px;
  color: #fff;
  font-size: 14px;
  background: #333;
}

.products-detail .btn-wrap .btn:first-child {
  margin-right: 10px;
}

.products-detail .tab-list li {
  padding: 7px 15px;
  color: #fff;
  background: #333;
  cursor: pointer;
}

.products-detail .tab-list li.active {
  background: var(--style-color);
}

.products-detail .tab-content {
  padding-top: 20px;
}

.products-detail .tab-pane ul {
  padding-left: 20px;
}

.products-detail .tab-pane>*:not(:last-child) {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .products-detail .swiper-thumbs {
    margin: 0 -10px -10px;
    padding: 10px;
    display: block;
  }

  .products-detail .swiper-thumbs .swiper-slide {
    padding: 3px;
    border: 1px solid #ddd;
    cursor: pointer;
  }

  .products-detail .swiper-thumbs .swiper-slide:not(.swiper-slide-thumb-active) img {
    opacity: 0.4;
  }

  .products-detail .swiper-thumbs .swiper-slide-thumb-active {
    box-shadow: 0 0 10px #ddd;
  }

  .products-detail .tab-list {
    background: #d6d6d6;
    justify-content: flex-start;
  }

  .products-detail .tab-list li:not(:last-child) {
    margin-right: 16px;
  }
}

@media (min-width: 992px) {
  .products-detail .pdt-group {
    display: flex;
  }

  .products-detail .lt {
    width: 400px;
    margin-bottom: 0;
  }

  .products-detail .rt {
    flex: 0 0 calc(100% - 400px);
    max-width: calc(100% - 400px);
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .products-detail {
    padding-top: 64px;
  }

  .products-detail .pdt-group {
    margin-bottom: 40px;
  }

  .products-detail .lt {
    width: 500px;
  }

  .products-detail .swiper-gallery {
    position: relative;
  }

  .products-detail .swiper-gallery #zoom-wrap {
    position: absolute;
    left: calc(100% + 20px);
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--style-color);
    background-color: #fff;
    z-index: 11;
    display: none;
  }

  .products-detail .rt {
    flex: 0 0 calc(100% - 500px);
    max-width: calc(100% - 500px);
    padding-left: 50px;
  }

  .products-detail .title {
    margin-bottom: 32px;
  }

  .products-detail .sub-info {
    margin-bottom: 32px;
  }

  .products-detail .btn {
    transition: background .3s;
  }

  .products-detail .btn:hover {
    background: var(--style-color);
  }

  .products-detail .tab-list li {
    font-size: 18px;
    padding: 10px 32px;
  }

  .products-detail .tab-list li:not(:last-child) {
    margin-right: 32px;
  }

  .products-detail .tab-content {
    padding-top: 32px;
  }
}

@media (min-width: 1440px) {
  .products-detail .rt {
    padding-left: 75px;
  }
}


/* recommend */
.recommend {
  padding: 30px 0;
}

.recommend .title {
  font-weight: 900;
  text-align: left;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.recommend .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 5;
  width: 96px;
  height: 1px;
  background: var(--style-color);
}

.recommend .img {
  border: 1px solid #ced4da;
}

.recommend .img img {
  width: 100%;
  aspect-ratio: 329 / 329;
}

.recommend .tit {
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .recommend .swiper-wrap {
    position: relative;
  }

  .recommend .tit {
    height: 48px;
  }

  .recommend .prev-btn, .recommend .next-btn {
    top: calc(50% - 24px);
    width: 24px;
    height: 48px;
    color: #fff;
    background: var(--style-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.25);
  }

  .recommend .swiper-wrap .swiper-button-disabled {
    color: var(--style-color);
    background: #fff;
  }
}

@media (min-width: 1200px) {
  .recommend {
    padding: 64px 0;
  }

  .recommend .title {
    margin-bottom: 32px;
  }
}

@media (min-width: 1440px) {
  .recommend {
    padding-bottom: 80px;
  }
}