| 123456789101112131415161718192021222324252627282930313233343536373839 |
- .page-tabbar {
- position: fixed;
- left: 16rpx;
- right: 16rpx;
- bottom: 12rpx;
- height: 84rpx;
- border-radius: 24rpx;
- background: rgba(255, 255, 255, 0.94);
- border: 1rpx solid #ebeff5;
- box-shadow: 0 12rpx 30rpx rgba(15, 23, 42, 0.12);
- display: flex;
- padding: 6rpx;
- box-sizing: border-box;
- z-index: 200;
- }
- .page-tab-item {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- border-radius: 18rpx;
- }
- .page-tab-text {
- font-size: 28rpx;
- color: #7b8798;
- font-weight: 600;
- line-height: 1.2;
- }
- .page-tab-item-active {
- background: #165dff;
- }
- .page-tab-text-active {
- color: #ffffff;
- }
|