| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .tab-box {
- display: flex;
- .left {
- width: 0;
- flex: 1;
- .tab-class {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 28rpx;
- color: #333333;
- }
- }
- .right {
- display: flex;
- align-items: center;
- background-color: #fff;
- flex-shrink: 0;
- .filtrate-box {
- display: flex;
- height: 100%;
- align-items: center;
- padding: 0 20rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 28rpx;
- color: #666666;
- .iconfont {
- margin-right: 6rpx;
- color: #999999;
- }
- }
- .search-box {
- display: flex;
- height: 100%;
- align-items: center;
- padding: 0 30rpx;
- .iconfont {
- font-size: 40rpx;
- }
- }
- }
- }
|