Segway Xyber赛格威赛博
/* Swiper 样式 */
.my-swiper {
width: 100%; /* 宽度自适应 */
height: 400px; /* 根据需要设置高度 */
position: relative; /* 确保按钮绝对定位 */
}
.swiper-slide {
display: flex; /* 使内容居中 */
justify-content: center;
align-items: center;
}
.ss-pc-img {
max-width: 100%; /* 确保图片宽度自适应 */
height: auto; /* 高度自适应 */
}
/* 按钮样式 */
.swiper-button-prev,
.swiper-button-next {
color: #fff; /* 按钮颜色 */
z-index: 10; /* 确保按钮在其他元素之上 */
}
/* 分页器样式 */
.swiper-pagination {
position: absolute; /* 绝对定位 */
bottom: 10px; /* 距底部距离 */
left: 50%; /* 水平居中 */
transform: translateX(-50%); /* 进一步居中 */
}