39 lines
566 B
Plaintext
39 lines
566 B
Plaintext
|
|
.tab-bar {
|
||
|
|
display: flex;
|
||
|
|
position: fixed;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
height: 110rpx;
|
||
|
|
background: #ffffff;
|
||
|
|
border-top: 1rpx solid #e5eaf1;
|
||
|
|
padding-bottom: env(safe-area-inset-bottom);
|
||
|
|
z-index: 999;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tab-item {
|
||
|
|
flex: 1;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 4rpx;
|
||
|
|
padding: 10rpx 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tab-icon {
|
||
|
|
width: 48rpx;
|
||
|
|
height: 48rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tab-text {
|
||
|
|
font-size: 22rpx;
|
||
|
|
color: #94a3b8;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tab-item.active .tab-text {
|
||
|
|
color: #2563eb;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|