1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .custom-tab-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 132px;
- display: flex;
- padding-bottom: env(safe-area-inset-bottom);
- z-index: 9999999;
- background: #393484;
- //background: #00000000 url("./image/tabBarBackground.png") no-repeat;
- //background-size: 100% 100%;
- .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;
- }
- .tab-bar-item .coverImage {
- width: 44px;
- height: 44px;
- }
- .tab-bar-item .View {
- font-size: 18px;
- padding-top: 10px;
- }
- .zhong {
- position: absolute;
- bottom: 14px;
- width: 98px;
- height: 98px;
- padding: 23px;
- border-radius: 98px;
- display: flex;
- flex-flow: column;
- align-items: center;
- .coverImage{
- width: 75px;
- height: 75px;
- padding-top: 8px;
- }
- .View{
- font-size: 18px;
- }
- }
- }
|