.product-recommendation{
    width: 100%;
}

.product-recommendation .swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-recommendation-item{
    width: 25%; 
    margin-right: 12px;
}

.product-recommendation-item a{
    width: 100%;
}

.product-recommendation .swiper-button-next:empty, .product-recommendation .swiper-button-prev:empty{
    display: block;
}

.product-recommendation-swiper-next, .product-recommendation-swiper-prev{
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #E5F5F5;
    color: #6e7079;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.product-recommendation-swiper-next svg, .product-recommendation-swiper-prev svg{
    width: 14px;
    height: 14px;
}

.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}


.product-recommendation-item-image{
    position: relative;
    width: 100%;
    padding-bottom: calc(100% / 1) !important;
}

.product-recommendation-item-image img{
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-recommendation-item-content{
    margin-top: 1rem;
}

.product-recommendation-item-title{
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 定义显示的行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-recommendation-item-price{
    margin-top: 1rem;
}

.product-recommendation-title{
    margin-bottom: 1rem;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    display: none;
}

@media screen and (max-width: 750px) {
    .product-recommendation-promote .swiper-wrapper{
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .product-recommendation-item{
        width: calc(50% - 5px);
        margin-bottom: 20px;
        margin-right: 0;
    }
    .product-recommendation-swiper-next, .product-recommendation-swiper-prev{
        display: none;
    }

    .product-recommendation-promote-wrapper{
        padding: 0 1.5rem;
    }
}