//css for GrouponSwiper
.cbk-swiper-container {
    position: relative;
    overflow: hidden;
}

.swiper-container--shadow {
    &:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 60;
    }
}

.cbk-swiper {
    overflow: hidden;
}

.stackBlurImg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 20;
}

.cbk-swiper-content{
    height:100%;
}

.cbk-swiper-item{
    position: relative;
    height:100%;
}

.cbk-swiper-lastItem{
    position: relative;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: 50% 50%!important;
    .cbk-swiper-img {
        position: absolute;
        top:0;
        left:0;
        filter: blur(5px);
    }
}

.cbk-swiper-img {
    height: 100%; // ie内核不支持, 手机浏览器不考虑ie内核
    object-fit: cover;
    object-position: bottom;
    width: 100%;
}

.cbk-swiper__pagination{
    position: absolute;
    right: 0.75rem;
    bottom: 1.25rem;
    height: 1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 0px 0.6rem;
    font-size: 0.6rem;
    font-weight: 400;
    z-index: 20;
    color: rgb(255, 255, 255);
}
