makePiano.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. .container{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. /* 筛选按钮 */
  6. .select-view {
  7. height: 60rpx;
  8. line-height: 60rpx;
  9. background: #cc6031;
  10. color: #FFF;
  11. text-align: center;
  12. font-size: 36rpx;
  13. position: fixed;
  14. width: 750rpx;
  15. z-index: 3;
  16. }
  17. .height-view {
  18. height: 60rpx;
  19. }
  20. .select-box {
  21. position: fixed;
  22. background: #FFF;
  23. top: -240rpx;
  24. width: 750rpx;
  25. height: 300rpx;
  26. font-size: 32rpx;
  27. z-index: 2;
  28. }
  29. .change-time{
  30. display: flex;
  31. margin-top: 40rpx;
  32. }
  33. .section{
  34. display: flex;
  35. padding-top: 40rpx;
  36. }
  37. .section view{
  38. line-height: 60rpx;
  39. }
  40. .picker{
  41. margin: 0 10rpx;
  42. padding: 0 20rpx;
  43. height: 60rpx;
  44. line-height: 60rpx;
  45. border-radius: 5rpx;
  46. font-weight: 600;
  47. }
  48. .select-title{
  49. height: 140rpx;
  50. line-height: 140rpx;
  51. margin-left: 25rpx;
  52. width: 240rpx;
  53. text-align: center;
  54. }
  55. .select-box-bg{
  56. background: #333;
  57. opacity: 0;
  58. z-index: 1;
  59. height: 100%;
  60. width: 100%;
  61. top: 60rpx;
  62. position: fixed;
  63. }
  64. .search-btn-view{
  65. display: flex;
  66. width: 400rpx;
  67. margin: 20rpx auto;
  68. }
  69. .search-btn-view view{
  70. margin: 0 auto;
  71. }
  72. .search-btn{
  73. height: 60rpx;
  74. line-height: 60rpx;
  75. width: 150rpx;
  76. border-radius: 10rpx;
  77. background: #cc6031;
  78. text-align: center;
  79. color: #FFF;
  80. }
  81. .reset-btn{
  82. height: 60rpx;
  83. line-height: 60rpx;
  84. width: 150rpx;
  85. border-radius: 10rpx;
  86. background: #f1f1f1;
  87. text-align: center;
  88. color: #666;
  89. }
  90. /* end */
  91. /* 日期选择 */
  92. .week-view{
  93. width: 700rpx;
  94. margin: 25rpx;
  95. }
  96. .week-list{
  97. width: 700rpx;
  98. display: flex;
  99. }
  100. .week-box{
  101. height: 90rpx;
  102. width: 90rpx;
  103. border-radius: 100rpx;
  104. font-size:24rpx;
  105. text-align: center;
  106. margin: 0 auto;
  107. }
  108. .weekDay{
  109. margin-top: 10rpx;
  110. }
  111. .cur-week{
  112. background: #cc6031;
  113. color:#FFF;
  114. }
  115. /* end */
  116. /* 校区列表 */
  117. .school-box{
  118. padding: 25rpx;
  119. border-bottom: 20rpx solid #eee;
  120. }
  121. .school-title,.school-dis,.school-addr,.school-tel,.class-box,.class-get-view{
  122. display: flex;
  123. }
  124. .school-title{
  125. height: 60rpx;
  126. }
  127. .disImg{
  128. width: 40rpx;
  129. height: 40rpx;
  130. margin-right: 10rpx;
  131. }
  132. .disImg image{
  133. height: 100%;
  134. width: 100%;
  135. }
  136. .school-name{
  137. width: 500rpx;
  138. font-size: 36rpx;
  139. overflow: hidden;
  140. white-space: nowrap;
  141. text-overflow: ellipsis;
  142. }
  143. .school-dis{
  144. margin-left: auto;
  145. font-size: 32rpx;
  146. height: 40rpx;
  147. line-height: 40rpx;
  148. }
  149. .school-addr,.school-tel{
  150. height: 60rpx;
  151. line-height: 60rpx;
  152. color: #999;
  153. }
  154. .address,.telNum{
  155. width: 600rpx;
  156. }
  157. .showMore{
  158. width: 32rpx;
  159. height: 32rpx;
  160. margin-left: auto;
  161. padding-top: 7rpx;
  162. }
  163. .showMore image,.getTel image{
  164. height: 100%;
  165. width: 100%;
  166. }
  167. .getTel{
  168. width: 40rpx;
  169. height: 40rpx;
  170. margin-left: auto;
  171. padding-top: 10rpx;
  172. }
  173. .class-get-view{
  174. margin-left: auto;
  175. }
  176. .class-time{
  177. width: 350rpx;
  178. }
  179. .class-get-view{
  180. max-width: 350rpx;
  181. }
  182. .class-get-btn{
  183. color: #FFF;
  184. background: #cc6031;
  185. border-radius: 10rpx;
  186. width: 90rpx;
  187. text-align: center;
  188. }
  189. .class-box{
  190. height: 60rpx;
  191. line-height: 60rpx;
  192. font-size: 28rpx;
  193. color: #999;
  194. margin: 20rpx 0;
  195. }
  196. .class-none{
  197. height: 60rpx;
  198. line-height: 60rpx;
  199. font-size: 28rpx;
  200. color: #999;
  201. }
  202. .class-stu-num{
  203. margin-right: 10rpx;
  204. }
  205. .curSchool image{
  206. transform: rotate(90deg);
  207. }
  208. /* end */
  209. /* loading */
  210. .loading {
  211. height: 200rpx;
  212. line-height: 100rpx;
  213. background: #f1f1f1;
  214. color: #999;
  215. text-align: center;
  216. }
  217. /* end */