stuList.wxss 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /* pages/stuList/stuList.wxss */
  2. /* 搜索学员 */
  3. /* 找学员的按钮 */
  4. .toOpenSearch{
  5. width: 140rpx;
  6. height: 50rpx;
  7. line-height: 50rpx;
  8. margin-left: 20rpx;
  9. border: 1rpx solid gray;
  10. border-radius: 70rpx;
  11. padding: 4rpx 20rpx;
  12. }
  13. .mask{
  14. height: 300rpx;
  15. }
  16. /* 筛选区的样式 */
  17. .searchContainer {
  18. z-index: 3;
  19. display: flex;
  20. padding-bottom: 10rpx;
  21. width: 100%;
  22. line-height: 50rpx;
  23. background-color: #fff;
  24. font-size: 28rpx;
  25. flex-wrap: wrap;
  26. position: sticky;
  27. top: 0;
  28. }
  29. /* 筛选区列表的样式 */
  30. .searchList{
  31. display: flex;
  32. width: 28%;
  33. height: 50rpx;
  34. text-align: center;
  35. justify-content: center;
  36. margin-top: 10rpx;
  37. margin-left: 20rpx;
  38. border: 1rpx solid gray;
  39. border-radius: 30rpx;
  40. overflow: hidden;
  41. }
  42. /* 下拉箭头图标 */
  43. .iconImg {
  44. width: 26rpx;
  45. height: 26rpx;
  46. }
  47. .searchList .iconImg{
  48. width: 26rpx;
  49. height: 26rpx;
  50. padding-top: 11rpx;
  51. padding-left: 10rpx;
  52. }
  53. /* 取消图标的样式 */
  54. .iconCancelImg{
  55. width: 36rpx;
  56. height: 36rpx;
  57. padding-top: 7rpx;
  58. padding-left: 10rpx;
  59. }
  60. /* 搜索按钮 */
  61. /* 搜索按钮外层容器 */
  62. .searchBtn-container{
  63. z-index: 3;
  64. height: 50rpx;
  65. background-color: #fff;
  66. display: flex;
  67. position: sticky;
  68. top: 200rpx;
  69. }
  70. /* 搜索按钮和清除选择按钮的公共样式 */
  71. .searchBtn,
  72. .clearBtn{
  73. border:1rpx solid gray;
  74. border-radius: 30rpx;
  75. height: 38rpx;
  76. line-height: 40rpx;
  77. padding: 4rpx 20rpx;
  78. font-size: 28rpx;
  79. }
  80. /* 搜索按钮 */
  81. .searchBtn{
  82. margin-left: 20rpx;
  83. }
  84. /* 清除选择按钮 */
  85. .clearBtn{
  86. display: flex;
  87. position: absolute;
  88. margin-left: auto;
  89. right: 20rpx;
  90. }
  91. /* 搜索区下方的隔离区 */
  92. .interval{
  93. height: 10rpx;
  94. margin-top: 20rpx;
  95. background-color: gray;
  96. }
  97. /* 间隔线 */
  98. .stuListInterval{
  99. height: 10rpx;
  100. margin-left: -20rpx;
  101. margin-top: 10rpx;
  102. background-color: #F1F1F1;
  103. }
  104. /* 学生列表区 */
  105. .stuListContainer{
  106. margin-left: 20rpx;
  107. font-size: 28rpx;
  108. position: relative;
  109. }
  110. .stuListDetail{
  111. display: flex;
  112. }
  113. /* 左侧部分 */
  114. .stuLeft{
  115. display: flex;
  116. flex-direction: column;
  117. width: 60%;
  118. margin-top: 10rpx;
  119. }
  120. .stuTitle{
  121. font-weight: bold;
  122. color: yellowgreen;
  123. }
  124. .stuDesc{
  125. margin: 20rpx 0;
  126. }
  127. /* 右侧部分 */
  128. .stuRight{
  129. display: flex;
  130. flex-direction: column;
  131. position: absolute;
  132. right: 20rpx;
  133. color: #979797;
  134. margin-top: 10rpx;
  135. }
  136. /* 薪水 */
  137. .salary{
  138. color: #FF970F;
  139. }
  140. /* 课程科目 */
  141. .course{
  142. z-index: 3;
  143. position: fixed;
  144. width: 100%;
  145. height: 100%;
  146. top: 124rpx;
  147. background-color: #F3F3F3;
  148. border: 1rpx solid #E6E6E6;
  149. }
  150. .courseLists{
  151. width: 160rpx;
  152. height: 40rpx;
  153. /* background-color: yellow; */
  154. border-right: 1rpx solid red;
  155. border-bottom: 1rpx solid red;
  156. padding: 20rpx 20rpx 20rpx 40rpx;
  157. }
  158. /* 选中课程科目的样式 */
  159. .courseActive{
  160. width: 160rpx;
  161. height: 40rpx;
  162. color: #ff9000;
  163. font-weight: bold;
  164. border-bottom: 1rpx solid gray;
  165. padding: 20rpx 20rpx 20rpx 40rpx;
  166. }
  167. /* 课程详情 */
  168. .courseDetail{
  169. z-index: 3;
  170. position: fixed;
  171. width: calc(100vw - 224rpx);
  172. /* height: 100%; */
  173. top: 124rpx;
  174. left: 224rpx;
  175. background-color: #F3F3F3;
  176. display: flex;
  177. flex-direction: row;
  178. flex-wrap: wrap;
  179. }
  180. .courseDetailLists{
  181. padding: 20rpx;
  182. border: 1rpx solid #E6E6E6;
  183. border-radius: 16rpx;
  184. height: 30rpx;
  185. line-height: 30rpx;
  186. margin: 10rpx;
  187. }
  188. /* 选中课程详情的样式 */
  189. .courseDetailActive{
  190. height: 40rpx;
  191. color: #ff9000;
  192. font-weight: bold;
  193. padding: 20rpx;
  194. border: 1rpx solid #E6E6E6;
  195. border-radius: 16rpx;
  196. height: 30rpx;
  197. line-height: 30rpx;
  198. margin: 10rpx;
  199. }
  200. /* 辅导方式、学生性别、教员类型、教员学历选项区的公共样式 */
  201. .teachPositions,
  202. .choosestuSex,
  203. .teachType,
  204. .eduList,
  205. .teachSex
  206. {
  207. background-color: #F3F3F3;
  208. border: 1rpx solid #E6E6E6;
  209. position: fixed;
  210. padding: 10rpx;
  211. z-index: 3;
  212. }
  213. /* 辅导方式选项区 */
  214. .teachPositions{
  215. top: 124rpx;
  216. left: 34%;
  217. width: 30%;
  218. }
  219. /* 辅导方式筛选内容区的公共样式 */
  220. .detail{
  221. margin: 30rpx 0;
  222. }
  223. /* 学生性别 */
  224. .choosestuSex{
  225. width: 30%;
  226. top: 124rpx;
  227. right: 20rpx;
  228. }
  229. /* 老师身份选项区 */
  230. .teachType{
  231. top: 188rpx;
  232. left: 20rpx;
  233. }
  234. /* 老师学历选项区 */
  235. .eduList{
  236. width: 30%;
  237. top: 188rpx;
  238. left: 34%;
  239. }
  240. /* 老师性别选项区 */
  241. .teachSex{
  242. width: 30%;
  243. top: 188rpx;
  244. right: 20rpx;
  245. }
  246. /* 老师照片选项区 */
  247. .teachImgList{
  248. background-color: #F3F3F3;
  249. border: 1rpx solid #E6E6E6;
  250. position: fixed;
  251. padding: 10rpx;
  252. z-index: 3;
  253. }
  254. .teachImgList{
  255. width: 180rpx;
  256. top: 252rpx;
  257. left: 20rpx;
  258. }