|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* pages/component/tabBar/index.wxss */
- .tabBarFrame{
- position: fixed;
- left: 0;
- bottom: 0;
- background-color: white;
- width:750rpx;
- height:150rpx;
- box-sizing: border-box;
- border-top: 1rpx solid #B8B6B9;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .tabBarOption{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 175rpx;
- border-right: 3rpx solid black;
- height: 43rpx;
- }
- .tabBarText{
- font-size: 20rpx;
- margin-left:10rpx;
- color: black;
- }
- .tabBarText2{
- color: #1D7EAF;
- }
- .tabBar1{
- width: 46rpx;
- height: 19rpx;
- }
- .tabBar2{
- width: 32rpx;
- height: 25rpx;
- }
- .tabBar3{
- width: 25rpx;
- height: 28rpx;
- }
- .tabBar4{
- width: 24rpx;
- height: 27rpx;
- }
|