/* components/tabBar/tabBar.wxss */

.tabBar {
  width: 100%;
  height: 160rpx;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0px -1px 0px 0px rgba(69, 112, 119, 0.3);
  backdrop-filter: blur(40rpx);
} 
.item{
  width: 180rpx;
}
.icon {
  width: 42.30769230769231rpx;
  height: 42.30769230769231rpx;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 16px;
}
.text {
  text-align: center;
  font-size: 22rpx;
  margin-top: 5rpx;
  font-weight: 400;
  color: #999999;
}
.text.activity {
  color: #2E3138;
}