.lemei-featured-products {
  padding: 6rem 0;
  background: #f8f7f7;
  overflow: hidden;
}
.lemei-featured-products .products-wrapper {
  width: 100%;
  overflow: hidden;
}
.lemei-featured-products .tit {
  position: relative;
  margin-bottom: 3rem;
}
.lemei-featured-products .tit h2 {
  margin-bottom: 2rem;
  font-size: 50px;
  line-height: 1;
}

.lemei-featured-products .tit p {
  font-size: 18px; 
  font-family: "Arial", "Microsoft YaHei", sans-serif; 
  color: #1f1f1f; 
  line-height: 1.2; 
  margin: 0;
  letter-spacing: 0.5px; 
  opacity: 0.9; 
}

/* 轮播翻页器 */
.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.15;
  text-align: center;
  display: none;
}
.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;
  margin: 38px auto 0;
  background-color: var(--color-primary);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.36);
  border-radius: 27px;
  color: #fff;
  font-size: 16px;
  line-height: 54px;
  font-weight: 600;
  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-color: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.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;
}
.lemei-featured-products .product-info p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;

  
}


@media (max-width: 576px) {
  .lemei-featured-products .tit p {
    font-size: 16px; 
    line-height: 1; 
  }

  .lemei-featured-products {
    padding: 2rem 0;
  }
}