| 123456789101112131415161718192021222324252627282930 |
- .tabs {
- position: relative;
- display: flex;
- width: 100vw;
- overflow: hidden;
- background-color: #fff;
- box-shadow: 0rpx 4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- z-index: 9;
- .tab-active-class {
- font-size: 28rpx;
- color: #3874F6;
- text-transform: none;
- }
- .right {
- display: flex;
- align-items: center;
- flex-shrink: 0;
- width: 200rpx;
- .option {
- width: 100rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- color: #666666;
- }
- }
- }
|