index.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  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-popup-message[data-v-a4566996] {
  559. display: flex;
  560. flex-direction: row;
  561. justify-content: center;
  562. }
  563. .uni-popup-message__box[data-v-a4566996] {
  564. background-color: #e1f3d8;
  565. padding: 10px 15px;
  566. border-color: #eee;
  567. border-style: solid;
  568. border-width: 1px;
  569. flex: 1;
  570. }
  571. @media screen and (min-width: 500px) {
  572. .fixforpc-width[data-v-a4566996] {
  573. margin-top: 20px;
  574. border-radius: 4px;
  575. flex: none;
  576. min-width: 380px;
  577. max-width: 50%;
  578. }
  579. }
  580. .uni-popup-message-text[data-v-a4566996] {
  581. font-size: 14px;
  582. padding: 0;
  583. }
  584. .uni-popup__success[data-v-a4566996] {
  585. background-color: #e1f3d8;
  586. }
  587. .uni-popup__success-text[data-v-a4566996] {
  588. color: #67C23A;
  589. }
  590. .uni-popup__warn[data-v-a4566996] {
  591. background-color: #faecd8;
  592. }
  593. .uni-popup__warn-text[data-v-a4566996] {
  594. color: #E6A23C;
  595. }
  596. .uni-popup__error[data-v-a4566996] {
  597. background-color: #fde2e2;
  598. }
  599. .uni-popup__error-text[data-v-a4566996] {
  600. color: #F56C6C;
  601. }
  602. .uni-popup__info[data-v-a4566996] {
  603. background-color: #F2F6FC;
  604. }
  605. .uni-popup__info-text[data-v-a4566996] {
  606. color: #909399;
  607. }
  608. /**
  609. * 这里是uni-app内置的常用样式变量
  610. *
  611. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  612. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  613. *
  614. */
  615. /**
  616. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  617. *
  618. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  619. */
  620. /* 颜色变量 */
  621. /* 行为相关颜色 */
  622. /* 文字基本颜色 */
  623. /* 背景颜色 */
  624. /* 边框颜色 */
  625. /* 尺寸变量 */
  626. /* 文字尺寸 */
  627. /* 图片尺寸 */
  628. /* Border Radius */
  629. /* 水平间距 */
  630. /* 垂直间距 */
  631. /* 透明度 */
  632. /* 文章场景相关 */
  633. .uni-popup[data-v-4dd3c44b] {
  634. position: fixed;
  635. z-index: 99;
  636. }
  637. .uni-popup.top[data-v-4dd3c44b], .uni-popup.left[data-v-4dd3c44b], .uni-popup.right[data-v-4dd3c44b] {
  638. top: 0;
  639. }
  640. .uni-popup .uni-popup__wrapper[data-v-4dd3c44b] {
  641. display: block;
  642. position: relative;
  643. /* iphonex 等安全区设置,底部安全区适配 */
  644. }
  645. .uni-popup .uni-popup__wrapper.left[data-v-4dd3c44b], .uni-popup .uni-popup__wrapper.right[data-v-4dd3c44b] {
  646. padding-top: 0;
  647. flex: 1;
  648. }
  649. .fixforpc-z-index[data-v-4dd3c44b] {
  650. z-index: 999;
  651. }
  652. .fixforpc-top[data-v-4dd3c44b] {
  653. top: 0;
  654. }
  655. /**
  656. * 这里是uni-app内置的常用样式变量
  657. *
  658. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  659. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  660. *
  661. */
  662. /**
  663. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  664. *
  665. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  666. */
  667. /* 颜色变量 */
  668. /* 行为相关颜色 */
  669. /* 文字基本颜色 */
  670. /* 背景颜色 */
  671. /* 边框颜色 */
  672. /* 尺寸变量 */
  673. /* 文字尺寸 */
  674. /* 图片尺寸 */
  675. /* Border Radius */
  676. /* 水平间距 */
  677. /* 垂直间距 */
  678. /* 透明度 */
  679. /* 文章场景相关 */
  680. .content {
  681. display: flex;
  682. flex-direction: column;
  683. align-items: center;
  684. justify-content: center;
  685. }
  686. .scan-view {
  687. background: white;
  688. width: 100%;
  689. position: fixed;
  690. position: -webkit-sticky;
  691. position: sticky;
  692. top: 0px;
  693. }
  694. .scan-btn-view {
  695. margin-top: 6.25rem;
  696. margin-bottom: 1.875rem;
  697. display: flex;
  698. justify-content: center;
  699. align-items: center;
  700. position: relative;
  701. }
  702. .scan-btn {
  703. border-radius: 50%;
  704. width: 4.6875rem;
  705. height: 4.6875rem;
  706. display: flex;
  707. justify-content: center;
  708. align-items: center;
  709. background: #007aff;
  710. }
  711. .border-wrapper {
  712. position: absolute;
  713. left: 0;
  714. top: 0;
  715. width: 100%;
  716. height: 100%;
  717. display: block;
  718. }
  719. .scan-btn.first {
  720. position: absolute;
  721. left: 0px;
  722. top: 0px;
  723. width: 4.6875rem;
  724. height: 4.6875rem;
  725. background: rgba(0, 122, 255, 0.2);
  726. opacity: 0.1;
  727. border-radius: 50%;
  728. animation: first 3s infinite linear;
  729. }
  730. .scan-btn.second {
  731. position: absolute;
  732. left: 0px;
  733. top: 0px;
  734. width: 4.6875rem;
  735. height: 4.6875rem;
  736. background: rgba(0, 122, 255, 0.2);
  737. opacity: 0.1;
  738. border-radius: 50%;
  739. animation: first 3s infinite linear;
  740. animation-delay: 1s;
  741. }
  742. @keyframes first {
  743. 0% {
  744. transform: scale(1);
  745. opacity: 1;
  746. }
  747. 33% {
  748. opacity: 0.66;
  749. transform: scale(1.33);
  750. }
  751. 66% {
  752. opacity: 0.33;
  753. transform: scale(1.67);
  754. }
  755. 100% {
  756. opacity: 0;
  757. transform: scale(2);
  758. }
  759. }
  760. .text-area {
  761. display: flex;
  762. justify-content: center;
  763. }
  764. .inputSty {
  765. padding: 0.625rem;
  766. width: 60%;
  767. border-bottom: #999 0.03125rem solid;
  768. }
  769. .input-view {
  770. margin-top: 1.5625rem;
  771. padding-left: 0.625rem;
  772. padding-right: 0.625rem;
  773. flex-direction: column;
  774. display: flex;
  775. justify-content: center;
  776. align-items: center;
  777. }
  778. .submit-btn {
  779. background: #00aa00;
  780. }
  781. .history {
  782. display: flex;
  783. width: 100%;
  784. flex-direction: column;
  785. justify-items: start;
  786. }
  787. .history .title {
  788. padding: 0.625rem;
  789. font-size: 0.75rem;
  790. font-weight: 600;
  791. }
  792. .history .code {
  793. font-weight: 600;
  794. }
  795. .history .item {
  796. padding: 0.625rem;
  797. font-size: 0.625rem;
  798. color: #666;
  799. }
  800. .history .item .status {
  801. padding-left: 0.625rem;
  802. }
  803. .history .item .fail {
  804. font-weight: 600;
  805. color: #F00;
  806. }