swiper.scss 1.06 KB
.swiper2 {
    width: 100%;
    height: 100%;
    position: relative;

    .swiper {
        width: 100%;
        height: 100%;

        // margin-left: 21px;
        .swiper-pagination {
            width: 100px;
            display: flex;
            position: absolute;
            bottom: 33px;
            left: 50%;
            margin-left: -50px;
            flex-direction: row;
            justify-content: space-between;

            .swiper-pagination-bullet {
                width: 26.89px;
                height: 4px;
                background-color: black;
                border-radius: 15px 15px 15px 15px;
            }

            .swiper-pagination-bullet-active {
                background: #FFFFFF;
            }
        }
    }

    .swiper-wrapper {
        width: 100%;
        height: 100%;

        .swiper-slide {
            width: 100%;
            height: 100%;

            img {
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 10px 10px 10px 10px;
            }
        }
    }
}