
/* 产品推荐轮播图模块 */
.featured-products{
    background-color: #1E73BD;
    width: 376px;
    padding: 20px 28px;
    position: relative;
}
.swiper.featured-products-swiper{
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}
.featured-products-next,.featured-products-prev{
    position: absolute;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    top: 122px;
    z-index: 2;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.featured-products-next{
    right: 2px;
}
.featured-products-prev{
    left: 2px;
}
.featured-products .featured-products-swiper .featured-products-pagination{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
}
/* 产品详情的blog推荐 */
.prpduct-detail-blog.featured-products .featured-products-swiper .featured-products-pagination{
    bottom: 34px;
}

.featured-products:not(.prpduct-detail-blog) .featured-products-swiper .featured-products-pagination .swiper-pagination-bullet-active,.featured-products:not(.prpduct-detail-blog) .swiper-pagination-bullet{
    background-color: #fff;
}

.featured-products-title{
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: #fff;
    margin-bottom: 26px;
    text-align: center;
}
.left-featured-products-title{
    font-size: 16px;
    font-weight: 700;
    line-height: 21.28px;
    text-align: left;
    margin-bottom: 10px;
    color: #333333;
}
.featured-products-swiper .swiper-slide{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: auto;
}
.featured-read-more{
    margin-top: auto;
}
.featured-products-swiper img{
    width: 100%;
    height: 265px;
    vertical-align: top;
    object-fit: cover;
}
.swiper-slide-item{
    height: 60px;
    background-color: #40474C;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    padding: 0 10px;
    width: 100%;
}
.swiper-slide-item .drop-right-btn{
    background-color: var(--color);
}
.featured-products-footer{
    background-color: #fff;
    padding: 8px 19px 15px;
    flex: 1;
}
.featured-title{
    line-height: 25px;
    height: 50px;
    cursor: pointer;
    color: var(--color);
    margin-bottom: 10px;
    font-weight: 700;
}
.featured-subtitle{
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
}
.featured-read-more span{
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    color: var(--color);
    border-bottom: 1px solid var(--color);
}
/* 产品详情页右侧blog推荐 */
.prpduct-detail-blog{
    width: 100%;
    padding: 0;
    background: #fff;
}
.prpduct-detail-blog .featured-products-title{
    color: #333333;
}
.prpduct-detail-blog .featured-products-swiper .swiper-slide{
    padding: 1px;
}
.prpduct-detail-blog .featured-products-footer{
    box-shadow: 0px 1px 4px 0px #00000040;
    padding: 15px 14px;
}
.prpduct-detail-blog .swiper.featured-products-swiper{
    padding-bottom: 82px;
}
/*Mobile*/
@media screen and (max-width: 1024px) {
    .featured-products{
        width: 100%;
        padding: 0.54rem 0.3rem 0.57rem;
    }
    .featured-products-title{
        font-size: 0.28rem;
        line-height: 1;
    }
    .featured-products-swiper img{
        height: 5.75rem;
    }
    .featured-products-swiper{
        padding-bottom: 0.8rem;
    }
    .swiper-slide-item{
        height: 1.04rem;
    }
    .featured-products-next,.featured-products-prev{
        display: none;
    }
    .swiper-slide-item .drop-right-btn{
        margin-left: 0.2rem;
        width: 0.26rem;
        height: 0.26rem;
    }
}