classList.wxss 947 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* 课表列表 */
  2. .class-box{
  3. display: flex;
  4. flex-wrap: wrap;
  5. align-content: space-between;
  6. width: 646rpx;
  7. background: #FFF;
  8. border-left: 4rpx solid #cc6031;
  9. padding: 25rpx;
  10. border-radius: 15rpx;
  11. margin: 0 auto 40rpx;
  12. }
  13. .class-box view{
  14. height: 60rpx;
  15. line-height: 60rpx;
  16. }
  17. .class-name,.class-time{
  18. font-size: 36rpx;
  19. font-weight: 600;
  20. }
  21. .class-time,.class-flag{
  22. text-align: right;
  23. width: 240rpx;
  24. margin-left: auto;
  25. }
  26. .class-name,.class-room,.class-teacher{
  27. width: 400rpx;
  28. }
  29. .class-flag,.class-teacher{
  30. color: #999;
  31. }
  32. .class-date{
  33. height: 80rpx;
  34. line-height: 80rpx;
  35. text-align: center;
  36. color: #666;
  37. font-size: 32rpx;
  38. }
  39. .class-type{
  40. color: #FFF;
  41. background: #cc6031;
  42. line-height: 30rpx;
  43. height: 30rpx;
  44. margin-top: 20rpx;
  45. font-size: 24rpx;
  46. margin-right: 10rpx;
  47. padding: 0 5rpx;
  48. border-radius: 10rpx;
  49. font-weight: 400;
  50. }
  51. .last-leave-num{
  52. color: #005033;
  53. width: 100%;
  54. }
  55. /* end */