stuNeed.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /* pages/stuNeed/stuNeed.wxss */
  2. .stuNeedArea{
  3. display: flex;
  4. flex-direction: column;
  5. width: 100%;
  6. }
  7. .stuNeedArea:first-child{
  8. margin-top: 20rpx;
  9. }
  10. .stuInfo{
  11. width: 100%;
  12. display: flex;
  13. align-items: center;
  14. height: 60rpx;
  15. line-height: 60rpx;
  16. padding: 0 0 20rpx 20rpx;
  17. margin: 10rpx 0;
  18. border-bottom: 1rpx solid gray;
  19. }
  20. .stuInfo-title{
  21. width: 26%;
  22. }
  23. .stuInput{
  24. width: 66%;
  25. padding: 10rpx 0 10rpx 20rpx;
  26. border: 1rpx solid rgba(243,243,243,.3);
  27. background-color: rgba(243,243,243,.3);
  28. border-radius: 30rpx;
  29. /* font-size: 28rpx; */
  30. }
  31. /* 课程大类、小类、辅导方式 */
  32. .stuNeedOptions{
  33. display: flex;
  34. }
  35. .stuCourse{
  36. padding-left: 20rpx;
  37. }
  38. /* 上课时间 */
  39. .tr-title{
  40. display: block;
  41. margin-left: 20rpx;
  42. margin-top: 20rpx;
  43. }
  44. .tr-container{
  45. display: flex;
  46. position: relative;
  47. width: 96%;
  48. flex-direction: column;
  49. font-size: 26rpx;
  50. /* border: 1rpx solid gray; */
  51. margin: 20rpx;
  52. }
  53. .tr_1 {
  54. display: flex;
  55. position: relative;
  56. height: 80rpx;
  57. line-height: 80rpx;
  58. }
  59. .tr_2{
  60. display: block;
  61. height: 80rpx;
  62. line-height: 80rpx;
  63. }
  64. .th_0,
  65. .th_1,
  66. .th_2,
  67. .th2_0,
  68. .th2_1,
  69. .th2_2{
  70. width: 12%;
  71. height: 80rpx;
  72. line-height: 80rpx;
  73. border-right: 1rpx solid gray;
  74. border-bottom: 1rpx solid gray;
  75. text-align: center;
  76. }
  77. .th_0,
  78. .th_1,
  79. .th_2{
  80. border-top: 1rpx solid gray;
  81. }
  82. .th_0,
  83. .th2_0{
  84. border-left: 1rpx solid gray;
  85. }
  86. .th2_0{
  87. float: left;
  88. width: 12%;
  89. height: 80rpx;
  90. line-height: 80rpx;
  91. text-align: center;
  92. /* background-color: greenyellow; */
  93. }
  94. /* 复选框大小 */
  95. .wx-checkbox-input{
  96. width: 22rpx !important;
  97. height: 22rpx !important;
  98. }
  99. /* 期望目标 */
  100. .stuGoal{
  101. margin-left: 20rpx;
  102. }
  103. .goal{
  104. width: 96%;
  105. border: 1rpx solid gray;
  106. margin-top: 20rpx;
  107. }
  108. /* 提交按钮样式 */
  109. .submitBtn{
  110. margin-top: 40rpx;
  111. width: 100%;
  112. }
  113. /* 底部空白区域 */
  114. .blank{
  115. height: 50rpx;
  116. }
  117. /* 课程类别、课程细分下拉空白区(背景) */
  118. .mask{
  119. z-index: 2;
  120. background-color: rgba(0,0,0,.3);
  121. position: fixed;
  122. top: 0;
  123. left: 0;
  124. right: 0;
  125. bottom: 0;
  126. }
  127. /* 课程类别、课程细分内容区 */
  128. .courseTitle-wrapper,
  129. .courseDetail-wrapper{
  130. z-index: 3;
  131. width: 100%;
  132. height: 100%;
  133. background-color: #fff;
  134. position: fixed;
  135. bottom: 0;
  136. }
  137. /*课程类别、课程细分下拉选项内容区标题部分 */
  138. .chooseContent-title{
  139. background-color: rgb(230,230, 230);
  140. display: flex;
  141. height: 80rpx;
  142. line-height: 80rpx;
  143. align-content: center;
  144. justify-content: space-between;
  145. padding-right: 40rpx;
  146. padding-left: 40rpx;
  147. }
  148. /* 下拉选项内容区 */
  149. .chooseContent{
  150. width: 100%;
  151. height: 80rpx;
  152. display: flex;
  153. align-items: center;
  154. justify-content: space-around;
  155. border-bottom: 1rpx solid gray;
  156. }
  157. .chooseContent image{
  158. width: 50rpx;
  159. height: 50rpx;
  160. }
  161. /* 滚动区域 */
  162. .CourseTitleScroll,
  163. .courseDetailScroll{
  164. margin-top: 10rpx;
  165. height: 84vh;
  166. }
  167. /* 辅导方式内容区 */
  168. .teachPosition-wrapper,
  169. .stuSex-wrapper{
  170. z-index: 3;
  171. width: 100%;
  172. background-color: #fff;
  173. position: fixed;
  174. bottom: 0;
  175. }