啊鑫
7 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
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
@import '../style/var';
 
.van-tabbar-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: @tabbar-item-text-color;
  font-size: @tabbar-item-font-size;
  line-height: @tabbar-item-line-height;
  cursor: pointer;
 
  &__icon {
    position: relative;
    margin-bottom: @tabbar-item-margin-bottom;
    font-size: @tabbar-item-icon-size;
 
    .van-icon {
      display: block;
    }
 
    img {
      display: block;
      height: 20px;
    }
  }
 
  &--active {
    color: @tabbar-item-active-color;
    background-color: @tabbar-item-active-background-color;
  }
 
  .van-info {
    margin-top: @padding-base;
  }
}