46 lines
715 B
Plaintext
Raw Permalink Normal View History

2025-06-06 15:17:30 +08:00
.tabBar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 140rpx;
background: white;
display: flex;
padding-bottom: env(safe-area-inset-bottom);
box-shadow: 0 10rpx 30rpx rgba(0, 0, 0, 0.3);
/* border-top: 1px solid #c1c1c1; */
}
.tabBarItem {
flex: 1;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.itemImage {
width: 48rpx;
height: 48rpx;
margin-bottom: 4rpx;
}
.item-bottom{
background: #fff;
height: 4rpx;
width: 112rpx;
margin-top: 16rpx;
border-radius: 0 0 16rpx 16rpx;
}
.item-bottom-click{
background-color: #0082FF;
}
.itemTitle {
font-size: 24rpx;
color: rgb(153, 153, 153);
}