| 1234567891011121314151617181920212223242526272829303132 |
- .page-tabbar {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- height: 96rpx;
- background: #ffffff;
- border-top: 1rpx solid #e8e8e8;
- display: flex;
- z-index: 200;
- }
- .page-tab-item {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .page-tab-text {
- font-size: 26rpx;
- color: #7a8799;
- font-weight: 500;
- }
- .page-tab-item-active {
- background: #f8fbff;
- }
- .page-tab-text-active {
- color: #4facfe;
- }
|