TabBar.scss
860 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
46
.page-total-content {
position: fixed;
bottom: 0;
width: 100%;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
z-index: 999;
background-color: rgba(255, 255, 255, .5);
}
.page-total{
width: 100%;
// height: 100rpx;
background-color: rgba(255, 255, 255, 1);
border-radius: 40rpx 40rpx 0 0;
position: absolute;
bottom: 0;
z-index: 999;
}
.tab-list{
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 120rpx;
padding-top: 10rpx;
.list{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 50%;
height: 100rpx;
image{
width: 48rpx;
height: 48rpx;
}
text{
color: #AAAAAC;
font-size: 24rpx;
margin-top: 10rpx;
}
.action{
color: #D32D25;
}
}
}