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
| @import "../style/icon.wxss";
|
| .tab-bar {
| position: fixed;
| bottom: 0;
| left: 0;
| right: 0;
| height: 50px;
| background: #ffffff;
| display: flex;
| border-top: 1px solid #e5e5e5;
| z-index: 1000;
| }
|
| .tab-bar-item {
| flex: 1;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| padding: 5px 0;
| }
|
| .tab-bar-icon {
| margin-bottom: 2px;
| }
|
| .tab-bar-icon .icon {
| font-size: 22px;
| color: #999999;
| }
|
| .tab-bar-item.active .tab-bar-icon .icon {
| color: #007aff;
| }
|
| .tab-bar-text {
| font-size: 10px;
| color: #999999;
| }
|
| .tab-bar-item.active .tab-bar-text {
| color: #007aff;
| }
|
|