/* ----------------------------------------------
 ** 能源平台 -- 轮播组件样式
 ** loke 2018-03-02 16:39:51
 ** ------------------------------------------- */

.sui-carousel {
    touch-action: none;
    .swipe-wrap {
        padding-bottom: 5px;
        > span {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 3px;
            background: #fff;
            margin: 0 5px;
            &.active {
                width: 10px;
                background: #fcb650;
            }
        }
    }
    &.carousel-vertical {
        [class*=slider-decorator]{
            top: 50%;
            right: 0;
            left: inherit !important;
            bottom: inherit !important;
            transform: translateY(-50%) !important;
            .swipe-wrap {
                padding-bottom: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                >span {
                    margin: 4px 5px;
                    &.active {
                        width: 6px;
                        height: 10px;
                    }
                }
            }
        }
    }
}

