memberList.less 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. .memberList {
  2. position: relative;
  3. height: 100vh;
  4. background: #F5F6F7;
  5. display: flex;
  6. flex-direction: column;
  7. .weui-navigation-bar {
  8. position: relative;
  9. z-index: 2;
  10. }
  11. .appBg {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. width: 100%;
  16. height: 592rpx;
  17. background: url("https://oss.dayaedu.com/ktyq/1738997023805.png") no-repeat;
  18. background-size: 100% 100%;
  19. z-index: 1;
  20. }
  21. .memberListCon {
  22. position: relative;
  23. z-index: 2;
  24. flex-grow: 1;
  25. padding-bottom: 200rpx;
  26. padding-top: 36rpx;
  27. overflow: hidden;
  28. .memberInfo {
  29. margin: 0 26rpx;
  30. background: #FFFFFF;
  31. border-radius: 20rpx;
  32. padding: 24rpx 24rpx 32rpx;
  33. margin-bottom: 24rpx;
  34. border: 3rpx solid transparent;
  35. &.active {
  36. border-color: #0AAF20;
  37. }
  38. &:last-child {
  39. margin-bottom: 0;
  40. }
  41. .infoCon {
  42. display: flex;
  43. align-items: center;
  44. font-weight: 600;
  45. font-size: 28rpx;
  46. color: #131415;
  47. line-height: 40rpx;
  48. .tip {
  49. width: 44rpx;
  50. height: 44rpx;
  51. }
  52. .name,
  53. .phone {
  54. margin-left: 16rpx;
  55. }
  56. }
  57. .schoolInfoCon {
  58. margin-top: 20rpx;
  59. .schoolInfo {
  60. margin-right: 8rpx;
  61. border-radius: 4rpx;
  62. border: 1rpx solid rgba(15, 179, 96, 0.5);
  63. padding: 2rpx 6rpx;
  64. font-weight: 400;
  65. font-size: 20rpx;
  66. color: #0FB360;
  67. line-height: 30rpx;
  68. }
  69. .schoolInfoDes {
  70. font-weight: 400;
  71. font-size: 24rpx;
  72. color: #777777;
  73. line-height: 32rpx;
  74. }
  75. }
  76. .operateCon {
  77. margin-top: 32rpx;
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. .radio {
  82. display: flex;
  83. align-items: center;
  84. image {
  85. width: 32rpx;
  86. height: 32rpx;
  87. }
  88. text {
  89. margin-left: 12rpx;
  90. font-weight: 400;
  91. font-size: 24rpx;
  92. color: #777777;
  93. line-height: 32rpx;
  94. }
  95. }
  96. .operate {
  97. display: flex;
  98. align-items: center;
  99. view {
  100. background: #F2F2F2;
  101. border-radius: 24rpx;
  102. padding: 6rpx 24rpx;
  103. font-weight: 400;
  104. font-size: 24rpx;
  105. color: #333333;
  106. line-height: 34rpx;
  107. &:first-child {
  108. margin-right: 24rpx;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. }
  115. .submitCon {
  116. z-index: 10;
  117. position: fixed;
  118. left: 0;
  119. bottom: 0;
  120. padding: 32rpx 40rpx 56rpx;
  121. width: 100%;
  122. box-sizing: border-box;
  123. background: #FFFFFF;
  124. box-shadow: 0rpx -2rpx 24rpx 0rpx rgba(0, 0, 0, 0.1);
  125. border-radius: 32rpx 32rpx 0rpx 0rpx;
  126. .subBtn {
  127. width: 100%;
  128. height: 88rpx;
  129. font-weight: 600;
  130. font-size: 32rpx;
  131. color: #FFFFFF;
  132. line-height: 88rpx;
  133. background: url("https://oss.dayaedu.com/ktyq/1738898417485.png") no-repeat;
  134. background-size: 100% 100%;
  135. display: flex;
  136. align-items: center;
  137. justify-content: center;
  138. image {
  139. width: 40rpx;
  140. height: 40rpx;
  141. margin-right: 12rpx;
  142. }
  143. }
  144. }
  145. .popup-section {
  146. .popup-mask {
  147. position: fixed;
  148. top: 0;
  149. left: 0;
  150. right: 0;
  151. bottom: 0;
  152. background-color: rgba(0, 0, 0, 0.6);
  153. z-index: 99999;
  154. }
  155. .popup-container {
  156. position: fixed;
  157. left: 0;
  158. right: 0;
  159. top: 50%;
  160. transform: translateY(-50%);
  161. z-index: 999999;
  162. margin: 0 100rpx;
  163. padding: 50rpx 0 40rpx 0;
  164. background: #FFFFFF;
  165. border-radius: 32rpx;
  166. .tit {
  167. font-weight: 600;
  168. font-size: 32rpx;
  169. color: #000000;
  170. line-height: 44rpx;
  171. text-align: center;
  172. }
  173. .btnCon {
  174. display: flex;
  175. justify-content: center;
  176. margin-top: 50rpx;
  177. view {
  178. font-weight: 400;
  179. font-size: 28rpx;
  180. color: #000000;
  181. line-height: 36rpx;
  182. padding: 16rpx 72rpx;
  183. border-radius: 36rpx;
  184. border: 2rpx solid #DCDCDC;
  185. &:last-child {
  186. margin-left: 32rpx;
  187. background: #000000;
  188. color: #fff;
  189. }
  190. }
  191. }
  192. }
  193. }
  194. }