/* src/styles/global.css */
.swiper-pagination-bullet {
    width: 6px; /* 原点的宽度 */
    height: 6px; /* 原点的高度 */
    background-color: #fff; /* 原点的颜色 */
    border-radius: 50%; /* 原点的圆角 */
    opacity: 1; /* 选中时的透明度 */
}

.swiper-pagination-bullet-active {
    width: 46px; /* 选中时的宽度 */
    height: 6px; /* 选中时的高度 */
    background-color: #fff; /* 选中时的颜色 */
    border-radius: 5px; /* 选中时的圆角 */
    opacity: 1; /* 选中时的透明度 */
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px; /* 分页器之间的间距 */
}