classList.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. box-shadow: 0 15rpx 20rpx #eee;
  13. }
  14. .class-box view{
  15. height: 60rpx;
  16. line-height: 60rpx;
  17. }
  18. .class-name,.class-time{
  19. font-size: 36rpx;
  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. .class-detail-box{
  56. height: auto !important;
  57. }
  58. .class-btn-box{
  59. margin-left: auto;
  60. }
  61. .class-btn{
  62. width: 178rpx;
  63. border: 2rpx solid #cc6031;
  64. color: #cc6031;
  65. text-align: center;
  66. font-size: 28rpx;
  67. border-radius: 50rpx;
  68. margin-top: 30rpx;
  69. }
  70. /* end */