1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .tabs {
- position: relative;
- display: flex;
- width: 750rpx;
- height: 90rpx;
- background: #fff;
- .item {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- .title {
- position: relative;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #999999;
- letter-spacing: 2rpx;
- .badge {
- position: absolute;
- top: 50%;
- right: -30rpx;
- }
- }
- .acTitle {
- color: var(--assist);
- }
- }
- .my-bor-bot {
- position: absolute;
- width: 128rpx;
- height: 4rpx;
- background: #0486FE;
- left: 0;
- bottom: 0;
- }
- }
|