body {
  background-color: #f4f6f9;
}

@font-face {
  font-family: 'BEBASNEUEBOLD';
  src: url('../public/Themes/fonts/BEBASNEUEBOLD.OTF');
}

@media (min-width: 1024px) {
  .nav-wrap .container {
    justify-content: flex-end;
  }
}


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

.products-detail .item-wrap {
  padding: 30px 30px 50px;
  background-color: #fff;
}

.products-detail .lt-nav {
  max-width: 518px;
  overflow: hidden;
  border: 1px solid #dfe1e4;
  border-radius: 20px;
  margin-bottom: 30px;
}

.products-detail .lt-nav img {
  width: 100%;
  aspect-ratio: 518 / 370;
  border-radius: 20px;
}

.products-detail .title {
  text-align: left;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}

.products-detail .sub-info {
  color: #646464;
  line-height: 28px;
  margin-bottom: 30px;
}

.products-detail .tel-wrap>* {
  line-height: 1.5;
  color: #646464;
}

.products-detail .tel-wrap h2 {
  text-align: left;
  color: var(--style-color);
  font-family: 'BEBASNEUEBOLD';
}

.products-detail .info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e8e8e8;
}

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

.products-detail .info h2 {
  font-size: 18px;
  color: #424242;
  font-weight: normal;
  text-align: left;
  margin-bottom: 15px;
}

.products-detail .info>*:not(h2) {
  font-size: 16px;
  color: #7d7c7c;
  line-height: 30px;
}

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

  .products-detail .item-wrap {
    padding: 45px 45px 80px;
  }

  .products-detail .top-wrap {
    display: flex;
    align-items: center;
  }

  .products-detail .lt-nav {
    width: 518px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

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

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

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

  .products-detail .info {
    margin-top: 50px;
    padding-top: 50px;
  }

  .products-detail .info h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

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

  .products-detail .item-wrap {
    padding: 64px 64px 120px;
  }

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


/* recommend */
.recommend {
  padding-top: 30px;
  padding-bottom: 30px;
}

.recommend .top-wrap {
  margin-bottom: 20px;
}

.recommend .title {
  text-align: left;
  margin-bottom: 10px;
}

.recommend .sub-tit {
  color: #414243;
  opacity: .65;
}

.recommend .block {
  display: block;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.recommend .img {
  border-radius: 10px 6px 6px 10px;
  overflow: hidden;
}

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

.recommend .info-group {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 64.27%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  background: #fff;
  border-radius: 0 0 50% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.recommend .icon {
  width: auto;
  height: 83px;
}

.recommend .tit {
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.recommend .info {
  font-size: 14px;
  color: #8e8e8e;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .recommend .top-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .recommend .btn-wrap {
    gap: 10px;
    display: flex;
  }

  .recommend .prev-btn, .recommend .next-btn {
    position: static;
    transform: translateY(0);
    width: 35px;
    height: 35px;
    font-size: 12px;
    color: #848484;
    border-radius: 50%;
    border: 2px solid rgba(116, 116, 116, .25);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recommend .swiper-button-disabled {
    opacity: 1;
    visibility: visible;
  }
}

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

  .recommend .top-wrap {
    margin-bottom: 44px;
  }

  .recommend .img img {
    transition: all 0.9s ease-in-out;
  }

  .recommend .block:hover .img img {
    transform: scale(1.05);
  }

  .recommend .info-group {
    padding-left: 38px;
    padding-right: 38px;
  }

  .recommend .tit {
    margin-top: 26px;
    margin-bottom: 16px;
  }

  .recommend .prev-btn, .recommend .next-btn {
    width: 45px;
    height: 45px;
  }

  .recommend .prev-btn:hover, .recommend .next-btn:hover {
    color: #fff;
    border-color: var(--style-color);
    background: var(--style-color);
  }
}

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