1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .tabbar {
- height: 168rpx;
- width: 100%;
- background: url('https://qiniu.bms16.com/FiYy2ZOV_hGSJx32YAQSLZSbAOFq') no-repeat;
- background-size: 100%;
- display: flex;
- justify-content: space-between;
- padding-top: 20rpx;
- }
- .tab-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- flex: 1;
- }
- .tab-item:nth-child(1) {
- margin-right: 20%;
- }
- .tab-icon {
- width: 24px;
- height: 24px;
- margin-bottom: 4px;
- }
- .center-entrance {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: 38rpx;
- display: flex;
- flex-direction: column;
- }
- .base-text {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 20rpx;
- color: #9EA9BB;
- line-height: 20rpx;
- text-align: center;
- font-style: normal;
- }
- .checked {
- color: #0074FF;
- }
|