home.scss
727 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
40
41
42
43
44
45
.page{
position: relative;
width: 100%;
overflow: hidden;
}
.cent {
position: fixed;
bottom: 0;
width: 100%;
.list {
flex-wrap: wrap;
.on {
border: 2rpx solid sandybrown;
border-radius: 18rpx;
}
.item {
width: 20%;
height: 100rpx;
text-align: center;
font-size: 22rpx;
font-weight: 500;
color: #676767;
background: #FFFFFF;
// box-sizing: border-box;
padding: 20rpx 0rpx;
margin-left: 4%;
margin-bottom: 20rpx;
border-radius: 18rpx;
}
}
.list1 {
background: #FFFFFF;
padding: 0 30rpx;
.item {
width: 100%;
align-items: center;
padding: 20rpx 0;
border-top: 2rpx solid #EEEEEE;
font-size: 24rpx;
font-weight: 500;
color: #676767;
}
}
}