bottomBar.wxss
488 字节
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
/* 底部导航栏样式 */
.tabbar {
width: 100%;
height: 98rpx;
background-color: #fff;
position: fixed;
bottom: 0;
left: 0;
display: flex;
justify-content: center;
}
.tabbar-item {
height: 100%;
width: 33.33%;
color: #666;
}
.tabbar-item__icon {
width: 40rpx;
height: 40rpx;
display: block;
margin: 15rpx auto 6rpx;
}
.tabbar-item__text {
text-align: center;
display: block;
margin: 0 auto;
font-size: 22rpx;
}
.active {
color: #FF7F00;
}