app.wxss
1.3 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**app.wxss**/
.register {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 99;
}
image{
width:100%;
height:100%;
}
/* 轮播图 */
.swiper_image{
width:750rpx;
height:376rpx;
font-size: 0;
margin: 30rpx auto 0;
position: relative;
box-shadow:0px -1px 6px 0px rgba(212,137,96,0.11);
}
.swiper_item_img{
height:376rpx;
}
.swiper_image image{
width:100%;
height:100%;
/* box-shadow:0px -1px 6px 0px rgba(212,137,96,0.11); */
}
.swiper_item_img swiper-item{
width:686rpx;
height:376rpx;
box-shadow:0px -1px 6px 0px rgba(212,137,96,0.11);
display:felx;
align-items: center;justify-content: center;
}
.swiper_item_img swiper-item image{
width:100%;
height:100%;
}
.dots{
/* width: 156rpx; */
display: flex;
align-items: center;
flex-direction: row;
position: absolute;
justify-content: center;
left: 0;
right:0;
bottom: 20rpx;
}
/*未选中时的小圆点样式 */
.dot{
width: 12rpx;
height: 12rpx;
border-radius: 50%;
margin-right: 26rpx;
background-color:#fff;
}
/*选中以后的小圆点样式 */
.active{
width: 12rpx;
height: 12rpx;
border-radius:50%;
background-color: #FF5A4E;
}