| 12345678910111213141516171819202122232425262728293031323334353637 |
- @import '/app.wxss';
- .swiper {
- width: 100%;
- height: 282rpx;
- position: relative;
- }
- .swiper swiper {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .swiper swiper .slide-image {
- width: 100%;
- height: 100%;
- }
- .swiper .dots {
- position: absolute;
- right: 40rpx;
- bottom: 20rpx;
- }
- .swiper .dots .dot {
- width: 12rpx;
- height: 12rpx;
- border: 2rpx solid #fff;
- border-radius: 50%;
- margin-right: 15rpx;
- }
- .swiper .dots .dot.active {
- border-color: #e93323;
- background-color: #e93323;
- }
|