classList.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /* 课表列表 */
  2. .class-list{
  3. padding-bottom: 50rpx
  4. }
  5. .class-box{
  6. display: flex;
  7. flex-wrap: wrap;
  8. align-content: space-between;
  9. width: 646rpx;
  10. background: #FFF;
  11. border-left: 4rpx solid #cc6031;
  12. padding: 25rpx;
  13. border-radius: 15rpx;
  14. margin: 0 auto 40rpx;
  15. box-shadow: 0 15rpx 20rpx #eee;
  16. }
  17. .class-box view{
  18. height: 60rpx;
  19. line-height: 60rpx;
  20. }
  21. .class-name,.class-time{
  22. font-size: 36rpx;
  23. }
  24. .class-time,.class-flag{
  25. text-align: right;
  26. width: 240rpx;
  27. margin-left: auto;
  28. }
  29. .class-name,.class-room,.class-teacher{
  30. width: 400rpx;
  31. }
  32. .class-flag,.class-teacher{
  33. color: #999;
  34. }
  35. .class-date{
  36. height: 80rpx;
  37. line-height: 80rpx;
  38. text-align: center;
  39. color: #666;
  40. font-size: 32rpx;
  41. }
  42. .class-type{
  43. color: #FFF;
  44. background: #cc6031;
  45. line-height: 30rpx;
  46. height: 30rpx;
  47. margin-top: 20rpx;
  48. font-size: 24rpx;
  49. margin-right: 10rpx;
  50. padding: 0 5rpx;
  51. border-radius: 10rpx;
  52. font-weight: 400;
  53. }
  54. .last-leave-num{
  55. color: #005033;
  56. width: 100%;
  57. }
  58. .class-detail-box{
  59. height: auto !important;
  60. }
  61. .class-btn-box{
  62. margin-left: auto;
  63. }
  64. .class-btn{
  65. width: 178rpx;
  66. border: 2rpx solid #cc6031;
  67. color: #cc6031;
  68. text-align: center;
  69. font-size: 28rpx;
  70. border-radius: 50rpx;
  71. }
  72. /* end */
  73. /* 待补课程 */
  74. .choose-bg{
  75. width: 750rpx;
  76. height: 100%;
  77. position: fixed;
  78. top: 0;
  79. left: 0;
  80. background: #333;
  81. opacity: 0.4;
  82. z-index: 1;
  83. }
  84. .class-choose{
  85. position: fixed;
  86. bottom: -1000rpx;
  87. background: #FFF;
  88. z-index: 2;
  89. width: 700rpx;
  90. padding: 25rpx;
  91. height: 900rpx;
  92. border-radius: 50rpx 50rpx 0 0;
  93. }
  94. .title{
  95. font-size: 36rpx;
  96. height: 60rpx;
  97. line-height: 60rpx;
  98. }
  99. .choose-list{
  100. height: 320rpx;
  101. overflow-y: auto;
  102. }
  103. .choose-box{
  104. width: 646rpx;
  105. border-left: 4rpx solid #cc6031;
  106. padding: 25rpx;
  107. margin: 20rpx 0;
  108. border-radius: 15rpx;
  109. display: flex;
  110. flex-wrap: wrap;
  111. box-shadow: 0 10rpx 15rpx #ccc;
  112. }
  113. .choose-box view{
  114. font-size: 32rpx;
  115. height: 60rpx;
  116. line-height: 60rpx;
  117. }
  118. .choose-title,.choose-time{
  119. font-weight: 600;
  120. }
  121. .choose-title{
  122. width: 400rpx;
  123. }
  124. .choose-time{
  125. margin-left: auto;
  126. }
  127. .choose-name,.choose-room,.choose-teacher{
  128. width: 700rpx;
  129. }
  130. .choose-room,.choose-teacher{
  131. color: #999;
  132. }
  133. .choose-btn-view{
  134. height: 180rpx;
  135. }
  136. .choose-btn{
  137. height: 80rpx;
  138. width: 400rpx;
  139. position: relative;
  140. left: 50%;
  141. margin-left: -200rpx;
  142. text-align: center;
  143. background: #cc6031;
  144. line-height: 80rpx;
  145. color: #FFF;
  146. border-radius: 50rpx;
  147. font-size: 36rpx;
  148. top: 50rpx;
  149. }
  150. /* end */