login.css 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .uniui-color[data-v-d31e1c47]:before {
  27. content: "\e6cf";
  28. }
  29. .uniui-wallet[data-v-d31e1c47]:before {
  30. content: "\e6b1";
  31. }
  32. .uniui-settings-filled[data-v-d31e1c47]:before {
  33. content: "\e6ce";
  34. }
  35. .uniui-auth-filled[data-v-d31e1c47]:before {
  36. content: "\e6cc";
  37. }
  38. .uniui-shop-filled[data-v-d31e1c47]:before {
  39. content: "\e6cd";
  40. }
  41. .uniui-staff-filled[data-v-d31e1c47]:before {
  42. content: "\e6cb";
  43. }
  44. .uniui-vip-filled[data-v-d31e1c47]:before {
  45. content: "\e6c6";
  46. }
  47. .uniui-plus-filled[data-v-d31e1c47]:before {
  48. content: "\e6c7";
  49. }
  50. .uniui-folder-add-filled[data-v-d31e1c47]:before {
  51. content: "\e6c8";
  52. }
  53. .uniui-color-filled[data-v-d31e1c47]:before {
  54. content: "\e6c9";
  55. }
  56. .uniui-tune-filled[data-v-d31e1c47]:before {
  57. content: "\e6ca";
  58. }
  59. .uniui-calendar-filled[data-v-d31e1c47]:before {
  60. content: "\e6c0";
  61. }
  62. .uniui-notification-filled[data-v-d31e1c47]:before {
  63. content: "\e6c1";
  64. }
  65. .uniui-wallet-filled[data-v-d31e1c47]:before {
  66. content: "\e6c2";
  67. }
  68. .uniui-medal-filled[data-v-d31e1c47]:before {
  69. content: "\e6c3";
  70. }
  71. .uniui-gift-filled[data-v-d31e1c47]:before {
  72. content: "\e6c4";
  73. }
  74. .uniui-fire-filled[data-v-d31e1c47]:before {
  75. content: "\e6c5";
  76. }
  77. .uniui-refreshempty[data-v-d31e1c47]:before {
  78. content: "\e6bf";
  79. }
  80. .uniui-location-filled[data-v-d31e1c47]:before {
  81. content: "\e6af";
  82. }
  83. .uniui-person-filled[data-v-d31e1c47]:before {
  84. content: "\e69d";
  85. }
  86. .uniui-personadd-filled[data-v-d31e1c47]:before {
  87. content: "\e698";
  88. }
  89. .uniui-back[data-v-d31e1c47]:before {
  90. content: "\e6b9";
  91. }
  92. .uniui-forward[data-v-d31e1c47]:before {
  93. content: "\e6ba";
  94. }
  95. .uniui-arrow-right[data-v-d31e1c47]:before {
  96. content: "\e6bb";
  97. }
  98. .uniui-arrowthinright[data-v-d31e1c47]:before {
  99. content: "\e6bb";
  100. }
  101. .uniui-arrow-left[data-v-d31e1c47]:before {
  102. content: "\e6bc";
  103. }
  104. .uniui-arrowthinleft[data-v-d31e1c47]:before {
  105. content: "\e6bc";
  106. }
  107. .uniui-arrow-up[data-v-d31e1c47]:before {
  108. content: "\e6bd";
  109. }
  110. .uniui-arrowthinup[data-v-d31e1c47]:before {
  111. content: "\e6bd";
  112. }
  113. .uniui-arrow-down[data-v-d31e1c47]:before {
  114. content: "\e6be";
  115. }
  116. .uniui-arrowthindown[data-v-d31e1c47]:before {
  117. content: "\e6be";
  118. }
  119. .uniui-bottom[data-v-d31e1c47]:before {
  120. content: "\e6b8";
  121. }
  122. .uniui-arrowdown[data-v-d31e1c47]:before {
  123. content: "\e6b8";
  124. }
  125. .uniui-right[data-v-d31e1c47]:before {
  126. content: "\e6b5";
  127. }
  128. .uniui-arrowright[data-v-d31e1c47]:before {
  129. content: "\e6b5";
  130. }
  131. .uniui-top[data-v-d31e1c47]:before {
  132. content: "\e6b6";
  133. }
  134. .uniui-arrowup[data-v-d31e1c47]:before {
  135. content: "\e6b6";
  136. }
  137. .uniui-left[data-v-d31e1c47]:before {
  138. content: "\e6b7";
  139. }
  140. .uniui-arrowleft[data-v-d31e1c47]:before {
  141. content: "\e6b7";
  142. }
  143. .uniui-eye[data-v-d31e1c47]:before {
  144. content: "\e651";
  145. }
  146. .uniui-eye-filled[data-v-d31e1c47]:before {
  147. content: "\e66a";
  148. }
  149. .uniui-eye-slash[data-v-d31e1c47]:before {
  150. content: "\e6b3";
  151. }
  152. .uniui-eye-slash-filled[data-v-d31e1c47]:before {
  153. content: "\e6b4";
  154. }
  155. .uniui-info-filled[data-v-d31e1c47]:before {
  156. content: "\e649";
  157. }
  158. .uniui-reload[data-v-d31e1c47]:before {
  159. content: "\e6b2";
  160. }
  161. .uniui-micoff-filled[data-v-d31e1c47]:before {
  162. content: "\e6b0";
  163. }
  164. .uniui-map-pin-ellipse[data-v-d31e1c47]:before {
  165. content: "\e6ac";
  166. }
  167. .uniui-map-pin[data-v-d31e1c47]:before {
  168. content: "\e6ad";
  169. }
  170. .uniui-location[data-v-d31e1c47]:before {
  171. content: "\e6ae";
  172. }
  173. .uniui-starhalf[data-v-d31e1c47]:before {
  174. content: "\e683";
  175. }
  176. .uniui-star[data-v-d31e1c47]:before {
  177. content: "\e688";
  178. }
  179. .uniui-star-filled[data-v-d31e1c47]:before {
  180. content: "\e68f";
  181. }
  182. .uniui-calendar[data-v-d31e1c47]:before {
  183. content: "\e6a0";
  184. }
  185. .uniui-fire[data-v-d31e1c47]:before {
  186. content: "\e6a1";
  187. }
  188. .uniui-medal[data-v-d31e1c47]:before {
  189. content: "\e6a2";
  190. }
  191. .uniui-font[data-v-d31e1c47]:before {
  192. content: "\e6a3";
  193. }
  194. .uniui-gift[data-v-d31e1c47]:before {
  195. content: "\e6a4";
  196. }
  197. .uniui-link[data-v-d31e1c47]:before {
  198. content: "\e6a5";
  199. }
  200. .uniui-notification[data-v-d31e1c47]:before {
  201. content: "\e6a6";
  202. }
  203. .uniui-staff[data-v-d31e1c47]:before {
  204. content: "\e6a7";
  205. }
  206. .uniui-vip[data-v-d31e1c47]:before {
  207. content: "\e6a8";
  208. }
  209. .uniui-folder-add[data-v-d31e1c47]:before {
  210. content: "\e6a9";
  211. }
  212. .uniui-tune[data-v-d31e1c47]:before {
  213. content: "\e6aa";
  214. }
  215. .uniui-auth[data-v-d31e1c47]:before {
  216. content: "\e6ab";
  217. }
  218. .uniui-person[data-v-d31e1c47]:before {
  219. content: "\e699";
  220. }
  221. .uniui-email-filled[data-v-d31e1c47]:before {
  222. content: "\e69a";
  223. }
  224. .uniui-phone-filled[data-v-d31e1c47]:before {
  225. content: "\e69b";
  226. }
  227. .uniui-phone[data-v-d31e1c47]:before {
  228. content: "\e69c";
  229. }
  230. .uniui-email[data-v-d31e1c47]:before {
  231. content: "\e69e";
  232. }
  233. .uniui-personadd[data-v-d31e1c47]:before {
  234. content: "\e69f";
  235. }
  236. .uniui-chatboxes-filled[data-v-d31e1c47]:before {
  237. content: "\e692";
  238. }
  239. .uniui-contact[data-v-d31e1c47]:before {
  240. content: "\e693";
  241. }
  242. .uniui-chatbubble-filled[data-v-d31e1c47]:before {
  243. content: "\e694";
  244. }
  245. .uniui-contact-filled[data-v-d31e1c47]:before {
  246. content: "\e695";
  247. }
  248. .uniui-chatboxes[data-v-d31e1c47]:before {
  249. content: "\e696";
  250. }
  251. .uniui-chatbubble[data-v-d31e1c47]:before {
  252. content: "\e697";
  253. }
  254. .uniui-upload-filled[data-v-d31e1c47]:before {
  255. content: "\e68e";
  256. }
  257. .uniui-upload[data-v-d31e1c47]:before {
  258. content: "\e690";
  259. }
  260. .uniui-weixin[data-v-d31e1c47]:before {
  261. content: "\e691";
  262. }
  263. .uniui-compose[data-v-d31e1c47]:before {
  264. content: "\e67f";
  265. }
  266. .uniui-qq[data-v-d31e1c47]:before {
  267. content: "\e680";
  268. }
  269. .uniui-download-filled[data-v-d31e1c47]:before {
  270. content: "\e681";
  271. }
  272. .uniui-pyq[data-v-d31e1c47]:before {
  273. content: "\e682";
  274. }
  275. .uniui-sound[data-v-d31e1c47]:before {
  276. content: "\e684";
  277. }
  278. .uniui-trash-filled[data-v-d31e1c47]:before {
  279. content: "\e685";
  280. }
  281. .uniui-sound-filled[data-v-d31e1c47]:before {
  282. content: "\e686";
  283. }
  284. .uniui-trash[data-v-d31e1c47]:before {
  285. content: "\e687";
  286. }
  287. .uniui-videocam-filled[data-v-d31e1c47]:before {
  288. content: "\e689";
  289. }
  290. .uniui-spinner-cycle[data-v-d31e1c47]:before {
  291. content: "\e68a";
  292. }
  293. .uniui-weibo[data-v-d31e1c47]:before {
  294. content: "\e68b";
  295. }
  296. .uniui-videocam[data-v-d31e1c47]:before {
  297. content: "\e68c";
  298. }
  299. .uniui-download[data-v-d31e1c47]:before {
  300. content: "\e68d";
  301. }
  302. .uniui-help[data-v-d31e1c47]:before {
  303. content: "\e679";
  304. }
  305. .uniui-navigate-filled[data-v-d31e1c47]:before {
  306. content: "\e67a";
  307. }
  308. .uniui-plusempty[data-v-d31e1c47]:before {
  309. content: "\e67b";
  310. }
  311. .uniui-smallcircle[data-v-d31e1c47]:before {
  312. content: "\e67c";
  313. }
  314. .uniui-minus-filled[data-v-d31e1c47]:before {
  315. content: "\e67d";
  316. }
  317. .uniui-micoff[data-v-d31e1c47]:before {
  318. content: "\e67e";
  319. }
  320. .uniui-closeempty[data-v-d31e1c47]:before {
  321. content: "\e66c";
  322. }
  323. .uniui-clear[data-v-d31e1c47]:before {
  324. content: "\e66d";
  325. }
  326. .uniui-navigate[data-v-d31e1c47]:before {
  327. content: "\e66e";
  328. }
  329. .uniui-minus[data-v-d31e1c47]:before {
  330. content: "\e66f";
  331. }
  332. .uniui-image[data-v-d31e1c47]:before {
  333. content: "\e670";
  334. }
  335. .uniui-mic[data-v-d31e1c47]:before {
  336. content: "\e671";
  337. }
  338. .uniui-paperplane[data-v-d31e1c47]:before {
  339. content: "\e672";
  340. }
  341. .uniui-close[data-v-d31e1c47]:before {
  342. content: "\e673";
  343. }
  344. .uniui-help-filled[data-v-d31e1c47]:before {
  345. content: "\e674";
  346. }
  347. .uniui-paperplane-filled[data-v-d31e1c47]:before {
  348. content: "\e675";
  349. }
  350. .uniui-plus[data-v-d31e1c47]:before {
  351. content: "\e676";
  352. }
  353. .uniui-mic-filled[data-v-d31e1c47]:before {
  354. content: "\e677";
  355. }
  356. .uniui-image-filled[data-v-d31e1c47]:before {
  357. content: "\e678";
  358. }
  359. .uniui-locked-filled[data-v-d31e1c47]:before {
  360. content: "\e668";
  361. }
  362. .uniui-info[data-v-d31e1c47]:before {
  363. content: "\e669";
  364. }
  365. .uniui-locked[data-v-d31e1c47]:before {
  366. content: "\e66b";
  367. }
  368. .uniui-camera-filled[data-v-d31e1c47]:before {
  369. content: "\e658";
  370. }
  371. .uniui-chat-filled[data-v-d31e1c47]:before {
  372. content: "\e659";
  373. }
  374. .uniui-camera[data-v-d31e1c47]:before {
  375. content: "\e65a";
  376. }
  377. .uniui-circle[data-v-d31e1c47]:before {
  378. content: "\e65b";
  379. }
  380. .uniui-checkmarkempty[data-v-d31e1c47]:before {
  381. content: "\e65c";
  382. }
  383. .uniui-chat[data-v-d31e1c47]:before {
  384. content: "\e65d";
  385. }
  386. .uniui-circle-filled[data-v-d31e1c47]:before {
  387. content: "\e65e";
  388. }
  389. .uniui-flag[data-v-d31e1c47]:before {
  390. content: "\e65f";
  391. }
  392. .uniui-flag-filled[data-v-d31e1c47]:before {
  393. content: "\e660";
  394. }
  395. .uniui-gear-filled[data-v-d31e1c47]:before {
  396. content: "\e661";
  397. }
  398. .uniui-home[data-v-d31e1c47]:before {
  399. content: "\e662";
  400. }
  401. .uniui-home-filled[data-v-d31e1c47]:before {
  402. content: "\e663";
  403. }
  404. .uniui-gear[data-v-d31e1c47]:before {
  405. content: "\e664";
  406. }
  407. .uniui-smallcircle-filled[data-v-d31e1c47]:before {
  408. content: "\e665";
  409. }
  410. .uniui-map-filled[data-v-d31e1c47]:before {
  411. content: "\e666";
  412. }
  413. .uniui-map[data-v-d31e1c47]:before {
  414. content: "\e667";
  415. }
  416. .uniui-refresh-filled[data-v-d31e1c47]:before {
  417. content: "\e656";
  418. }
  419. .uniui-refresh[data-v-d31e1c47]:before {
  420. content: "\e657";
  421. }
  422. .uniui-cloud-upload[data-v-d31e1c47]:before {
  423. content: "\e645";
  424. }
  425. .uniui-cloud-download-filled[data-v-d31e1c47]:before {
  426. content: "\e646";
  427. }
  428. .uniui-cloud-download[data-v-d31e1c47]:before {
  429. content: "\e647";
  430. }
  431. .uniui-cloud-upload-filled[data-v-d31e1c47]:before {
  432. content: "\e648";
  433. }
  434. .uniui-redo[data-v-d31e1c47]:before {
  435. content: "\e64a";
  436. }
  437. .uniui-images-filled[data-v-d31e1c47]:before {
  438. content: "\e64b";
  439. }
  440. .uniui-undo-filled[data-v-d31e1c47]:before {
  441. content: "\e64c";
  442. }
  443. .uniui-more[data-v-d31e1c47]:before {
  444. content: "\e64d";
  445. }
  446. .uniui-more-filled[data-v-d31e1c47]:before {
  447. content: "\e64e";
  448. }
  449. .uniui-undo[data-v-d31e1c47]:before {
  450. content: "\e64f";
  451. }
  452. .uniui-images[data-v-d31e1c47]:before {
  453. content: "\e650";
  454. }
  455. .uniui-paperclip[data-v-d31e1c47]:before {
  456. content: "\e652";
  457. }
  458. .uniui-settings[data-v-d31e1c47]:before {
  459. content: "\e653";
  460. }
  461. .uniui-search[data-v-d31e1c47]:before {
  462. content: "\e654";
  463. }
  464. .uniui-redo-filled[data-v-d31e1c47]:before {
  465. content: "\e655";
  466. }
  467. .uniui-list[data-v-d31e1c47]:before {
  468. content: "\e644";
  469. }
  470. .uniui-mail-open-filled[data-v-d31e1c47]:before {
  471. content: "\e63a";
  472. }
  473. .uniui-hand-down-filled[data-v-d31e1c47]:before {
  474. content: "\e63c";
  475. }
  476. .uniui-hand-down[data-v-d31e1c47]:before {
  477. content: "\e63d";
  478. }
  479. .uniui-hand-up-filled[data-v-d31e1c47]:before {
  480. content: "\e63e";
  481. }
  482. .uniui-hand-up[data-v-d31e1c47]:before {
  483. content: "\e63f";
  484. }
  485. .uniui-heart-filled[data-v-d31e1c47]:before {
  486. content: "\e641";
  487. }
  488. .uniui-mail-open[data-v-d31e1c47]:before {
  489. content: "\e643";
  490. }
  491. .uniui-heart[data-v-d31e1c47]:before {
  492. content: "\e639";
  493. }
  494. .uniui-loop[data-v-d31e1c47]:before {
  495. content: "\e633";
  496. }
  497. .uniui-pulldown[data-v-d31e1c47]:before {
  498. content: "\e632";
  499. }
  500. .uniui-scan[data-v-d31e1c47]:before {
  501. content: "\e62a";
  502. }
  503. .uniui-bars[data-v-d31e1c47]:before {
  504. content: "\e627";
  505. }
  506. .uniui-cart-filled[data-v-d31e1c47]:before {
  507. content: "\e629";
  508. }
  509. .uniui-checkbox[data-v-d31e1c47]:before {
  510. content: "\e62b";
  511. }
  512. .uniui-checkbox-filled[data-v-d31e1c47]:before {
  513. content: "\e62c";
  514. }
  515. .uniui-shop[data-v-d31e1c47]:before {
  516. content: "\e62f";
  517. }
  518. .uniui-headphones[data-v-d31e1c47]:before {
  519. content: "\e630";
  520. }
  521. .uniui-cart[data-v-d31e1c47]:before {
  522. content: "\e631";
  523. }
  524. @font-face {
  525. font-family: uniicons;
  526. src: url("../../assets/uniicons.89ed7d6d.ttf") format("truetype");
  527. }
  528. .uni-icons[data-v-d31e1c47] {
  529. font-family: uniicons;
  530. text-decoration: none;
  531. text-align: center;
  532. }
  533. /**
  534. * 这里是uni-app内置的常用样式变量
  535. *
  536. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  537. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  538. *
  539. */
  540. /**
  541. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  542. *
  543. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  544. */
  545. /* 颜色变量 */
  546. /* 行为相关颜色 */
  547. /* 文字基本颜色 */
  548. /* 背景颜色 */
  549. /* 边框颜色 */
  550. /* 尺寸变量 */
  551. /* 文字尺寸 */
  552. /* 图片尺寸 */
  553. /* Border Radius */
  554. /* 水平间距 */
  555. /* 垂直间距 */
  556. /* 透明度 */
  557. /* 文章场景相关 */
  558. .close-icon[data-v-f2bacd7c] {
  559. position: absolute;
  560. left: 50%;
  561. transform: translateX(-50%);
  562. bottom: -2.5rem;
  563. z-index: 100;
  564. }
  565. .uni-popup[data-v-f2bacd7c] {
  566. position: fixed;
  567. z-index: 99;
  568. }
  569. .uni-popup.top[data-v-f2bacd7c], .uni-popup.left[data-v-f2bacd7c], .uni-popup.right[data-v-f2bacd7c] {
  570. top: 0;
  571. }
  572. .uni-popup .uni-popup__wrapper[data-v-f2bacd7c] {
  573. display: block;
  574. position: relative;
  575. background: var(--f2bacd7c-backgroundImage) no-repeat;
  576. background-size: 100% 100%;
  577. /* iphonex 等安全区设置,底部安全区适配 */
  578. }
  579. .uni-popup .uni-popup__wrapper.left[data-v-f2bacd7c], .uni-popup .uni-popup__wrapper.right[data-v-f2bacd7c] {
  580. padding-top: 0;
  581. flex: 1;
  582. }
  583. .fixforpc-z-index[data-v-f2bacd7c] {
  584. z-index: 999;
  585. }
  586. .fixforpc-top[data-v-f2bacd7c] {
  587. top: 0;
  588. }
  589. /**
  590. * 这里是uni-app内置的常用样式变量
  591. *
  592. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  593. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  594. *
  595. */
  596. /**
  597. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  598. *
  599. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  600. */
  601. /* 颜色变量 */
  602. /* 行为相关颜色 */
  603. /* 文字基本颜色 */
  604. /* 背景颜色 */
  605. /* 边框颜色 */
  606. /* 尺寸变量 */
  607. /* 文字尺寸 */
  608. /* 图片尺寸 */
  609. /* Border Radius */
  610. /* 水平间距 */
  611. /* 垂直间距 */
  612. /* 透明度 */
  613. /* 文章场景相关 */
  614. .uni-easyinput[data-v-09fd5285] {
  615. width: 100%;
  616. flex: 1;
  617. position: relative;
  618. text-align: left;
  619. color: #333;
  620. font-size: 14px;
  621. }
  622. .uni-easyinput__content[data-v-09fd5285] {
  623. flex: 1;
  624. width: 100%;
  625. display: flex;
  626. box-sizing: border-box;
  627. min-height: 2.25rem;
  628. flex-direction: row;
  629. align-items: center;
  630. }
  631. .uni-easyinput__content-input[data-v-09fd5285] {
  632. width: auto;
  633. position: relative;
  634. overflow: hidden;
  635. flex: 1;
  636. line-height: 1.75rem;
  637. font-size: 0.875rem;
  638. height: 1.75rem;
  639. }
  640. .uni-easyinput__placeholder-class[data-v-09fd5285] {
  641. color: #bbbbbb;
  642. font-size: 0.875rem;
  643. font-weight: 400;
  644. line-height: normal;
  645. }
  646. .is-textarea[data-v-09fd5285] {
  647. align-items: flex-start;
  648. }
  649. .is-textarea-icon[data-v-09fd5285] {
  650. margin-top: 5px;
  651. }
  652. .uni-easyinput__content-textarea[data-v-09fd5285] {
  653. position: relative;
  654. overflow: hidden;
  655. flex: 1;
  656. line-height: 1.5;
  657. font-size: 14px;
  658. padding-top: 6px;
  659. padding-bottom: 10px;
  660. height: 80px;
  661. min-height: 80px;
  662. width: auto;
  663. }
  664. .input-padding[data-v-09fd5285] {
  665. padding-left: 10px;
  666. }
  667. .content-clear-icon[data-v-09fd5285] {
  668. padding: 0 5px;
  669. }
  670. .label-icon[data-v-09fd5285] {
  671. margin-right: 5px;
  672. margin-top: -1px;
  673. }
  674. .is-input-border[data-v-09fd5285] {
  675. display: flex;
  676. box-sizing: border-box;
  677. flex-direction: row;
  678. align-items: center;
  679. border: 1px solid #dcdfe6;
  680. border-radius: 4px;
  681. }
  682. .uni-error-message[data-v-09fd5285] {
  683. position: absolute;
  684. bottom: -17px;
  685. left: 0;
  686. line-height: 12px;
  687. color: #e43d33;
  688. font-size: 12px;
  689. text-align: left;
  690. }
  691. .uni-error-msg--boeder[data-v-09fd5285] {
  692. position: relative;
  693. bottom: 0;
  694. line-height: 22px;
  695. }
  696. .is-input-error-border[data-v-09fd5285] {
  697. border-color: #e43d33;
  698. }
  699. .uni-easyinput--border[data-v-09fd5285] {
  700. margin-bottom: 0;
  701. padding: 10px 15px;
  702. border-top: 1px #eee solid;
  703. }
  704. .uni-easyinput-error[data-v-09fd5285] {
  705. padding-bottom: 0;
  706. }
  707. .is-first-border[data-v-09fd5285] {
  708. border: none;
  709. }
  710. .is-disabled[data-v-09fd5285] {
  711. border-color: red;
  712. color: #d5d5d5;
  713. }
  714. .is-disabled .uni-easyinput__placeholder-class[data-v-09fd5285] {
  715. color: #d5d5d5;
  716. font-size: 12px;
  717. }
  718. /**
  719. * 这里是uni-app内置的常用样式变量
  720. *
  721. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  722. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  723. *
  724. */
  725. /**
  726. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  727. *
  728. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  729. */
  730. /* 颜色变量 */
  731. /* 行为相关颜色 */
  732. /* 文字基本颜色 */
  733. /* 背景颜色 */
  734. /* 边框颜色 */
  735. /* 尺寸变量 */
  736. /* 文字尺寸 */
  737. /* 图片尺寸 */
  738. /* Border Radius */
  739. /* 水平间距 */
  740. /* 垂直间距 */
  741. /* 透明度 */
  742. /* 文章场景相关 */
  743. .uni-forms-item[data-v-462874dd] {
  744. position: relative;
  745. padding: 0px;
  746. text-align: left;
  747. color: #333;
  748. font-size: 14px;
  749. }
  750. .uni-forms-item__box[data-v-462874dd] {
  751. position: relative;
  752. }
  753. .uni-forms-item__inner[data-v-462874dd] {
  754. display: flex;
  755. padding-bottom: 22px;
  756. }
  757. .is-direction-left[data-v-462874dd] {
  758. flex-direction: row;
  759. }
  760. .is-direction-top[data-v-462874dd] {
  761. flex-direction: column;
  762. }
  763. .uni-forms-item__label[data-v-462874dd] {
  764. display: flex;
  765. flex-shrink: 0;
  766. box-sizing: border-box;
  767. flex-direction: row;
  768. align-items: center;
  769. width: 65px;
  770. padding: 5px 0;
  771. height: 2.25rem;
  772. }
  773. .uni-forms-item__label .label-text[data-v-462874dd] {
  774. font-size: 0.875rem;
  775. color: #333333;
  776. }
  777. .uni-forms-item__label .label-seat[data-v-462874dd] {
  778. margin-right: 5px;
  779. }
  780. .uni-forms-item__content[data-v-462874dd] {
  781. width: 100%;
  782. box-sizing: border-box;
  783. min-height: 36px;
  784. flex: 1;
  785. }
  786. .label-icon[data-v-462874dd] {
  787. margin-right: 5px;
  788. margin-top: -1px;
  789. }
  790. .is-required[data-v-462874dd] {
  791. color: #dd524d;
  792. font-weight: bold;
  793. }
  794. .uni-error-message[data-v-462874dd] {
  795. position: absolute;
  796. bottom: 0px;
  797. left: 0;
  798. text-align: left;
  799. }
  800. .uni-error-message-text[data-v-462874dd] {
  801. line-height: 1.375rem;
  802. color: #dd524d;
  803. font-size: 0.75rem;
  804. }
  805. .uni-error-msg--boeder[data-v-462874dd] {
  806. position: relative;
  807. bottom: 0;
  808. line-height: 22px;
  809. }
  810. .is-input-error-border[data-v-462874dd] {
  811. border-color: #dd524d;
  812. }
  813. .uni-forms-item--border[data-v-462874dd] {
  814. margin-bottom: 0;
  815. padding: 10px 0;
  816. border-top: 1px #eee solid;
  817. }
  818. .uni-forms-item--border .uni-forms-item__inner[data-v-462874dd] {
  819. padding: 0;
  820. }
  821. .is-first-border[data-v-462874dd] {
  822. border: none;
  823. }
  824. .uni-forms--no-padding[data-v-462874dd] {
  825. padding: 0;
  826. }
  827. /**
  828. * 这里是uni-app内置的常用样式变量
  829. *
  830. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  831. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  832. *
  833. */
  834. /**
  835. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  836. *
  837. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  838. */
  839. /* 颜色变量 */
  840. /* 行为相关颜色 */
  841. /* 文字基本颜色 */
  842. /* 背景颜色 */
  843. /* 边框颜色 */
  844. /* 尺寸变量 */
  845. /* 文字尺寸 */
  846. /* 图片尺寸 */
  847. /* Border Radius */
  848. /* 水平间距 */
  849. /* 垂直间距 */
  850. /* 透明度 */
  851. /* 文章场景相关 */
  852. /**
  853. * 这里是uni-app内置的常用样式变量
  854. *
  855. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  856. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  857. *
  858. */
  859. /**
  860. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  861. *
  862. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  863. */
  864. /* 颜色变量 */
  865. /* 行为相关颜色 */
  866. /* 文字基本颜色 */
  867. /* 背景颜色 */
  868. /* 边框颜色 */
  869. /* 尺寸变量 */
  870. /* 文字尺寸 */
  871. /* 图片尺寸 */
  872. /* Border Radius */
  873. /* 水平间距 */
  874. /* 垂直间距 */
  875. /* 透明度 */
  876. /* 文章场景相关 */
  877. @keyframes title-animation-5db53ad8 {
  878. 0% {
  879. font-size: 1rem;
  880. }
  881. 100% {
  882. font-size: 1.125rem;
  883. }
  884. }
  885. .login-wrap[data-v-5db53ad8] {
  886. padding: 1.5625rem 1.0625rem;
  887. min-height: 15.625rem;
  888. background-color: #fff;
  889. border-radius: 0.625rem 0.625rem 0 0;
  890. }
  891. .head-box .head-title[data-v-5db53ad8] {
  892. font-size: 1.125rem;
  893. font-weight: bold;
  894. color: #333333;
  895. line-height: 1.125rem;
  896. }
  897. .head-box .head-title-active[data-v-5db53ad8] {
  898. font-size: 1rem;
  899. font-weight: 600;
  900. color: #999;
  901. line-height: 1.125rem;
  902. }
  903. .head-box .head-title-animation[data-v-5db53ad8] {
  904. animation-name: title-animation-5db53ad8;
  905. animation-duration: 0.1s;
  906. animation-timing-function: ease-out;
  907. animation-fill-mode: forwards;
  908. }
  909. .head-box .head-title-line[data-v-5db53ad8] {
  910. position: relative;
  911. }
  912. .head-box .head-title-line[data-v-5db53ad8]::before {
  913. content: "";
  914. width: 0.03125rem;
  915. height: 1.0625rem;
  916. background-color: #e4e7ed;
  917. position: absolute;
  918. left: -0.9375rem;
  919. top: 50%;
  920. transform: translateY(-50%);
  921. }
  922. .head-box .head-subtitle[data-v-5db53ad8] {
  923. font-size: 0.8125rem;
  924. font-weight: 400;
  925. color: #afb6c0;
  926. text-align: left;
  927. display: flex;
  928. }
  929. .code-btn-start[data-v-5db53ad8] {
  930. width: 5rem;
  931. height: 1.75rem;
  932. line-height: normal;
  933. border: 0.0625rem solid var(--ui-BG-Main);
  934. border-radius: 0.875rem;
  935. font-size: 0.8125rem;
  936. font-weight: 400;
  937. color: var(--ui-BG-Main);
  938. opacity: 1;
  939. }
  940. .forgot-btn[data-v-5db53ad8] {
  941. width: 5rem;
  942. line-height: 1.75rem;
  943. font-size: 0.9375rem;
  944. font-weight: 500;
  945. color: #999;
  946. }
  947. .login-btn-start[data-v-5db53ad8] {
  948. width: 4.9375rem;
  949. height: 1.75rem;
  950. line-height: normal;
  951. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  952. border-radius: 0.875rem;
  953. font-size: 0.8125rem;
  954. font-weight: 500;
  955. color: #fff;
  956. }
  957. .type-btn[data-v-5db53ad8] {
  958. padding: 0.625rem;
  959. margin: 1.25rem auto;
  960. font-size: 0.9375rem;
  961. font-weight: 500;
  962. color: #999999;
  963. }
  964. .auto-login-box[data-v-5db53ad8] {
  965. width: 100%;
  966. }
  967. .auto-login-box .auto-login-btn[data-v-5db53ad8] {
  968. width: 2.125rem;
  969. height: 2.125rem;
  970. border-radius: 50%;
  971. margin: 0 0.9375rem;
  972. }
  973. .auto-login-box .auto-login-img[data-v-5db53ad8] {
  974. width: 2.125rem;
  975. height: 2.125rem;
  976. border-radius: 50%;
  977. }
  978. .agreement-box[data-v-5db53ad8] {
  979. margin: 2.5rem auto 0;
  980. }
  981. .agreement-box .protocol-check[data-v-5db53ad8] {
  982. transform: scale(0.7);
  983. }
  984. .agreement-box .agreement-text[data-v-5db53ad8] {
  985. font-size: 0.8125rem;
  986. font-weight: 500;
  987. color: #999999;
  988. }
  989. .agreement-box .agreement-text .tcp-text[data-v-5db53ad8] {
  990. color: var(--ui-BG-Main);
  991. }
  992. .editPwd-btn-box .save-btn[data-v-5db53ad8] {
  993. width: 21.5625rem;
  994. line-height: 2.1875rem;
  995. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  996. border-radius: 1.09375rem;
  997. font-size: 0.875rem;
  998. font-weight: 500;
  999. color: #ffffff;
  1000. }
  1001. .editPwd-btn-box .forgot-btn[data-v-5db53ad8] {
  1002. width: 21.5625rem;
  1003. line-height: 2.1875rem;
  1004. font-size: 0.875rem;
  1005. font-weight: 500;
  1006. color: #999999;
  1007. }
  1008. .code-btn-start[data-v-5db53ad8] {
  1009. color: var(--ui-BG-Main);
  1010. border: 1px solid var(--ui-BG-Main);
  1011. }
  1012. .disabled[data-v-5db53ad8] {
  1013. border: 1px solid #f7f7f7;
  1014. }
  1015. .loginUniForm[data-v-5db53ad8] {
  1016. border: 0.03125rem solid #d6d6d6;
  1017. padding: 0.3125rem 0.46875rem;
  1018. border-radius: 0.3125rem;
  1019. }
  1020. .loginUniFormItem[data-v-5db53ad8] {
  1021. border-bottom: 0.03125rem solid #d6d6d6;
  1022. padding-bottom: 0.3125rem;
  1023. }
  1024. .loginUniFormItem[data-v-5db53ad8]:last-child {
  1025. border-bottom: none;
  1026. padding-top: 0.3125rem;
  1027. }
  1028. [data-v-5db53ad8] .loginUniFormItem .uni-forms-item__inner {
  1029. padding-bottom: 0;
  1030. }
  1031. [data-v-5db53ad8] .loginUniFormItem .uni-error-message {
  1032. bottom: -0.625rem;
  1033. }
  1034. /**
  1035. * 这里是uni-app内置的常用样式变量
  1036. *
  1037. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1038. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1039. *
  1040. */
  1041. /**
  1042. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1043. *
  1044. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1045. */
  1046. /* 颜色变量 */
  1047. /* 行为相关颜色 */
  1048. /* 文字基本颜色 */
  1049. /* 背景颜色 */
  1050. /* 边框颜色 */
  1051. /* 尺寸变量 */
  1052. /* 文字尺寸 */
  1053. /* 图片尺寸 */
  1054. /* Border Radius */
  1055. /* 水平间距 */
  1056. /* 垂直间距 */
  1057. /* 透明度 */
  1058. /* 文章场景相关 */
  1059. .icon[data-v-fa14255b] {
  1060. display: flex;
  1061. align-items: center;
  1062. margin-right: 0.21875rem;
  1063. }
  1064. .icon uni-image[data-v-fa14255b] {
  1065. width: 1.09375rem;
  1066. height: 1.09375rem;
  1067. }
  1068. @keyframes title-animation-fa14255b {
  1069. 0% {
  1070. font-size: 1rem;
  1071. }
  1072. 100% {
  1073. font-size: 1.125rem;
  1074. }
  1075. }
  1076. .login-wrap[data-v-fa14255b] {
  1077. padding: 1.5625rem 1.0625rem;
  1078. min-height: 15.625rem;
  1079. background-color: #fff;
  1080. border-radius: 0.625rem 0.625rem 0 0;
  1081. }
  1082. .head-box[data-v-fa14255b] {
  1083. padding: 1.25rem 1.25rem 0;
  1084. }
  1085. .head-box .head-title[data-v-fa14255b] {
  1086. min-width: 5rem;
  1087. font-size: 1.125rem;
  1088. font-weight: bold;
  1089. color: #333333;
  1090. line-height: 1.125rem;
  1091. }
  1092. .head-box .head-title-active[data-v-fa14255b] {
  1093. width: 5rem;
  1094. font-size: 1rem;
  1095. font-weight: 600;
  1096. color: #999;
  1097. line-height: 1.125rem;
  1098. }
  1099. .head-box .head-title-animation[data-v-fa14255b] {
  1100. animation-name: title-animation-fa14255b;
  1101. animation-duration: 0.1s;
  1102. animation-timing-function: ease-out;
  1103. animation-fill-mode: forwards;
  1104. }
  1105. .head-box .head-title-line[data-v-fa14255b] {
  1106. position: relative;
  1107. }
  1108. .head-box .head-title-line[data-v-fa14255b]::before {
  1109. content: "";
  1110. width: 0.03125rem;
  1111. height: 1.0625rem;
  1112. background-color: #e4e7ed;
  1113. position: absolute;
  1114. left: -0.9375rem;
  1115. top: 50%;
  1116. transform: translateY(-50%);
  1117. }
  1118. .head-box .head-subtitle[data-v-fa14255b] {
  1119. font-size: 0.8125rem;
  1120. font-weight: 400;
  1121. color: #afb6c0;
  1122. text-align: left;
  1123. display: flex;
  1124. }
  1125. .code-btn-start[data-v-fa14255b] {
  1126. width: 5rem;
  1127. height: 1.75rem;
  1128. line-height: normal;
  1129. border: 0.0625rem solid var(--ui-BG-Main);
  1130. border-radius: 0.875rem;
  1131. font-size: 0.8125rem;
  1132. font-weight: 400;
  1133. color: var(--ui-BG-Main);
  1134. opacity: 1;
  1135. }
  1136. .forgot-btn[data-v-fa14255b] {
  1137. width: 5rem;
  1138. line-height: 1.75rem;
  1139. font-size: 0.9375rem;
  1140. font-weight: 500;
  1141. color: #999;
  1142. }
  1143. .login-btn-start[data-v-fa14255b] {
  1144. width: 4.9375rem;
  1145. height: 1.75rem;
  1146. line-height: normal;
  1147. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  1148. border-radius: 0.875rem;
  1149. font-size: 0.8125rem;
  1150. font-weight: 500;
  1151. color: #fff;
  1152. }
  1153. .type-btn[data-v-fa14255b] {
  1154. padding: 0.625rem;
  1155. margin: 1.25rem auto;
  1156. width: 6.25rem;
  1157. font-size: 0.9375rem;
  1158. font-weight: 500;
  1159. color: #999999;
  1160. }
  1161. .auto-login-box[data-v-fa14255b] {
  1162. width: 100%;
  1163. }
  1164. .auto-login-box .auto-login-btn[data-v-fa14255b] {
  1165. width: 2.125rem;
  1166. height: 2.125rem;
  1167. border-radius: 50%;
  1168. margin: 0 0.9375rem;
  1169. }
  1170. .auto-login-box .auto-login-img[data-v-fa14255b] {
  1171. width: 2.125rem;
  1172. height: 2.125rem;
  1173. border-radius: 50%;
  1174. }
  1175. .agreement-box[data-v-fa14255b] {
  1176. margin: 2.5rem auto 0;
  1177. }
  1178. .agreement-box .protocol-check[data-v-fa14255b] {
  1179. transform: scale(0.7);
  1180. }
  1181. .agreement-box .agreement-text[data-v-fa14255b] {
  1182. font-size: 0.8125rem;
  1183. font-weight: 500;
  1184. color: #999999;
  1185. }
  1186. .agreement-box .agreement-text .tcp-text[data-v-fa14255b] {
  1187. color: var(--ui-BG-Main);
  1188. }
  1189. .editPwd-btn-box .save-btn[data-v-fa14255b] {
  1190. width: 21.5625rem;
  1191. line-height: 2.1875rem;
  1192. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  1193. border-radius: 1.09375rem;
  1194. font-size: 0.875rem;
  1195. font-weight: 500;
  1196. color: #ffffff;
  1197. }
  1198. .editPwd-btn-box .forgot-btn[data-v-fa14255b] {
  1199. width: 21.5625rem;
  1200. line-height: 2.1875rem;
  1201. font-size: 0.875rem;
  1202. font-weight: 500;
  1203. color: #999999;
  1204. }
  1205. .code-btn-start[data-v-fa14255b] {
  1206. color: #55b774;
  1207. border: 1px solid #55b774;
  1208. }
  1209. .disabled[data-v-fa14255b] {
  1210. border: 1px solid #f7f7f7;
  1211. }
  1212. .agreement-box[data-v-fa14255b] {
  1213. margin: 0.625rem 0;
  1214. }
  1215. .login-btn-start[data-v-fa14255b] {
  1216. background: #0e932e;
  1217. width: 100%;
  1218. height: 2.5rem;
  1219. font-size: 1rem;
  1220. }
  1221. .loginUniForm[data-v-fa14255b] {
  1222. margin: 1.25rem;
  1223. border: 0.03125rem solid #d6d6d6;
  1224. padding: 0.3125rem 0.46875rem;
  1225. border-radius: 0.3125rem;
  1226. }
  1227. .loginUniFormItem[data-v-fa14255b] {
  1228. border-bottom: 0.03125rem solid #d6d6d6;
  1229. padding-bottom: 0.3125rem;
  1230. }
  1231. .loginUniFormItem[data-v-fa14255b]:last-child {
  1232. border-bottom: none;
  1233. padding-top: 0.3125rem;
  1234. }
  1235. [data-v-fa14255b] .loginUniFormItem .uni-forms-item__inner {
  1236. padding-bottom: 0;
  1237. }
  1238. [data-v-fa14255b] .loginUniFormItem .uni-error-message {
  1239. bottom: -0.625rem;
  1240. }