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
| @import "../../base/fn";
|
| .weui-tabbar {
| display: flex;
| position: absolute;
| z-index: 500;
| bottom: 0;
| width: 100%;
| background-color: #f7f7fa;
|
| &:before {
| .setTopLine(#C0BFC4);
| }
| }
|
| .weui-tabbar__item {
| display: block;
| flex: 1;
| padding: 7px 0 0;
| font-size: 0;
| color: @weuiTextColorGray;
| text-align: center;
| .setTapColor();
|
| &.weui-bar__item_on {
| .weui-tabbar__icon, .weui-tabbar__icon > i, .weui-tabbar__label {
| color: #09BB07;
| }
| }
| }
|
| .weui-tabbar__icon {
| display: inline-block;
| width: 24px;
| height: 24px;
|
| i&, > i {
| font-size: 24px;
| color: @weuiTextColorGray;
| }
|
| img {
| width: 100%;
| height: 100%;
| }
|
| & + .weui-tabbar__label {
| margin-top: 5px;
| margin-bottom: 3px;
| }
| }
|
| .weui-tabbar__label {
| text-align: center;
| color: @weuiTextColorGray;
| font-size: 12px;
| }
|
|