swiperItem.less
1.83 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
@charset "UTF-8";
.swiper-box {
position: relative;
width: 750px;
height: auto;
margin-bottom: 50px;
overflow: hidden;
.swipe {
margin: 0 auto;
max-width: 670px;
height: 100%;
.swipe-item {
width: 100%;
height: 100%;
.app_list_box{
min-height: 180px;
.app_list{
padding: 0px 3px;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
.item{
width:90px;
margin:40px 26px 0 26px;
img{
width:90px;
height: 90px;
border-radius: 90px;
}
div{
height:30px;
font-size:22px;
font-weight:300;
color:rgba(74,74,74,1);
line-height:30px;
text-align: center;
margin-top: 10px;
}
}
.item:nth-child(1), .item:nth-child(6){
margin-left: 0px;
}
.item:nth-child(5), .item:nth-child(10){
margin-right: 0px;
}
}
}
}
/deep/ .van-swipe__indicators {
left: unset;
right: 26px;
bottom: 20px;
.van-swipe__indicator {
background-color: rgba(255, 255, 255, 0.5);
width: 8px;
height: 8px;
margin: 0 4px;
opacity: unset;
border-radius: 50%;
&.van-swipe__indicator--active {
background-color: rgba(255, 207, 87, 1);
width: 16px;
border-radius: 4px;
}
}
}
}
}