123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* 课表列表 */
- .class-box{
- display: flex;
- flex-wrap: wrap;
- align-content: space-between;
- width: 646rpx;
- background: #FFF;
- border-left: 4rpx solid #cc6031;
- padding: 25rpx;
- border-radius: 15rpx;
- margin: 0 auto 40rpx;
- }
- .class-box view{
- height: 60rpx;
- line-height: 60rpx;
- }
- .class-name,.class-time{
- font-size: 36rpx;
- font-weight: 600;
- }
- .class-time,.class-flag{
- text-align: right;
- width: 240rpx;
- margin-left: auto;
- }
- .class-name,.class-room,.class-teacher{
- width: 400rpx;
- }
- .class-flag,.class-teacher{
- color: #999;
- }
- .class-date{
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- color: #666;
- font-size: 32rpx;
- }
- .class-type{
- color: #FFF;
- background: #cc6031;
- line-height: 30rpx;
- height: 30rpx;
- margin-top: 20rpx;
- font-size: 24rpx;
- margin-right: 10rpx;
- padding: 0 5rpx;
- border-radius: 10rpx;
- font-weight: 400;
- }
- .last-leave-num{
- color: #005033;
- width: 100%;
- }
- /* end */
|