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

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

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

.products-detail .swiper-slide img {
  width: 100%;
  aspect-ratio: 640 / 640;
  display: block;
}

.products-detail .swiper-gallery .swiper-slide img {
  border-radius: 10px;
}

.products-detail .title {
  text-align: left;
  line-height: calc(46 / 30);
  margin-bottom: 12px;
}

.products-detail .sub-info {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
}

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

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

.products-detail .row>div {
  margin-bottom: 24px;
}

.products-detail .block {
  height: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.products-detail .tit {
  margin-bottom: 16px;
}

.products-detail .color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.products-detail .color-list li {
  width: 54px;
  height: 54px;
  padding: 3px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E8E8E8;
}

.products-detail .color-list li span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.products-detail .size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-detail .size-list li {
  min-width: 100px;
  font-size: 14px;
  padding: 3px 7px;
  text-align: center;
  border-radius: 4px;
  color: var(--style-color);
  border: 0.5px solid var(--style-color);
  background: rgba(74, 170, 62, 0.10);
}

.products-detail .btn-wrap {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.products-detail .btn {
  width: 100%;
  color: #fff;
  padding: 12px 15px;
  border-radius: 4px;
  line-height: calc(34 / 22);
}

.products-detail .btn:first-child {
  background: var(--bg-color);
}

.products-detail .btn:last-child {
  background: var(--sub-color);
}

@media (min-width: 576px) {
  .products-detail .row {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 0;
    position: relative;
  }

  .products-detail .row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #E8E8E8;
    display: block;
  }

  .products-detail .row>div {
    padding: 0 20px;
  }

  .products-detail .btn-wrap {
    display: flex;
  }

  .products-detail .btn {
    width: calc(50% - 10px);
  }
}

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

  .products-detail .lt-nav {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .products-detail .swiper-thumbs {
    margin-top: 18px;
    padding: 0 40px;
    display: block;
    position: relative;
  }

  .products-detail .swiper-thumbs .swiper-slide img {
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    cursor: pointer;
  }

  .products-detail .swiper-thumbs .swiper-slide-thumb-active img {
    border-color: var(--style-color);
  }

  .products-detail .prev-btn, .products-detail .next-btn {
    width: 20px;
    height: 50px;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    background: var(--style-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .products-detail .swiper-button-disabled {
    color: #333;
    background: #E6E6E6;
  }
}

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

  .products-detail .container {
    display: flex;
  }

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

  .products-detail .rt-content {
    flex: 1;
    padding-left: 30px;
  }

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

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

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

  .products-detail .lt-nav {
    width: 640px;
  }

  .products-detail .rt-content {
    padding-left: 60px;
  }

  .products-detail .row {
    margin-left: -30px;
    margin-right: -30px;
  }

  .products-detail .row>div {
    padding: 0 30px;
  }
}


/* description */
.description {
  padding: 30px 0;
  background: #F6F7F9;
}

.description .title {
  margin-bottom: 15px;
}

.description .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.description .lt {
  margin-bottom: 20px;
}

.description .tit {
  margin-bottom: 10px;
}

.description .info>*:not(:last-child) {
  margin-bottom: 14px;
}

.description .rt img {
  width: 100%;
  border-radius: 14px;
}

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

  .description .title {
    margin-bottom: 30px;
  }

  .description .sub-info {
    margin-bottom: 40px;
  }

  .description .item-wrap {
    display: flex;
  }

  .description .lt {
    flex: 1;
    padding-right: 30px;
    margin-bottom: 0;
  }

  .description .tit {
    margin-bottom: 17px;
  }

  .description .rt {
    flex: 0 0 calc((780 / 1400) * 100%);
  }
}

@media (min-width: 1440px) {
  .description {
    padding-top: 100px;
  }

  .description .lt {
    padding-top: 10px;
    padding-right: 60px;
  }
}


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

.specifications .title {
  margin-bottom: 15px;
}

.specifications .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.specifications .info table {
  border-radius: 14px;
  border-spacing: 0;
  border: 1px solid #E8E8E8;
  border-collapse: separate !important;
  overflow: hidden;
}

.specifications .info table tr:nth-child(odd) {
  background: #FAFDFB;
}

.specifications .info table tr:first-child {
  color: #fff;
  background: var(--style-color);
}

.specifications .info table tr>* {
  border: none;
}

.specifications .info table tr:not(:last-child)>* {
  border-bottom: 1px solid #E8E8E8;
}

.specifications .info table tr>*:not(:last-child) {
  border-right: 1px solid #E8E8E8;
}

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

  .specifications .title {
    margin-bottom: 30px;
  }

  .specifications .sub-info {
    margin-bottom: 40px;
  }

  .specifications .info table tr {
    height: 60px;
  }
}

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


