123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .tab-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 60px;
- background: white;
- display: flex;
- padding-bottom: env(safe-area-inset-bottom);
- border-radius: 20px 20px 0 0;
- box-shadow: 0px 8px 20px 0px rgba(0,0,0,.5);
- z-index: 0;
- }
- .tab-bar-border {
- background-color: rgba(0, 0, 0, 0.33);
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 1px;
- transform: scaleY(0.5);
- }
- .tab-bar-item {
- flex: 1;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- position: relative;
- }
- .tab-bar-item.center image {
- width: 84rpx;
- height: 84rpx;
- }
- .tab-bar-item image {
- width: 40rpx;
- height: 40rpx;
- }
- .tab-bar-item view {
- font-size: 24rpx;
- font-family: MiSans-Medium;
- }
|