1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* 正在开班 历史,即将 */
- .tab-class {
- padding-left: 30rpx;
- padding-right: 30rpx;
- display: flex;
- height: 170rpx;
- }
- .class {
- flex: 1;
- width: 100%;
- position: relative;
- }
- .other-class {
- flex: 1;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- .current-text {
- position: absolute;
- right: 70rpx;
- top: 40rpx;
- display: flex;
- flex-direction: column;
- }
- .current-tip {
- font-size: 30rpx;
- color: #FFFFFF;
- }
- .current-txt {
- margin-top: 10rpx;
- font-size: 22rpx;
- color: #FFE1DD;
- }
- .class-text {
- width: 100%;
- height: 100%;
- text-align: center;
- font-size: 26rpx;
- color: #FFFFFF;
- position: absolute;
- right: 0;
- top: 20rpx;
- }
|