gx
queenwuli
2021-01-28 b83ba3cc4687f21d744e9866e10e30e91229e8a4
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
74
75
76
77
78
79
80
 .tab {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     height: 50px;
 }
 
 .tab-inner {
     display: table;
     table-layout: fixed;
     background-color: #f7f7f7;
     -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .85);
     box-shadow: 0 0 1px rgba(0, 0, 0, .85);
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
 }
 
 .tab-item {
     display: table-cell;
     width: 1%;
     height: 50px;
     overflow: hidden;
     color: #666;
     text-align: center;
     text-overflow: ellipsis;
     white-space: nowrap;
     vertical-align: middle;
 }
 
 .tab-item-icon img {
     width: 100%;
     height: 100%;
 }
 
 .tab-item .tab-item-icon img:nth-child(1) {
     display: block;
 }
 
 .tab-item .tab-item-icon img:nth-child(2) {
     display: none;
 }
 
 .tab-item.active .tab-item-icon img:nth-child(1) {
     display: none;
 }
 
 .tab-item.active .tab-item-icon img:nth-child(2) {
     display: block;
 }
 
 .tab-item-label {
     display: block;
     overflow: hidden;
     font-size: 12px;
 }
 
 .tab-item-icon {
     margin: 0 auto;
     width: 24px;
     height: 24px;
 }
 
 .tab-item-icon-bars{
 
 }
 
 .tab.no-label .tab-item-icon {
     margin: 0 auto;
     width: 40px;
     height: 40px;
 }
 
 .tab.no-icon .tab-item-label {
     font-size: 16px;
 }
 
 .tab-item.active {
     color: #FF5777;
 }