stuNeed.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. .stuCourse-wrapper,
  33. .CourseDetail-wrapper{
  34. display: flex;
  35. }
  36. .stuCourse{
  37. padding-left: 20rpx;
  38. }
  39. /* 上课时间 */
  40. .tr-title{
  41. display: block;
  42. margin-left: 20rpx;
  43. margin-top: 20rpx;
  44. }
  45. .tr-container{
  46. display: flex;
  47. position: relative;
  48. width: 96%;
  49. flex-direction: column;
  50. font-size: 26rpx;
  51. /* border: 1rpx solid gray; */
  52. margin: 20rpx;
  53. }
  54. .tr_1 {
  55. display: flex;
  56. position: relative;
  57. height: 80rpx;
  58. line-height: 80rpx;
  59. }
  60. .tr_2{
  61. display: block;
  62. height: 80rpx;
  63. line-height: 80rpx;
  64. }
  65. .th_0,
  66. .th_1,
  67. .th_2,
  68. .th2_0,
  69. .th2_1,
  70. .th2_2{
  71. width: 12%;
  72. height: 80rpx;
  73. line-height: 80rpx;
  74. border-right: 1rpx solid gray;
  75. border-bottom: 1rpx solid gray;
  76. text-align: center;
  77. }
  78. .th_0,
  79. .th_1,
  80. .th_2{
  81. border-top: 1rpx solid gray;
  82. }
  83. .th_0,
  84. .th2_0{
  85. border-left: 1rpx solid gray;
  86. }
  87. .th2_0{
  88. float: left;
  89. width: 12%;
  90. height: 80rpx;
  91. line-height: 80rpx;
  92. text-align: center;
  93. /* background-color: greenyellow; */
  94. }
  95. /* 复选框大小 */
  96. .wx-checkbox-input{
  97. width: 22rpx !important;
  98. height: 22rpx !important;
  99. }
  100. /* 期望目标 */
  101. .stuGoal{
  102. margin-left: 20rpx;
  103. }
  104. .goal{
  105. width: 96%;
  106. border: 1rpx solid gray;
  107. margin-top: 20rpx;
  108. }
  109. /* 提交按钮样式 */
  110. .submitBtn{
  111. margin-top: 40rpx;
  112. width: 100%;
  113. }
  114. /* 底部空白区域 */
  115. .blank{
  116. height: 50rpx;
  117. }
  118. /* 课程类别下拉内容 */
  119. /* 空白区(背景) */
  120. .mask{
  121. z-index: 2;
  122. background-color: rgba(0,0,0,.3);
  123. position: fixed;
  124. top: 0;
  125. left: 0;
  126. right: 0;
  127. bottom: 0;
  128. }
  129. /* 内容区 */
  130. .courseTitle-wrapper{
  131. z-index: 3;
  132. width: 100%;
  133. /* height: 500rpx; */
  134. background-color: #fff;
  135. position: fixed;
  136. bottom: 0;
  137. }
  138. /*下拉选项内容区标题部分 */
  139. .courseTitle-head{
  140. background-color: rgb(230,230, 230);
  141. display: flex;
  142. height: 80rpx;
  143. line-height: 80rpx;
  144. align-content: center;
  145. justify-content: space-between;
  146. padding-right: 40rpx;
  147. padding-left: 40rpx;
  148. }
  149. /* 下拉选项内容区 */
  150. .courseTitle-content{
  151. width: 100%;
  152. height: 80rpx;
  153. display: flex;
  154. align-items: center;
  155. justify-content: space-around;
  156. border-bottom: 1rpx solid gray;
  157. }
  158. .courseTitle-content image{
  159. width: 50rpx;
  160. height: 50rpx;
  161. }