
/* ==================== 框架轮播上下居中问题 ==================== */
.flickity-slider .row {
    top: 0;
}

.flickity-prev-next-button svg {
    height: auto;
    left: 50%;
    max-height: 100%;
    max-width: 100%;
    padding: 30%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
    width: 100%;
}


.slider-nav-circle .flickity-prev-next-button svg {
    border: 0;
    border-radius: 100%;
    background: #000000b5;
    color: #fff;
}


/*====================轮播圆点 点位====================*/

.flickity-page-dots .dot{

    background: #fff;
    border-width: 6px;
}

/*====================文章/产品轮播 点位====================*/
.flickity-page-dots{
    bottom: 0px;
}
.row-slider .flickity-page-dots {
    bottom: 10px;
}



/*首页点位在内侧*/
.home-banner .flickity-page-dots {
    bottom: 20px !important;
}

/*轮播数量小圆点移动端缩小*/
@media screen and (max-width: 768px) { 
    .row-slider .flickity-page-dots .dot,
    .flickity-page-dots .dot{
        border-width: 3px;
        height: 5px;
        width: 5px;
    }

}



