classList.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /* 课表列表 */
  2. .class-list{
  3. padding-bottom: 150rpx
  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. margin-top: 30rpx;
  72. }
  73. /* end */
  74. /* 待补课程 */
  75. .choose-bg{
  76. width: 750rpx;
  77. height: 100%;
  78. position: fixed;
  79. top: 0;
  80. left: 0;
  81. background: #333;
  82. opacity: 0.4;
  83. z-index: 1;
  84. }
  85. .class-choose{
  86. position: fixed;
  87. bottom: -1000rpx;
  88. background: #FFF;
  89. z-index: 2;
  90. width: 700rpx;
  91. padding: 25rpx;
  92. height: 900rpx;
  93. border-radius: 50rpx 50rpx 0 0;
  94. }
  95. .title{
  96. font-size: 36rpx;
  97. height: 60rpx;
  98. line-height: 60rpx;
  99. }
  100. .choose-list{
  101. height: 650rpx;
  102. overflow-y: auto;
  103. }
  104. .choose-box{
  105. width: 646rpx;
  106. border-left: 4rpx solid #cc6031;
  107. padding: 25rpx;
  108. margin: 20rpx 0;
  109. border-radius: 15rpx;
  110. display: flex;
  111. flex-wrap: wrap;
  112. box-shadow: 0 10rpx 15rpx #ccc;
  113. }
  114. .choose-box view{
  115. font-size: 32rpx;
  116. height: 60rpx;
  117. line-height: 60rpx;
  118. }
  119. .choose-title,.choose-time{
  120. font-weight: 600;
  121. }
  122. .choose-title{
  123. width: 400rpx;
  124. }
  125. .choose-time{
  126. margin-left: auto;
  127. }
  128. .choose-name,.choose-room,.choose-teacher{
  129. width: 700rpx;
  130. }
  131. .choose-room,.choose-teacher{
  132. color: #999;
  133. }
  134. .choose-btn-view{
  135. height: 180rpx;
  136. }
  137. .choose-btn{
  138. height: 80rpx;
  139. width: 400rpx;
  140. position: relative;
  141. left: 50%;
  142. margin-left: -200rpx;
  143. text-align: center;
  144. background: #cc6031;
  145. line-height: 80rpx;
  146. color: #FFF;
  147. border-radius: 50rpx;
  148. font-size: 36rpx;
  149. top: 50rpx;
  150. }
  151. /* end */