1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* component/tabBar/tabBar.wxss */
- .page {
- height: 112rpx;
- background-color: aqua;
- display: flex;
- justify-content: center;
- flex-direction: row;
- align-items: center;
- width: 100%;
- }
- .icon {
- width: 44rpx;
- height: 44rpx;
- }
- .tabbar {
- width: 750rpx;
- height: 112rpx;
- background: #ffffff;
- box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.50);
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
- }
- .tabbar_item {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .check_false_text {
- font-size: 26rpx;
- font-family: PingFangSC, PingFangSC-Regular;
- font-weight: 400;
- text-align: left;
- color: #666666;
- line-height: 37rpx;
- letter-spacing: 0.26px;
- }
- .check_true_text {
- font-size: 26rpx;
- font-family: PingFangSC, PingFangSC-Semibold;
- font-weight: 600;
- text-align: left;
- color: #ff9700;
- line-height: 37rpx;
- letter-spacing: 0.26px;
- }
|