|
- /* pages/component/tabBar/index.wxss */
- .tabBarFrame{
- position: fixed;
- left: 0;
- bottom: 0;
- background-color: white;
- width:750rpx;
- height:120rpx;
- box-sizing: border-box;
- border-top: 2rpx solid #B8B6B9;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 70rpx;
- z-index: 99;
- }
- .tabBarOption{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- text-align: center;
- }
- .tabBarText{
- font-size: 20rpx;
- color: black;
- font-family:PingFangSC;
- font-weight:400;
- margin-top: 7rpx;
- }
- .tabBarText2{
- color:rgba(51,84,128,1);
- }
- .tabBar1{
- width: 58rpx;
- height: 40rpx;
- }
- .tabBar2{
- width: 46rpx;
- height: 40rpx;
- }
- .tabBar3{
- width: 39rpx;
- height: 40rpx;
- }
- .tabBar4{
- width: 39rpx;
- height: 39rpx;
- }
|