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
| /* components/tabbarPage/index.wxss */
| .tabbar-main {
| position: relative;
| top: 0;
| bottom: 0;
| left: 0;
| right: 0;
| }
|
| .tabbar-apps {
| width: 110rpx;
| height: 68rpx;
| color: #ffffff;
| border-radius: 20rpx;
| background-color: var(--main-color);
| display: flex;
| align-items: center;
| justify-content: center;
| box-shadow: 0px 0 6px 4px rgb(0 0 0 / 10%);
| }
|
| .tabbar-icon {
| width: 36rpx;
| height: 32rpx;
| }
|
| .more-function {
| position: fixed;
| bottom: 128rpx;
| z-index: 999;
| transition: transform 0.5s;
| transform: translate3d(0, 1000rpx, 0);
| left: 50%;
| margin-left: -200rpx;
| margin-bottom: env(safe-area-inset-bottom);
| }
|
| .more-function-close {
| position: fixed;
| z-index: 999;
| bottom: 12rpx;
| width: 108rpx;
| height: 68rpx;
| left: 50%;
| margin-left: -54rpx;
| text-align: center;
| background-color: #ffffff;
| border-radius: 35rpx;
| display: flex;
| align-items: center;
| justify-content: center;
| margin-bottom: env(safe-area-inset-bottom);
| }
|
| .more-function-img {
| width: 100rpx;
| height: 100rpx;
| margin-right: 16rpx;
| }
|
| .more-function-item {
| display: flex;
| align-items: center;
| color: #ffffff;
| margin-bottom: 64rpx;
| }
|
| .more-function-text {
| font-size: 24rpx;
| line-height: 24rpx;
| color: #c0b2b2;
| padding-top: 16rpx;
| }
|
|