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

.products-detail .top-row {
  margin-bottom: 30px;
}

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

.products-detail #etalage {
  display: none;
}

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

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

.products-detail .btn {
  width: 100px;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  background: var(--style-color);
}

.products-detail .list-tag #category i {
  margin-right: 5px;
}

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

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

.products-detail .tab-pane {
  padding-top: 15px;
}

.products-detail .tab-pane p {
  line-height: 1.8;
}

.products-detail .tab-pane h2 {
  font-size: 20px;
  text-align: left;
  color: var(--style-color);
}

.products-detail .tab-pane h3 {
  font-size: 18px;
  color: var(--style-color);
}

.products-detail .tab-pane ul,
.products-detail .tab-pane ol {
  padding-left: 16px;
}

.products-detail .tab-pane ol {
  list-style: decimal;
}

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

@media (min-width: 768px) {
  .products-detail .list-tag {
    background: #d6d6d6;
  }

  .products-detail .tab-list {
    margin-left: -16px;
    margin-right: -16px;
    justify-content: flex-start;
  }

  .products-detail .tab-list li {
    margin: 0 16px;
  }
}

@media (min-width: 992px) {
  .products-detail .lt {
    margin-bottom: 0;
  }
}

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

  .products-detail .top-row {
    margin-bottom: 60px;
  }

  .products-detail #etalage {
    display: block;
  }

  .products-detail .swiper-container {
    clear: both;
    display: none;
  }

  .products-detail .btn {
    margin-top: 30px;
  }

  .products-detail .tab-list li {
    padding: 11px 25px;
  }

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

@media (min-width: 1440px) {
  .products-detail .lt {
    flex: 0 0 660px;
    max-width: 660px;
  }

  .products-detail .rt {
    flex: 1;
    max-width: none;
    padding-left: 60px;
  }
}


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

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

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

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

.recommend .prev-btn, .recommend .next-btn {
  top: calc(50% - (34px / 2));
  width: 30px;
  height: 50px;
  font-size: 20px;
  color: #fff;
  background: var(--style-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .recommend .prev-btn, .recommend .next-btn {
    top: calc(50% - (37px / 2));
  }
}

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

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

  .recommend .tit:hover {
    color: var(--style-color);
  }
}

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