myStudy.wxss 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /* pages/my/myStudy/myStudy.wxss */
  2. @import '../../common.wxss';
  3. @font-face {
  4. font-family: "iconfont";
  5. src: url('iconfont.eot?t=1559096289773');
  6. /* IE9 */
  7. src: url('iconfont.eot?t=1559096289773#iefix') format('embedded-opentype'),
  8. /* IE6-IE8 */
  9. url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAKcAAsAAAAABkwAAAJQAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCCcApUYwE2AiQDCAsGAAQgBYRtBzEbigXInpo8KUIbQwhFQm+LQTgb4uG/Nfb3zQ4mEomiWb3hpxOpJIiNkol80RL2/9baLKaROpjtabqEWcLryp8Vnx3UElXMuocCHQ+FR+RdAozrFwWRT9w7/RPog8wHlONeNNakSV1AXRxIAe6FUWSFEnjD2AUv8DGBWoOqcJtNHd0oTWavCsSTpggorRCRZZavFiobDmbxrkJ1ek0vkLfo+/FfOKpJKgp2085No4xqfnWKipdy2kVAiBLQ8QoUmIdk4qAxsyVRMC5RbSbJKHSs+uDXsgzc4qgOwf46u7Ye9EPlM6k89aPmEzzWRO2Q3kk/jGj318vkpaOTi43NPIVc7D4vlsN5fCp9vL///i3eOzl5F4lGIlzjKI/7+wtRDYSydNGDOASnrb9D17mL/9V1GXyq/4pCZdkwH1K9F2/wN1QD+7KhsV0pa6rG4aT9LC21alHCgVY/U60dpy6Eah0TfFUGMhSqjZOZnUeFOguoVG0FteY0H6/ThkoUuQazFgBCs1skjT5QaPZKZvYbFTr9oVJzFKh1FG0X1pmM+4wNCgIDGYsjWJMcm7gelhHXd4IyYAo0r4n4XqC+FschPljON4MNdIkt/qASZoxgQh0LN4HnwDQd7FJHB4nxKmNuLBAgTW/iJcdCGTZQQMAAGSYagWkkDhsJRjMZlc93AooBJgHt6Kkr9gKUT5seC+EFB5DNRntQz6O84hukCGMYAiMohwVrAvOAyeTA3OZ5OiBheOqElCsm4AwiQ4389mbr745BLduWwplZqHrWhBFNHEAIAAA=') format('woff2'),
  10. url('iconfont.woff?t=1559096289773') format('woff'),
  11. url('iconfont.ttf?t=1559096289773') format('truetype'),
  12. /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  13. url('iconfont.svg?t=1559096289773#iconfont') format('svg');
  14. /* iOS 4.1- */
  15. }
  16. .iconfont {
  17. font-family: "iconfont" !important;
  18. font-style: normal;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. }
  22. .icon-xiayibu:before {
  23. content: "\e644";
  24. color: #DEDFE2;
  25. }
  26. .study-container {
  27. width: 100%;
  28. height: 100%;
  29. }
  30. .box {
  31. padding: 30rpx;
  32. margin-bottom: 10rpx;
  33. background-color: #fff;
  34. }
  35. .box .title {
  36. position: relative;
  37. margin-bottom: 25rpx;
  38. font-size: 32rpx;
  39. font-family: 'PingFang SC, PingFang SC-Bold';
  40. font-weight: 700;
  41. color: #1a1a1a;
  42. z-index: 1;
  43. }
  44. .box .title::before {
  45. display: block;
  46. content: '';
  47. position: absolute;
  48. top: 0;
  49. left: 0;
  50. width: 6rpx;
  51. height: 100%;
  52. background: #ffdd36;
  53. border-radius: 3rpx;
  54. z-index: -1;
  55. }
  56. .box .label {
  57. margin-bottom: 15rpx;
  58. font-size: 32rpx;
  59. font-family: 'PingFang SC, PingFang SC-Regular';
  60. font-weight: 400;
  61. color: #060606;
  62. }
  63. .box .input-box {
  64. width: 100%;
  65. margin-bottom: 25rpx;
  66. padding-bottom: 10rpx;
  67. border-bottom: 1px solid #d9d9d9;
  68. }
  69. .box .input-box .picker {
  70. display: flex;
  71. justify-content: space-between;
  72. align-items: center;
  73. font-size: 28rpx;
  74. font-family: 'PingFang SC, PingFang SC-Regular';
  75. font-weight: 400;
  76. color: #bfbfbf;
  77. }
  78. .box .input-box .picker text,
  79. .box .input-box .input-placeholder {
  80. font-size: 28rpx;
  81. font-family: 'PingFang SC, PingFang SC-Regular';
  82. font-weight: 400;
  83. color: #bfbfbf;
  84. }
  85. .box .notice {
  86. font-size: 32rpx;
  87. font-family: 'PingFang SC, PingFang SC-Regular';
  88. font-weight: 400;
  89. color: #808080;
  90. /* line-height: 40rpx; */
  91. }
  92. .box .prove {
  93. display: flex;
  94. flex-direction: column;
  95. align-items: center;
  96. justify-content: center;
  97. width: 690rpx;
  98. height: 360rpx;
  99. margin: 25rpx auto 50rpx;
  100. border: 1rpx solid #d9d9d9;
  101. border-radius: 10rpx;
  102. font-size: 30rpx;
  103. font-family: 'PingFang SC, PingFang SC-Regular';
  104. font-weight: 400;
  105. color: #666666;
  106. }
  107. .box .prove .photo {
  108. width: 249rpx;
  109. height: 161rpx;
  110. margin-top: 60rpx;
  111. margin-bottom: 50rpx;
  112. }
  113. .student-box {
  114. display: flex;
  115. flex-direction: column;
  116. justify-content: center;
  117. }
  118. .photo2 {
  119. width: 660rpx;
  120. height: 330rpx;
  121. border-radius: 10rpx;
  122. }
  123. .last {
  124. margin-bottom: 0;
  125. }
  126. .footer {
  127. padding: 0;
  128. }
  129. .tip {
  130. text-align: center;
  131. font-size: 28rpx;
  132. font-family: 'PingFang SC, PingFang SC-Bold';
  133. font-weight: 700;
  134. }
  135. .tip-item {
  136. height: 90rpx;
  137. background: #fffae1;
  138. color: #ffa836;
  139. line-height: 90rpx;
  140. }
  141. .btn {
  142. width: 690rpx;
  143. height: 85rpx;
  144. background: #ffdc2f;
  145. border-radius: 43rpx;
  146. font-size: 30rpx;
  147. font-family: 'PingFang SC, PingFang SC-Regular';
  148. font-weight: 400;
  149. color: #1a1a1a;
  150. color: #fff;
  151. }
  152. .input-label {
  153. font-size: 28rpx;
  154. font-family: PingFang SC, PingFang SC-Regular;
  155. font-weight: 400;
  156. color: #808080;
  157. }
  158. .tip #fail {
  159. width: 750rpx;
  160. /* height: 90rpx; */
  161. background: #fff2f2;
  162. font-size: 28rpx;
  163. font-family: PingFang SC, PingFang SC-Bold;
  164. font-weight: 700;
  165. color: #ff1010;
  166. padding: 25rpx 0;
  167. }
  168. .content-box {
  169. width: 100%;
  170. margin-bottom: 25rpx;
  171. padding-bottom: 10rpx;
  172. border-bottom: 1px solid #d9d9d9;
  173. display: flex;
  174. justify-content: space-between;
  175. }
  176. .plac-s {
  177. font-size: 28rpx;
  178. font-family: 'PingFang SC, PingFang SC-Regular';
  179. font-weight: 400;
  180. color: #bfbfbf;
  181. }
  182. .school-name {
  183. font-size: 28rpx;
  184. font-family: 'PingFang SC, PingFang SC-Regular';
  185. font-weight: 400;
  186. color: #bfbfbf;
  187. }
  188. .address-popup {
  189. width: 750rpx;
  190. background: #ffffff;
  191. border-radius: 50rpx 50rpx 0 0;
  192. position: fixed;
  193. z-index: 1000;
  194. bottom: 0;
  195. left: 0;
  196. }
  197. .address-popup .title-box {
  198. position: relative;
  199. text-align: center;
  200. margin-top: 37rpx;
  201. display: flex;
  202. justify-content: space-between;
  203. padding: 0 60rpx;
  204. box-sizing: border-box;
  205. height: 60rpx;
  206. align-items: center;
  207. }
  208. .address-popup .title-box .title {
  209. font-size: 36rpx;
  210. font-family: PingFang SC, PingFang SC-Bold;
  211. font-weight: 700;
  212. color: #1a1a1a;
  213. }
  214. .address-popup .title-box .cancel-word {
  215. font-size: 28rpx;
  216. font-family: PingFang SC, PingFang SC-Regular;
  217. font-weight: 400;
  218. color: #ffc12f;
  219. /* position: absolute;
  220. right: 60rpx;
  221. top: 5rpx; */
  222. }
  223. .search-box {
  224. width: 500rpx;
  225. border: 1px solid #E6E6E6;
  226. height: 50rpx;
  227. }
  228. .input-s {
  229. width: 500rpx;
  230. height: 50rpx;
  231. text-align: left;
  232. padding-left: 30rpx;
  233. }
  234. .line-popup {
  235. width: 64rpx;
  236. height: 8rpx;
  237. background: #cccccc;
  238. margin-top: 12rpx;
  239. margin-left: 50%;
  240. transform: translateX(-50%);
  241. }
  242. .picker-view {
  243. width: 750rpx;
  244. height: 300rpx;
  245. }
  246. .picker-view .type-item {
  247. height: 102rpx !important;
  248. line-height: 102rpx !important;
  249. font-size: 30rpx;
  250. font-family: PingFang SC, PingFang SC-Regular;
  251. }
  252. .pick-item {
  253. height: 102rpx;
  254. display: flex;
  255. justify-content: center;
  256. padding: 0 60rpx;
  257. align-items: center;
  258. }
  259. .pick-item .item {
  260. color: #B3B3B3;
  261. font-size: 30rpx;
  262. font-family: PingFang SC, PingFang SC-Regular;
  263. }
  264. .pick-item .active-type {
  265. color: #1a1a1a;
  266. }
  267. .pick-item .item:last-child {
  268. border-bottom: none;
  269. }
  270. .detail-word {
  271. font-size: 30rpx;
  272. font-family: PingFang SC, PingFang SC-Regular;
  273. font-weight: 400;
  274. color: #b3b3b3;
  275. }
  276. .active-detail {
  277. font-size: 30rpx;
  278. font-family: PingFang SC, PingFang SC-Regular;
  279. font-weight: 400;
  280. color: #005ed9;
  281. }
  282. .pick-btn {
  283. width: 630rpx;
  284. height: 85rpx;
  285. background: #ffdc2f;
  286. border-radius: 43rpx;
  287. font-size: 30rpx;
  288. font-family: PingFang SC, PingFang SC-Regular;
  289. font-weight: 400;
  290. text-align: center;
  291. color: #1a1a1a;
  292. margin-left: 60rpx;
  293. line-height: 85rpx;
  294. }
  295. .end-btn {
  296. width: 146rpx;
  297. height: 60rpx;
  298. text-align: center;
  299. line-height: 60rpx;
  300. background-color: #E6E6E6;
  301. font-size: 28rpx;
  302. font-family: PingFang SC, PingFang SC-Regular;
  303. font-weight: 400;
  304. color: #ffffff;
  305. border-radius: 28rpx;
  306. }
  307. .yin {
  308. width: 100vw;
  309. height: 100vh;
  310. position: fixed;
  311. top: 0;
  312. left: 0;
  313. background-color: rgba(0, 0, 0, .5);
  314. z-index: 100;
  315. }
  316. .plac-search {
  317. font-size: 28rpx;
  318. font-family: 'PingFang SC, PingFang SC-Regular';
  319. font-weight: 400;
  320. color: #bfbfbf;
  321. }
  322. #bot-box {
  323. position: fixed;
  324. z-index: 10;
  325. width: 750rpx;
  326. }