.fixed-swiper{
    background: #FFFFFF;
    width: 300px;
    height: 255px;
    box-sizing: border-box;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 100;
    padding: 17px;
    box-shadow: 0 0 12px 7px rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.fixed-swiper .close-icon{
    position: absolute;
    top: -12px;
    right: -14px;
    width: 30px;
    height: 30px;
    background: url(../image/fixed-swiper-close.png);
    background-size: cover;
}

.fixed-swiper .close-icon:hover{
    cursor: pointer;
}

.fixed-swiper-content{
    padding-bottom: 5px;
    border-bottom: 1px dashed #E6E6E6;
}
.fixed-swiper-content img{
    width: 100%;
    height: 100%;
    /*width:298px;*/
    /*height: 170px;*/
}

.fixed-swiper-content .fixed-swiper-desc{
    color: #333333;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 显示两行 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.fixed-swiper-footer{
    position: absolute;
    bottom: 8px;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
    width: 90%;
    z-index: 200;
}


.fixed-swiper-footer #fixed-swiper-footer-prev{
    width: 20px;
    height: 20px;
    background: url("../image/swiper-prev.png");
}

.fixed-swiper-footer #fixed-swiper-footer-next{
    width: 20px;
    height: 20px;
    background: url("../image/swiper-next.png");
}

.fixed-swiper-footer #fixed-swiper-footer-prev:hover{
    cursor: pointer;
}
.fixed-swiper-footer #fixed-swiper-footer-next:hover{
    cursor: pointer;
}

