index.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892
  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-cart-filled[data-v-d31e1c47]:before {
  27. content: "\e6d0";
  28. }
  29. .uniui-gift-filled[data-v-d31e1c47]:before {
  30. content: "\e6c4";
  31. }
  32. .uniui-color[data-v-d31e1c47]:before {
  33. content: "\e6cf";
  34. }
  35. .uniui-wallet[data-v-d31e1c47]:before {
  36. content: "\e6b1";
  37. }
  38. .uniui-settings-filled[data-v-d31e1c47]:before {
  39. content: "\e6ce";
  40. }
  41. .uniui-auth-filled[data-v-d31e1c47]:before {
  42. content: "\e6cc";
  43. }
  44. .uniui-shop-filled[data-v-d31e1c47]:before {
  45. content: "\e6cd";
  46. }
  47. .uniui-staff-filled[data-v-d31e1c47]:before {
  48. content: "\e6cb";
  49. }
  50. .uniui-vip-filled[data-v-d31e1c47]:before {
  51. content: "\e6c6";
  52. }
  53. .uniui-plus-filled[data-v-d31e1c47]:before {
  54. content: "\e6c7";
  55. }
  56. .uniui-folder-add-filled[data-v-d31e1c47]:before {
  57. content: "\e6c8";
  58. }
  59. .uniui-color-filled[data-v-d31e1c47]:before {
  60. content: "\e6c9";
  61. }
  62. .uniui-tune-filled[data-v-d31e1c47]:before {
  63. content: "\e6ca";
  64. }
  65. .uniui-calendar-filled[data-v-d31e1c47]:before {
  66. content: "\e6c0";
  67. }
  68. .uniui-notification-filled[data-v-d31e1c47]:before {
  69. content: "\e6c1";
  70. }
  71. .uniui-wallet-filled[data-v-d31e1c47]:before {
  72. content: "\e6c2";
  73. }
  74. .uniui-medal-filled[data-v-d31e1c47]:before {
  75. content: "\e6c3";
  76. }
  77. .uniui-fire-filled[data-v-d31e1c47]:before {
  78. content: "\e6c5";
  79. }
  80. .uniui-refreshempty[data-v-d31e1c47]:before {
  81. content: "\e6bf";
  82. }
  83. .uniui-location-filled[data-v-d31e1c47]:before {
  84. content: "\e6af";
  85. }
  86. .uniui-person-filled[data-v-d31e1c47]:before {
  87. content: "\e69d";
  88. }
  89. .uniui-personadd-filled[data-v-d31e1c47]:before {
  90. content: "\e698";
  91. }
  92. .uniui-arrowthinleft[data-v-d31e1c47]:before {
  93. content: "\e6d2";
  94. }
  95. .uniui-arrowthinup[data-v-d31e1c47]:before {
  96. content: "\e6d3";
  97. }
  98. .uniui-arrowthindown[data-v-d31e1c47]:before {
  99. content: "\e6d4";
  100. }
  101. .uniui-back[data-v-d31e1c47]:before {
  102. content: "\e6b9";
  103. }
  104. .uniui-forward[data-v-d31e1c47]:before {
  105. content: "\e6ba";
  106. }
  107. .uniui-arrow-right[data-v-d31e1c47]:before {
  108. content: "\e6bb";
  109. }
  110. .uniui-arrow-left[data-v-d31e1c47]:before {
  111. content: "\e6bc";
  112. }
  113. .uniui-arrow-up[data-v-d31e1c47]:before {
  114. content: "\e6bd";
  115. }
  116. .uniui-arrow-down[data-v-d31e1c47]:before {
  117. content: "\e6be";
  118. }
  119. .uniui-arrowthinright[data-v-d31e1c47]:before {
  120. content: "\e6d1";
  121. }
  122. .uniui-down[data-v-d31e1c47]:before {
  123. content: "\e6b8";
  124. }
  125. .uniui-bottom[data-v-d31e1c47]:before {
  126. content: "\e6b8";
  127. }
  128. .uniui-arrowright[data-v-d31e1c47]:before {
  129. content: "\e6d5";
  130. }
  131. .uniui-right[data-v-d31e1c47]:before {
  132. content: "\e6b5";
  133. }
  134. .uniui-up[data-v-d31e1c47]:before {
  135. content: "\e6b6";
  136. }
  137. .uniui-top[data-v-d31e1c47]:before {
  138. content: "\e6b6";
  139. }
  140. .uniui-left[data-v-d31e1c47]:before {
  141. content: "\e6b7";
  142. }
  143. .uniui-arrowup[data-v-d31e1c47]:before {
  144. content: "\e6d6";
  145. }
  146. .uniui-eye[data-v-d31e1c47]:before {
  147. content: "\e651";
  148. }
  149. .uniui-eye-filled[data-v-d31e1c47]:before {
  150. content: "\e66a";
  151. }
  152. .uniui-eye-slash[data-v-d31e1c47]:before {
  153. content: "\e6b3";
  154. }
  155. .uniui-eye-slash-filled[data-v-d31e1c47]:before {
  156. content: "\e6b4";
  157. }
  158. .uniui-info-filled[data-v-d31e1c47]:before {
  159. content: "\e649";
  160. }
  161. .uniui-reload[data-v-d31e1c47]:before {
  162. content: "\e6b2";
  163. }
  164. .uniui-micoff-filled[data-v-d31e1c47]:before {
  165. content: "\e6b0";
  166. }
  167. .uniui-map-pin-ellipse[data-v-d31e1c47]:before {
  168. content: "\e6ac";
  169. }
  170. .uniui-map-pin[data-v-d31e1c47]:before {
  171. content: "\e6ad";
  172. }
  173. .uniui-location[data-v-d31e1c47]:before {
  174. content: "\e6ae";
  175. }
  176. .uniui-starhalf[data-v-d31e1c47]:before {
  177. content: "\e683";
  178. }
  179. .uniui-star[data-v-d31e1c47]:before {
  180. content: "\e688";
  181. }
  182. .uniui-star-filled[data-v-d31e1c47]:before {
  183. content: "\e68f";
  184. }
  185. .uniui-calendar[data-v-d31e1c47]:before {
  186. content: "\e6a0";
  187. }
  188. .uniui-fire[data-v-d31e1c47]:before {
  189. content: "\e6a1";
  190. }
  191. .uniui-medal[data-v-d31e1c47]:before {
  192. content: "\e6a2";
  193. }
  194. .uniui-font[data-v-d31e1c47]:before {
  195. content: "\e6a3";
  196. }
  197. .uniui-gift[data-v-d31e1c47]:before {
  198. content: "\e6a4";
  199. }
  200. .uniui-link[data-v-d31e1c47]:before {
  201. content: "\e6a5";
  202. }
  203. .uniui-notification[data-v-d31e1c47]:before {
  204. content: "\e6a6";
  205. }
  206. .uniui-staff[data-v-d31e1c47]:before {
  207. content: "\e6a7";
  208. }
  209. .uniui-vip[data-v-d31e1c47]:before {
  210. content: "\e6a8";
  211. }
  212. .uniui-folder-add[data-v-d31e1c47]:before {
  213. content: "\e6a9";
  214. }
  215. .uniui-tune[data-v-d31e1c47]:before {
  216. content: "\e6aa";
  217. }
  218. .uniui-auth[data-v-d31e1c47]:before {
  219. content: "\e6ab";
  220. }
  221. .uniui-person[data-v-d31e1c47]:before {
  222. content: "\e699";
  223. }
  224. .uniui-email-filled[data-v-d31e1c47]:before {
  225. content: "\e69a";
  226. }
  227. .uniui-phone-filled[data-v-d31e1c47]:before {
  228. content: "\e69b";
  229. }
  230. .uniui-phone[data-v-d31e1c47]:before {
  231. content: "\e69c";
  232. }
  233. .uniui-email[data-v-d31e1c47]:before {
  234. content: "\e69e";
  235. }
  236. .uniui-personadd[data-v-d31e1c47]:before {
  237. content: "\e69f";
  238. }
  239. .uniui-chatboxes-filled[data-v-d31e1c47]:before {
  240. content: "\e692";
  241. }
  242. .uniui-contact[data-v-d31e1c47]:before {
  243. content: "\e693";
  244. }
  245. .uniui-chatbubble-filled[data-v-d31e1c47]:before {
  246. content: "\e694";
  247. }
  248. .uniui-contact-filled[data-v-d31e1c47]:before {
  249. content: "\e695";
  250. }
  251. .uniui-chatboxes[data-v-d31e1c47]:before {
  252. content: "\e696";
  253. }
  254. .uniui-chatbubble[data-v-d31e1c47]:before {
  255. content: "\e697";
  256. }
  257. .uniui-upload-filled[data-v-d31e1c47]:before {
  258. content: "\e68e";
  259. }
  260. .uniui-upload[data-v-d31e1c47]:before {
  261. content: "\e690";
  262. }
  263. .uniui-weixin[data-v-d31e1c47]:before {
  264. content: "\e691";
  265. }
  266. .uniui-compose[data-v-d31e1c47]:before {
  267. content: "\e67f";
  268. }
  269. .uniui-qq[data-v-d31e1c47]:before {
  270. content: "\e680";
  271. }
  272. .uniui-download-filled[data-v-d31e1c47]:before {
  273. content: "\e681";
  274. }
  275. .uniui-pyq[data-v-d31e1c47]:before {
  276. content: "\e682";
  277. }
  278. .uniui-sound[data-v-d31e1c47]:before {
  279. content: "\e684";
  280. }
  281. .uniui-trash-filled[data-v-d31e1c47]:before {
  282. content: "\e685";
  283. }
  284. .uniui-sound-filled[data-v-d31e1c47]:before {
  285. content: "\e686";
  286. }
  287. .uniui-trash[data-v-d31e1c47]:before {
  288. content: "\e687";
  289. }
  290. .uniui-videocam-filled[data-v-d31e1c47]:before {
  291. content: "\e689";
  292. }
  293. .uniui-spinner-cycle[data-v-d31e1c47]:before {
  294. content: "\e68a";
  295. }
  296. .uniui-weibo[data-v-d31e1c47]:before {
  297. content: "\e68b";
  298. }
  299. .uniui-videocam[data-v-d31e1c47]:before {
  300. content: "\e68c";
  301. }
  302. .uniui-download[data-v-d31e1c47]:before {
  303. content: "\e68d";
  304. }
  305. .uniui-help[data-v-d31e1c47]:before {
  306. content: "\e679";
  307. }
  308. .uniui-navigate-filled[data-v-d31e1c47]:before {
  309. content: "\e67a";
  310. }
  311. .uniui-plusempty[data-v-d31e1c47]:before {
  312. content: "\e67b";
  313. }
  314. .uniui-smallcircle[data-v-d31e1c47]:before {
  315. content: "\e67c";
  316. }
  317. .uniui-minus-filled[data-v-d31e1c47]:before {
  318. content: "\e67d";
  319. }
  320. .uniui-micoff[data-v-d31e1c47]:before {
  321. content: "\e67e";
  322. }
  323. .uniui-closeempty[data-v-d31e1c47]:before {
  324. content: "\e66c";
  325. }
  326. .uniui-clear[data-v-d31e1c47]:before {
  327. content: "\e66d";
  328. }
  329. .uniui-navigate[data-v-d31e1c47]:before {
  330. content: "\e66e";
  331. }
  332. .uniui-minus[data-v-d31e1c47]:before {
  333. content: "\e66f";
  334. }
  335. .uniui-image[data-v-d31e1c47]:before {
  336. content: "\e670";
  337. }
  338. .uniui-mic[data-v-d31e1c47]:before {
  339. content: "\e671";
  340. }
  341. .uniui-paperplane[data-v-d31e1c47]:before {
  342. content: "\e672";
  343. }
  344. .uniui-close[data-v-d31e1c47]:before {
  345. content: "\e673";
  346. }
  347. .uniui-help-filled[data-v-d31e1c47]:before {
  348. content: "\e674";
  349. }
  350. .uniui-paperplane-filled[data-v-d31e1c47]:before {
  351. content: "\e675";
  352. }
  353. .uniui-plus[data-v-d31e1c47]:before {
  354. content: "\e676";
  355. }
  356. .uniui-mic-filled[data-v-d31e1c47]:before {
  357. content: "\e677";
  358. }
  359. .uniui-image-filled[data-v-d31e1c47]:before {
  360. content: "\e678";
  361. }
  362. .uniui-locked-filled[data-v-d31e1c47]:before {
  363. content: "\e668";
  364. }
  365. .uniui-info[data-v-d31e1c47]:before {
  366. content: "\e669";
  367. }
  368. .uniui-locked[data-v-d31e1c47]:before {
  369. content: "\e66b";
  370. }
  371. .uniui-camera-filled[data-v-d31e1c47]:before {
  372. content: "\e658";
  373. }
  374. .uniui-chat-filled[data-v-d31e1c47]:before {
  375. content: "\e659";
  376. }
  377. .uniui-camera[data-v-d31e1c47]:before {
  378. content: "\e65a";
  379. }
  380. .uniui-circle[data-v-d31e1c47]:before {
  381. content: "\e65b";
  382. }
  383. .uniui-checkmarkempty[data-v-d31e1c47]:before {
  384. content: "\e65c";
  385. }
  386. .uniui-chat[data-v-d31e1c47]:before {
  387. content: "\e65d";
  388. }
  389. .uniui-circle-filled[data-v-d31e1c47]:before {
  390. content: "\e65e";
  391. }
  392. .uniui-flag[data-v-d31e1c47]:before {
  393. content: "\e65f";
  394. }
  395. .uniui-flag-filled[data-v-d31e1c47]:before {
  396. content: "\e660";
  397. }
  398. .uniui-gear-filled[data-v-d31e1c47]:before {
  399. content: "\e661";
  400. }
  401. .uniui-home[data-v-d31e1c47]:before {
  402. content: "\e662";
  403. }
  404. .uniui-home-filled[data-v-d31e1c47]:before {
  405. content: "\e663";
  406. }
  407. .uniui-gear[data-v-d31e1c47]:before {
  408. content: "\e664";
  409. }
  410. .uniui-smallcircle-filled[data-v-d31e1c47]:before {
  411. content: "\e665";
  412. }
  413. .uniui-map-filled[data-v-d31e1c47]:before {
  414. content: "\e666";
  415. }
  416. .uniui-map[data-v-d31e1c47]:before {
  417. content: "\e667";
  418. }
  419. .uniui-refresh-filled[data-v-d31e1c47]:before {
  420. content: "\e656";
  421. }
  422. .uniui-refresh[data-v-d31e1c47]:before {
  423. content: "\e657";
  424. }
  425. .uniui-cloud-upload[data-v-d31e1c47]:before {
  426. content: "\e645";
  427. }
  428. .uniui-cloud-download-filled[data-v-d31e1c47]:before {
  429. content: "\e646";
  430. }
  431. .uniui-cloud-download[data-v-d31e1c47]:before {
  432. content: "\e647";
  433. }
  434. .uniui-cloud-upload-filled[data-v-d31e1c47]:before {
  435. content: "\e648";
  436. }
  437. .uniui-redo[data-v-d31e1c47]:before {
  438. content: "\e64a";
  439. }
  440. .uniui-images-filled[data-v-d31e1c47]:before {
  441. content: "\e64b";
  442. }
  443. .uniui-undo-filled[data-v-d31e1c47]:before {
  444. content: "\e64c";
  445. }
  446. .uniui-more[data-v-d31e1c47]:before {
  447. content: "\e64d";
  448. }
  449. .uniui-more-filled[data-v-d31e1c47]:before {
  450. content: "\e64e";
  451. }
  452. .uniui-undo[data-v-d31e1c47]:before {
  453. content: "\e64f";
  454. }
  455. .uniui-images[data-v-d31e1c47]:before {
  456. content: "\e650";
  457. }
  458. .uniui-paperclip[data-v-d31e1c47]:before {
  459. content: "\e652";
  460. }
  461. .uniui-settings[data-v-d31e1c47]:before {
  462. content: "\e653";
  463. }
  464. .uniui-search[data-v-d31e1c47]:before {
  465. content: "\e654";
  466. }
  467. .uniui-redo-filled[data-v-d31e1c47]:before {
  468. content: "\e655";
  469. }
  470. .uniui-list[data-v-d31e1c47]:before {
  471. content: "\e644";
  472. }
  473. .uniui-mail-open-filled[data-v-d31e1c47]:before {
  474. content: "\e63a";
  475. }
  476. .uniui-hand-down-filled[data-v-d31e1c47]:before {
  477. content: "\e63c";
  478. }
  479. .uniui-hand-down[data-v-d31e1c47]:before {
  480. content: "\e63d";
  481. }
  482. .uniui-hand-up-filled[data-v-d31e1c47]:before {
  483. content: "\e63e";
  484. }
  485. .uniui-hand-up[data-v-d31e1c47]:before {
  486. content: "\e63f";
  487. }
  488. .uniui-heart-filled[data-v-d31e1c47]:before {
  489. content: "\e641";
  490. }
  491. .uniui-mail-open[data-v-d31e1c47]:before {
  492. content: "\e643";
  493. }
  494. .uniui-heart[data-v-d31e1c47]:before {
  495. content: "\e639";
  496. }
  497. .uniui-loop[data-v-d31e1c47]:before {
  498. content: "\e633";
  499. }
  500. .uniui-pulldown[data-v-d31e1c47]:before {
  501. content: "\e632";
  502. }
  503. .uniui-scan[data-v-d31e1c47]:before {
  504. content: "\e62a";
  505. }
  506. .uniui-bars[data-v-d31e1c47]:before {
  507. content: "\e627";
  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.32e978a5.ttf");
  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. .uni-easyinput[data-v-09fd5285] {
  559. width: 100%;
  560. flex: 1;
  561. position: relative;
  562. text-align: left;
  563. color: #333;
  564. font-size: 14px;
  565. }
  566. .uni-easyinput__content[data-v-09fd5285] {
  567. flex: 1;
  568. width: 100%;
  569. display: flex;
  570. box-sizing: border-box;
  571. flex-direction: row;
  572. align-items: center;
  573. border-color: #fff;
  574. transition-property: border-color;
  575. transition-duration: 0.3s;
  576. }
  577. .uni-easyinput__content-input[data-v-09fd5285] {
  578. width: auto;
  579. position: relative;
  580. overflow: hidden;
  581. flex: 1;
  582. line-height: 1;
  583. font-size: 14px;
  584. height: 35px;
  585. }
  586. .uni-easyinput__placeholder-class[data-v-09fd5285] {
  587. color: #999;
  588. font-size: 12px;
  589. }
  590. .is-textarea[data-v-09fd5285] {
  591. align-items: flex-start;
  592. }
  593. .is-textarea-icon[data-v-09fd5285] {
  594. margin-top: 5px;
  595. }
  596. .uni-easyinput__content-textarea[data-v-09fd5285] {
  597. position: relative;
  598. overflow: hidden;
  599. flex: 1;
  600. line-height: 1.5;
  601. font-size: 14px;
  602. margin: 6px;
  603. margin-left: 0;
  604. height: 80px;
  605. min-height: 80px;
  606. min-height: 80px;
  607. width: auto;
  608. }
  609. .input-padding[data-v-09fd5285] {
  610. padding-left: 10px;
  611. }
  612. .content-clear-icon[data-v-09fd5285] {
  613. padding: 0 5px;
  614. }
  615. .label-icon[data-v-09fd5285] {
  616. margin-right: 5px;
  617. margin-top: -1px;
  618. }
  619. .is-input-border[data-v-09fd5285] {
  620. display: flex;
  621. box-sizing: border-box;
  622. flex-direction: row;
  623. align-items: center;
  624. border: 1px solid #dcdfe6;
  625. border-radius: 4px;
  626. }
  627. .uni-error-message[data-v-09fd5285] {
  628. position: absolute;
  629. bottom: -17px;
  630. left: 0;
  631. line-height: 12px;
  632. color: #e43d33;
  633. font-size: 12px;
  634. text-align: left;
  635. }
  636. .uni-error-msg--boeder[data-v-09fd5285] {
  637. position: relative;
  638. bottom: 0;
  639. line-height: 22px;
  640. }
  641. .is-input-error-border[data-v-09fd5285] {
  642. border-color: #e43d33;
  643. }
  644. .is-input-error-border .uni-easyinput__placeholder-class[data-v-09fd5285] {
  645. color: #f29e99;
  646. }
  647. .uni-easyinput--border[data-v-09fd5285] {
  648. margin-bottom: 0;
  649. padding: 10px 15px;
  650. border-top: 1px #eee solid;
  651. }
  652. .uni-easyinput-error[data-v-09fd5285] {
  653. padding-bottom: 0;
  654. }
  655. .is-first-border[data-v-09fd5285] {
  656. border: none;
  657. }
  658. .is-disabled[data-v-09fd5285] {
  659. background-color: #f7f6f6;
  660. color: #d5d5d5;
  661. }
  662. .is-disabled .uni-easyinput__placeholder-class[data-v-09fd5285] {
  663. color: #d5d5d5;
  664. font-size: 12px;
  665. }
  666. /**
  667. * 这里是uni-app内置的常用样式变量
  668. *
  669. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  670. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  671. *
  672. */
  673. /**
  674. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  675. *
  676. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  677. */
  678. /* 颜色变量 */
  679. /* 行为相关颜色 */
  680. /* 文字基本颜色 */
  681. /* 背景颜色 */
  682. /* 边框颜色 */
  683. /* 尺寸变量 */
  684. /* 文字尺寸 */
  685. /* 图片尺寸 */
  686. /* Border Radius */
  687. /* 水平间距 */
  688. /* 垂直间距 */
  689. /* 透明度 */
  690. /* 文章场景相关 */
  691. /**
  692. * 这里是uni-app内置的常用样式变量
  693. *
  694. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  695. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  696. *
  697. */
  698. /**
  699. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  700. *
  701. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  702. */
  703. /* 颜色变量 */
  704. /* 行为相关颜色 */
  705. /* 文字基本颜色 */
  706. /* 背景颜色 */
  707. /* 边框颜色 */
  708. /* 尺寸变量 */
  709. /* 文字尺寸 */
  710. /* 图片尺寸 */
  711. /* Border Radius */
  712. /* 水平间距 */
  713. /* 垂直间距 */
  714. /* 透明度 */
  715. /* 文章场景相关 */
  716. .uni-popup-message[data-v-a4566996] {
  717. display: flex;
  718. flex-direction: row;
  719. justify-content: center;
  720. }
  721. .uni-popup-message__box[data-v-a4566996] {
  722. background-color: #e1f3d8;
  723. padding: 10px 15px;
  724. border-color: #eee;
  725. border-style: solid;
  726. border-width: 1px;
  727. flex: 1;
  728. }
  729. @media screen and (min-width: 500px) {
  730. .fixforpc-width[data-v-a4566996] {
  731. margin-top: 20px;
  732. border-radius: 4px;
  733. flex: none;
  734. min-width: 380px;
  735. max-width: 50%;
  736. }
  737. }
  738. .uni-popup-message-text[data-v-a4566996] {
  739. font-size: 14px;
  740. padding: 0;
  741. }
  742. .uni-popup__success[data-v-a4566996] {
  743. background-color: #e1f3d8;
  744. }
  745. .uni-popup__success-text[data-v-a4566996] {
  746. color: #67C23A;
  747. }
  748. .uni-popup__warn[data-v-a4566996] {
  749. background-color: #faecd8;
  750. }
  751. .uni-popup__warn-text[data-v-a4566996] {
  752. color: #E6A23C;
  753. }
  754. .uni-popup__error[data-v-a4566996] {
  755. background-color: #fde2e2;
  756. }
  757. .uni-popup__error-text[data-v-a4566996] {
  758. color: #F56C6C;
  759. }
  760. .uni-popup__info[data-v-a4566996] {
  761. background-color: #F2F6FC;
  762. }
  763. .uni-popup__info-text[data-v-a4566996] {
  764. color: #909399;
  765. }
  766. /**
  767. * 这里是uni-app内置的常用样式变量
  768. *
  769. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  770. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  771. *
  772. */
  773. /**
  774. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  775. *
  776. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  777. */
  778. /* 颜色变量 */
  779. /* 行为相关颜色 */
  780. /* 文字基本颜色 */
  781. /* 背景颜色 */
  782. /* 边框颜色 */
  783. /* 尺寸变量 */
  784. /* 文字尺寸 */
  785. /* 图片尺寸 */
  786. /* Border Radius */
  787. /* 水平间距 */
  788. /* 垂直间距 */
  789. /* 透明度 */
  790. /* 文章场景相关 */
  791. .uni-popup[data-v-4dd3c44b] {
  792. position: fixed;
  793. z-index: 99;
  794. }
  795. .uni-popup.top[data-v-4dd3c44b], .uni-popup.left[data-v-4dd3c44b], .uni-popup.right[data-v-4dd3c44b] {
  796. top: 0;
  797. }
  798. .uni-popup .uni-popup__wrapper[data-v-4dd3c44b] {
  799. display: block;
  800. position: relative;
  801. /* iphonex 等安全区设置,底部安全区适配 */
  802. }
  803. .uni-popup .uni-popup__wrapper.left[data-v-4dd3c44b], .uni-popup .uni-popup__wrapper.right[data-v-4dd3c44b] {
  804. padding-top: 0;
  805. flex: 1;
  806. }
  807. .fixforpc-z-index[data-v-4dd3c44b] {
  808. z-index: 999;
  809. }
  810. .fixforpc-top[data-v-4dd3c44b] {
  811. top: 0;
  812. }
  813. /**
  814. * 这里是uni-app内置的常用样式变量
  815. *
  816. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  817. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  818. *
  819. */
  820. /**
  821. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  822. *
  823. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  824. */
  825. /* 颜色变量 */
  826. /* 行为相关颜色 */
  827. /* 文字基本颜色 */
  828. /* 背景颜色 */
  829. /* 边框颜色 */
  830. /* 尺寸变量 */
  831. /* 文字尺寸 */
  832. /* 图片尺寸 */
  833. /* Border Radius */
  834. /* 水平间距 */
  835. /* 垂直间距 */
  836. /* 透明度 */
  837. /* 文章场景相关 */
  838. .contaier[data-v-d08ef7d4] {
  839. height: 100vh;
  840. background-color: #ffffff;
  841. }
  842. .margin-top[data-v-d08ef7d4] {
  843. margin-top: 0.3125rem;
  844. }
  845. .margin-top-xs[data-v-d08ef7d4] {
  846. margin-top: 1.875rem;
  847. }
  848. .padding-lr[data-v-d08ef7d4] {
  849. padding-left: 1.25rem;
  850. padding-right: 1.25rem;
  851. }
  852. .cu-btn[data-v-d08ef7d4] {
  853. margin-top: 0.3125rem;
  854. margin-bottom: 0.3125rem;
  855. height: 1.875rem;
  856. font-size: 0.75rem;
  857. text-align: center;
  858. }
  859. .round[data-v-d08ef7d4] {
  860. border-radius: 0.9375rem;
  861. }
  862. .input-box .cu-form-group[data-v-d08ef7d4] {
  863. display: flex;
  864. flex-direction: row;
  865. align-items: center;
  866. border-bottom: #ccc solid 0.5px;
  867. }
  868. .input-box .cu-form-group .uni-icon[data-v-d08ef7d4] {
  869. color: #333;
  870. padding: 0.625rem;
  871. }
  872. .top-bg[data-v-d08ef7d4] {
  873. margin-top: 0.625rem;
  874. width: 23.4375rem;
  875. height: 3.75rem;
  876. display: flex;
  877. justify-content: center;
  878. align-items: center;
  879. }
  880. .top-bg .logo-icon[data-v-d08ef7d4] {
  881. width: 7.75rem;
  882. height: 3.125rem;
  883. object-fit: contain;
  884. }
  885. .captchaImg[data-v-d08ef7d4] {
  886. width: 5rem;
  887. height: 1.875rem;
  888. }
  889. .bg-login-zl[data-v-d08ef7d4] {
  890. background-image: linear-gradient(45deg, #727CFB, #46D0ED);
  891. color: #ffffff;
  892. }