bottomBar.wxss 488 字节
/* 底部导航栏样式 */
.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;
}