/* process */
.process {
  padding: 30px 0;
  color: #fff;
  background: var(--style-color);
}

.process .title {
  color: #fff;
  margin-bottom: 15px;
}

.process .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.process .lt {
  margin-bottom: 20px;
}

.process .lt img {
  width: 100%;
  border-radius: 14px;
}

.process .tit {
  color: #fff;
  margin-bottom: 10px;
}

.process .info>*:not(:last-child, ul), .process .info ul>li:not(:last-child) {
  margin-bottom: 12px;
}

.process .info ul {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  padding-left: 0;
}

.process .info ul li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.process .info ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.process .info>*:first-child {
  margin-top: 0;
}

.process .info>*:last-child {
  margin-bottom: 0;
}

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

  .process .title {
    margin-bottom: 30px;
  }

  .process .sub-info {
    margin-bottom: 40px;
  }

  .process .item-wrap {
    display: flex;
  }

  .process .lt {
    flex: 0 0 calc((680 / 1400) * 100%);
    margin-bottom: 0;
  }

  .process .rt {
    flex: 1;
    padding-left: 30px;
  }

  .process .tit {
    margin-bottom: 16px;
  }

  .process .info ul {
    margin-left: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1440px) {
  .description {
    padding-top: 100px;
  }

  .process .rt {
    padding-top: 20px;
    padding-left: 50px;
  }
}


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

.decoration .title {
  margin-bottom: 15px;
}

.decoration .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.decoration .row {
  margin-bottom: -20px;
}

.decoration .row>div {
  margin-bottom: 20px;
}

.decoration .row img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 440 / 300;
}

.decoration .tit {
  margin-top: 20px;
  margin-bottom: 11px;
}

.decoration .bottom-wrap {
  padding: 20px;
  color: #fff;
  margin-top: 30px;
  border-radius: 14px;
  background: var(--style-color);
}

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

  .decoration .title {
    margin-bottom: 30px;
  }

  .decoration .sub-info {
    margin-bottom: 40px;
  }

  .decoration .bottom-wrap {
    margin-top: 60px;
  }
}

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


/* related-products */
.related-products {
  padding-bottom: 30px;
}

.related-products .title {
  margin-bottom: 15px;
}

.related-products .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.related-products .scale-img {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #E8E8E8;
  background: #FBFCFB;
}

.related-products .scale-img img {
  width: 100%;
  aspect-ratio: 290 / 290;
}

.related-products .tit {
  margin-top: 15px;
  margin-bottom: 8px;
}

.related-products .info {
  height: 4.5em;
}

.related-products .btn {
  width: 100%;
  margin-top: 20px;
  line-height: 22px;
  padding: 11px 15px;
  border-radius: 4px;
  color: var(--style-color);
  border: 1px solid var(--style-color);
}

@media (min-width: 768px) {
  .related-products .swiper-wrap {
    position: relative;
    padding: 0 30px;
  }

  .related-products .prev-btn, .related-products .next-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .related-products .prev-btn {
    transform: translate(-50%, -50%);
  }

  .related-products .next-btn {
    transform: translate(50%, -50%);
  }

  .related-products .swiper-button-disabled {
    color: var(--style-color);
    background: #fff;
    border: 1px solid var(--style-color);
  }
}

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

  .related-products .title {
    margin-bottom: 30px;
  }

  .related-products .sub-info {
    margin-bottom: 40px;
  }

  .related-products .tit {
    margin-top: 22px;
  }

  .related-products .tit a:hover {
    color: var(--style-color);
  }

  .related-products .btn {
    margin-top: 22px;
  }

  .related-products .btn:hover {
    color: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
    background: var(--bg-color);
    border: none;
  }
}

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

@media (min-width: 1640px) {
  .related-products .swiper-wrap {
    padding: 0;
  }

  .related-products .prev-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    left: -30px;
    transform: translate(-100%, -50%);
  }

  .related-products .next-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    right: -30px;
    transform: translate(100%, -50%);
  }
}