carousel.wxss
616 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.resource-shop-carousel {
position: relative;
width: 100%;
font-size: 0;
}
.resource-shop-carousel .swiper-wrapper {
height: 234rpx;
}
.resource-shop-carousel .slide-image {
width: 100%;
}
.resource-shop-carousel .dots {
position: absolute;
left: 0;
right: 0;
bottom: 30rpx;
display: flex;
justify-content: center;
}
.resource-shop-carousel .dots .dot {
margin: 0 8rpx;
width: 10rpx;
height: 10rpx;
opacity: 0.7;
background: #fff;
}
.resource-shop-carousel .dots .dot.active {
opacity: 1;
width: 20rpx;
}
.resource-shop-carousel.margin-bottom-20 {
margin-bottom: 20rpx;
}