.lemei-featured-products {
  padding: 6rem 0;
  background: var(--bg-color);
  overflow: hidden;
}

.lemei-featured-products .tit {
  position: relative;
  margin-bottom: 3rem;
}
.lemei-featured-products .tit h2 {
  margin-bottom: 2rem;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

/* 轮播翻页器 */
.lemei-featured-products .swiper-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.lemei-featured-products .swiper-controls .swiper-button-next,
.lemei-featured-products .swiper-controls .swiper-button-prev {
  position: static;
  width: 54px;
  height: 54px;
  background: #000000;
  border-radius: 50%;
  opacity: 0.55;
  text-align: center;
}
.lemei-featured-products .swiper-controls .swiper-button-next i,
.lemei-featured-products .swiper-controls .swiper-button-prev i {
  font-size: 16px;
  line-height: 54px;
  color: #fff;
}
.lemei-featured-products .swiper-controls .swiper-button-next::after,
.lemei-featured-products .swiper-controls .swiper-button-prev::after {
  content: none;
}


.lemei-featured-products .theme-btn {
  /* display: none; */
  width: 180px;
  height: 54px;
  display: flex;
  margin: 38px auto 0;
  background: linear-gradient(90deg, var(--color-primary), #29349796);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.36);
  border-radius: 27px;
  color: #fff;
  font-size: 18px;
  line-height: 54px;
  font-weight: 500;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  align-items: center;
  justify-content: center;
}
.lemei-featured-products .product-card:hover .theme-btn{
 display: flex;
}
.lemei-featured-products .theme-btn:hover {
  background: linear-gradient(180deg, var(--color-primary),#7b81bf);
}
.lemei-featured-products .theme-btn span {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #FFFFFF;
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.15);
  border-radius: 27px;
  margin-left: 9px;
}
.lemei-featured-products .theme-btn span i {
  color: var(--color-primary);
  line-height: 34px;
}

.lemei-featured-products .products-wrapper .swiper {
  width: calc(100% + 200px); 
  margin-right: -200px; 
  padding-right: 200px;
}

.lemei-featured-products .product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lemei-featured-products .product-card:hover {
  box-shadow: 0px 5px 27px 0px rgba(0,0,0,0.13);
}

.lemei-featured-products .product-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 10px 10px 0 0;
}

.lemei-featured-products .product-info {
  padding: 16px;
  position: relative;
  text-align: center;
}

.lemei-featured-products .product-title {
  font-size: 1.1em;
  margin: 8px 0;
  color: #333;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lemei-featured-products .product-info p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}


@media (max-width: 576px) {
  .lemei-featured-products {
    padding: 2rem 0;
  }
}


@media screen and (max-width: 1281px) {
  .lemei-featured-products .tit h2{font-size: 34px;}
}
@media screen and (max-width: 1171px) {
  .lemei-featured-products .tit h2{font-size: 30px;}
}
@media screen and (max-width: 992px) {
  .lemei-featured-products .tit h2{font-size: 26px;}
  .lemei-featured-products .theme-btn {width: 135px;height: 45px;font-size: 14px;line-height: 45px;}
  .lemei-featured-products .theme-btn span {width: 25px;height: 25px;}
  .lemei-featured-products .theme-btn span i {line-height: 25px;}
  .lemei-featured-products .swiper-controls .swiper-button-next, .lemei-featured-products .swiper-controls .swiper-button-prev {width: 40px;height: 40px;}
}
@media screen and (max-width: 768px) {
  .lemei-featured-products .tit h2{font-size: 24px;}
}
@media screen and (max-width: 480px) {
  .lemei-featured-products .tit h2{font-size: 22px;}
  .lemei-featured-products .swiper-controls .swiper-button-next, .lemei-featured-products .swiper-controls .swiper-button-prev {width: 30px;height: 30px;}
}