移动储能车V1版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.css 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053
  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. .zb-tooltip[data-v-13dad3a2] {
  27. position: relative;
  28. }
  29. .zb_tooltip_content[data-v-13dad3a2] {
  30. height: 100%;
  31. /* float: left; */
  32. position: relative;
  33. display: inline-block;
  34. /* overflow: hidden; */
  35. }
  36. .zb_tooltip__popper[data-v-13dad3a2] {
  37. /* transform-origin: center top; */
  38. background: var(--theme-bg-color);
  39. visibility: hidden;
  40. position: absolute;
  41. border-radius: 4px;
  42. font-size: 12px;
  43. padding: 10px;
  44. min-width: 10px;
  45. word-wrap: break-word;
  46. display: inline-block;
  47. white-space: nowrap;
  48. z-index: 9;
  49. }
  50. .zb_popper__icon[data-v-13dad3a2] {
  51. width: 0;
  52. height: 0;
  53. z-index: 9;
  54. position: absolute;
  55. }
  56. .zb_popper__arrow[data-v-13dad3a2] {
  57. bottom: -5px;
  58. /* transform-origin: center top; */
  59. border-left: 6px solid transparent;
  60. border-right: 6px solid transparent;
  61. border-top: 6px solid var(--theme-bg-color);
  62. }
  63. .zb_popper__right[data-v-13dad3a2] {
  64. border-top: 6px solid transparent;
  65. border-bottom: 6px solid transparent;
  66. border-right: 6px solid var(--theme-bg-color);
  67. left: -5px;
  68. }
  69. .zb_popper__left[data-v-13dad3a2] {
  70. border-top: 6px solid transparent;
  71. border-bottom: 6px solid transparent;
  72. border-left: 6px solid var(--theme-bg-color);
  73. right: -5px;
  74. }
  75. .zb_popper__up[data-v-13dad3a2] {
  76. border-left: 6px solid transparent;
  77. border-right: 6px solid transparent;
  78. border-bottom: 6px solid var(--theme-bg-color);
  79. top: -5px;
  80. }
  81. .fixed[data-v-13dad3a2] {
  82. position: absolute;
  83. width: 100vw;
  84. height: 100vh;
  85. position: fixed;
  86. left: 0;
  87. top: 0;
  88. pointer-events: auto;
  89. background: red;
  90. z-index: -1;
  91. }
  92. /**
  93. * 这里是uni-app内置的常用样式变量
  94. *
  95. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  96. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  97. *
  98. */
  99. /**
  100. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  101. *
  102. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  103. */
  104. /* 颜色变量 */
  105. /* 行为相关颜色 */
  106. /* 文字基本颜色 */
  107. /* 背景颜色 */
  108. /* 边框颜色 */
  109. /* 尺寸变量 */
  110. /* 文字尺寸 */
  111. /* 图片尺寸 */
  112. /* Border Radius */
  113. /* 水平间距 */
  114. /* 垂直间距 */
  115. /* 透明度 */
  116. /* 文章场景相关 */
  117. .uniui-cart-filled[data-v-d31e1c47]:before {
  118. content: "\e6d0";
  119. }
  120. .uniui-gift-filled[data-v-d31e1c47]:before {
  121. content: "\e6c4";
  122. }
  123. .uniui-color[data-v-d31e1c47]:before {
  124. content: "\e6cf";
  125. }
  126. .uniui-wallet[data-v-d31e1c47]:before {
  127. content: "\e6b1";
  128. }
  129. .uniui-settings-filled[data-v-d31e1c47]:before {
  130. content: "\e6ce";
  131. }
  132. .uniui-auth-filled[data-v-d31e1c47]:before {
  133. content: "\e6cc";
  134. }
  135. .uniui-shop-filled[data-v-d31e1c47]:before {
  136. content: "\e6cd";
  137. }
  138. .uniui-staff-filled[data-v-d31e1c47]:before {
  139. content: "\e6cb";
  140. }
  141. .uniui-vip-filled[data-v-d31e1c47]:before {
  142. content: "\e6c6";
  143. }
  144. .uniui-plus-filled[data-v-d31e1c47]:before {
  145. content: "\e6c7";
  146. }
  147. .uniui-folder-add-filled[data-v-d31e1c47]:before {
  148. content: "\e6c8";
  149. }
  150. .uniui-color-filled[data-v-d31e1c47]:before {
  151. content: "\e6c9";
  152. }
  153. .uniui-tune-filled[data-v-d31e1c47]:before {
  154. content: "\e6ca";
  155. }
  156. .uniui-calendar-filled[data-v-d31e1c47]:before {
  157. content: "\e6c0";
  158. }
  159. .uniui-notification-filled[data-v-d31e1c47]:before {
  160. content: "\e6c1";
  161. }
  162. .uniui-wallet-filled[data-v-d31e1c47]:before {
  163. content: "\e6c2";
  164. }
  165. .uniui-medal-filled[data-v-d31e1c47]:before {
  166. content: "\e6c3";
  167. }
  168. .uniui-fire-filled[data-v-d31e1c47]:before {
  169. content: "\e6c5";
  170. }
  171. .uniui-refreshempty[data-v-d31e1c47]:before {
  172. content: "\e6bf";
  173. }
  174. .uniui-location-filled[data-v-d31e1c47]:before {
  175. content: "\e6af";
  176. }
  177. .uniui-person-filled[data-v-d31e1c47]:before {
  178. content: "\e69d";
  179. }
  180. .uniui-personadd-filled[data-v-d31e1c47]:before {
  181. content: "\e698";
  182. }
  183. .uniui-arrowthinleft[data-v-d31e1c47]:before {
  184. content: "\e6d2";
  185. }
  186. .uniui-arrowthinup[data-v-d31e1c47]:before {
  187. content: "\e6d3";
  188. }
  189. .uniui-arrowthindown[data-v-d31e1c47]:before {
  190. content: "\e6d4";
  191. }
  192. .uniui-back[data-v-d31e1c47]:before {
  193. content: "\e6b9";
  194. }
  195. .uniui-forward[data-v-d31e1c47]:before {
  196. content: "\e6ba";
  197. }
  198. .uniui-arrow-right[data-v-d31e1c47]:before {
  199. content: "\e6bb";
  200. }
  201. .uniui-arrow-left[data-v-d31e1c47]:before {
  202. content: "\e6bc";
  203. }
  204. .uniui-arrow-up[data-v-d31e1c47]:before {
  205. content: "\e6bd";
  206. }
  207. .uniui-arrow-down[data-v-d31e1c47]:before {
  208. content: "\e6be";
  209. }
  210. .uniui-arrowthinright[data-v-d31e1c47]:before {
  211. content: "\e6d1";
  212. }
  213. .uniui-down[data-v-d31e1c47]:before {
  214. content: "\e6b8";
  215. }
  216. .uniui-bottom[data-v-d31e1c47]:before {
  217. content: "\e6b8";
  218. }
  219. .uniui-arrowright[data-v-d31e1c47]:before {
  220. content: "\e6d5";
  221. }
  222. .uniui-right[data-v-d31e1c47]:before {
  223. content: "\e6b5";
  224. }
  225. .uniui-up[data-v-d31e1c47]:before {
  226. content: "\e6b6";
  227. }
  228. .uniui-top[data-v-d31e1c47]:before {
  229. content: "\e6b6";
  230. }
  231. .uniui-left[data-v-d31e1c47]:before {
  232. content: "\e6b7";
  233. }
  234. .uniui-arrowup[data-v-d31e1c47]:before {
  235. content: "\e6d6";
  236. }
  237. .uniui-eye[data-v-d31e1c47]:before {
  238. content: "\e651";
  239. }
  240. .uniui-eye-filled[data-v-d31e1c47]:before {
  241. content: "\e66a";
  242. }
  243. .uniui-eye-slash[data-v-d31e1c47]:before {
  244. content: "\e6b3";
  245. }
  246. .uniui-eye-slash-filled[data-v-d31e1c47]:before {
  247. content: "\e6b4";
  248. }
  249. .uniui-info-filled[data-v-d31e1c47]:before {
  250. content: "\e649";
  251. }
  252. .uniui-reload[data-v-d31e1c47]:before {
  253. content: "\e6b2";
  254. }
  255. .uniui-micoff-filled[data-v-d31e1c47]:before {
  256. content: "\e6b0";
  257. }
  258. .uniui-map-pin-ellipse[data-v-d31e1c47]:before {
  259. content: "\e6ac";
  260. }
  261. .uniui-map-pin[data-v-d31e1c47]:before {
  262. content: "\e6ad";
  263. }
  264. .uniui-location[data-v-d31e1c47]:before {
  265. content: "\e6ae";
  266. }
  267. .uniui-starhalf[data-v-d31e1c47]:before {
  268. content: "\e683";
  269. }
  270. .uniui-star[data-v-d31e1c47]:before {
  271. content: "\e688";
  272. }
  273. .uniui-star-filled[data-v-d31e1c47]:before {
  274. content: "\e68f";
  275. }
  276. .uniui-calendar[data-v-d31e1c47]:before {
  277. content: "\e6a0";
  278. }
  279. .uniui-fire[data-v-d31e1c47]:before {
  280. content: "\e6a1";
  281. }
  282. .uniui-medal[data-v-d31e1c47]:before {
  283. content: "\e6a2";
  284. }
  285. .uniui-font[data-v-d31e1c47]:before {
  286. content: "\e6a3";
  287. }
  288. .uniui-gift[data-v-d31e1c47]:before {
  289. content: "\e6a4";
  290. }
  291. .uniui-link[data-v-d31e1c47]:before {
  292. content: "\e6a5";
  293. }
  294. .uniui-notification[data-v-d31e1c47]:before {
  295. content: "\e6a6";
  296. }
  297. .uniui-staff[data-v-d31e1c47]:before {
  298. content: "\e6a7";
  299. }
  300. .uniui-vip[data-v-d31e1c47]:before {
  301. content: "\e6a8";
  302. }
  303. .uniui-folder-add[data-v-d31e1c47]:before {
  304. content: "\e6a9";
  305. }
  306. .uniui-tune[data-v-d31e1c47]:before {
  307. content: "\e6aa";
  308. }
  309. .uniui-auth[data-v-d31e1c47]:before {
  310. content: "\e6ab";
  311. }
  312. .uniui-person[data-v-d31e1c47]:before {
  313. content: "\e699";
  314. }
  315. .uniui-email-filled[data-v-d31e1c47]:before {
  316. content: "\e69a";
  317. }
  318. .uniui-phone-filled[data-v-d31e1c47]:before {
  319. content: "\e69b";
  320. }
  321. .uniui-phone[data-v-d31e1c47]:before {
  322. content: "\e69c";
  323. }
  324. .uniui-email[data-v-d31e1c47]:before {
  325. content: "\e69e";
  326. }
  327. .uniui-personadd[data-v-d31e1c47]:before {
  328. content: "\e69f";
  329. }
  330. .uniui-chatboxes-filled[data-v-d31e1c47]:before {
  331. content: "\e692";
  332. }
  333. .uniui-contact[data-v-d31e1c47]:before {
  334. content: "\e693";
  335. }
  336. .uniui-chatbubble-filled[data-v-d31e1c47]:before {
  337. content: "\e694";
  338. }
  339. .uniui-contact-filled[data-v-d31e1c47]:before {
  340. content: "\e695";
  341. }
  342. .uniui-chatboxes[data-v-d31e1c47]:before {
  343. content: "\e696";
  344. }
  345. .uniui-chatbubble[data-v-d31e1c47]:before {
  346. content: "\e697";
  347. }
  348. .uniui-upload-filled[data-v-d31e1c47]:before {
  349. content: "\e68e";
  350. }
  351. .uniui-upload[data-v-d31e1c47]:before {
  352. content: "\e690";
  353. }
  354. .uniui-weixin[data-v-d31e1c47]:before {
  355. content: "\e691";
  356. }
  357. .uniui-compose[data-v-d31e1c47]:before {
  358. content: "\e67f";
  359. }
  360. .uniui-qq[data-v-d31e1c47]:before {
  361. content: "\e680";
  362. }
  363. .uniui-download-filled[data-v-d31e1c47]:before {
  364. content: "\e681";
  365. }
  366. .uniui-pyq[data-v-d31e1c47]:before {
  367. content: "\e682";
  368. }
  369. .uniui-sound[data-v-d31e1c47]:before {
  370. content: "\e684";
  371. }
  372. .uniui-trash-filled[data-v-d31e1c47]:before {
  373. content: "\e685";
  374. }
  375. .uniui-sound-filled[data-v-d31e1c47]:before {
  376. content: "\e686";
  377. }
  378. .uniui-trash[data-v-d31e1c47]:before {
  379. content: "\e687";
  380. }
  381. .uniui-videocam-filled[data-v-d31e1c47]:before {
  382. content: "\e689";
  383. }
  384. .uniui-spinner-cycle[data-v-d31e1c47]:before {
  385. content: "\e68a";
  386. }
  387. .uniui-weibo[data-v-d31e1c47]:before {
  388. content: "\e68b";
  389. }
  390. .uniui-videocam[data-v-d31e1c47]:before {
  391. content: "\e68c";
  392. }
  393. .uniui-download[data-v-d31e1c47]:before {
  394. content: "\e68d";
  395. }
  396. .uniui-help[data-v-d31e1c47]:before {
  397. content: "\e679";
  398. }
  399. .uniui-navigate-filled[data-v-d31e1c47]:before {
  400. content: "\e67a";
  401. }
  402. .uniui-plusempty[data-v-d31e1c47]:before {
  403. content: "\e67b";
  404. }
  405. .uniui-smallcircle[data-v-d31e1c47]:before {
  406. content: "\e67c";
  407. }
  408. .uniui-minus-filled[data-v-d31e1c47]:before {
  409. content: "\e67d";
  410. }
  411. .uniui-micoff[data-v-d31e1c47]:before {
  412. content: "\e67e";
  413. }
  414. .uniui-closeempty[data-v-d31e1c47]:before {
  415. content: "\e66c";
  416. }
  417. .uniui-clear[data-v-d31e1c47]:before {
  418. content: "\e66d";
  419. }
  420. .uniui-navigate[data-v-d31e1c47]:before {
  421. content: "\e66e";
  422. }
  423. .uniui-minus[data-v-d31e1c47]:before {
  424. content: "\e66f";
  425. }
  426. .uniui-image[data-v-d31e1c47]:before {
  427. content: "\e670";
  428. }
  429. .uniui-mic[data-v-d31e1c47]:before {
  430. content: "\e671";
  431. }
  432. .uniui-paperplane[data-v-d31e1c47]:before {
  433. content: "\e672";
  434. }
  435. .uniui-close[data-v-d31e1c47]:before {
  436. content: "\e673";
  437. }
  438. .uniui-help-filled[data-v-d31e1c47]:before {
  439. content: "\e674";
  440. }
  441. .uniui-paperplane-filled[data-v-d31e1c47]:before {
  442. content: "\e675";
  443. }
  444. .uniui-plus[data-v-d31e1c47]:before {
  445. content: "\e676";
  446. }
  447. .uniui-mic-filled[data-v-d31e1c47]:before {
  448. content: "\e677";
  449. }
  450. .uniui-image-filled[data-v-d31e1c47]:before {
  451. content: "\e678";
  452. }
  453. .uniui-locked-filled[data-v-d31e1c47]:before {
  454. content: "\e668";
  455. }
  456. .uniui-info[data-v-d31e1c47]:before {
  457. content: "\e669";
  458. }
  459. .uniui-locked[data-v-d31e1c47]:before {
  460. content: "\e66b";
  461. }
  462. .uniui-camera-filled[data-v-d31e1c47]:before {
  463. content: "\e658";
  464. }
  465. .uniui-chat-filled[data-v-d31e1c47]:before {
  466. content: "\e659";
  467. }
  468. .uniui-camera[data-v-d31e1c47]:before {
  469. content: "\e65a";
  470. }
  471. .uniui-circle[data-v-d31e1c47]:before {
  472. content: "\e65b";
  473. }
  474. .uniui-checkmarkempty[data-v-d31e1c47]:before {
  475. content: "\e65c";
  476. }
  477. .uniui-chat[data-v-d31e1c47]:before {
  478. content: "\e65d";
  479. }
  480. .uniui-circle-filled[data-v-d31e1c47]:before {
  481. content: "\e65e";
  482. }
  483. .uniui-flag[data-v-d31e1c47]:before {
  484. content: "\e65f";
  485. }
  486. .uniui-flag-filled[data-v-d31e1c47]:before {
  487. content: "\e660";
  488. }
  489. .uniui-gear-filled[data-v-d31e1c47]:before {
  490. content: "\e661";
  491. }
  492. .uniui-home[data-v-d31e1c47]:before {
  493. content: "\e662";
  494. }
  495. .uniui-home-filled[data-v-d31e1c47]:before {
  496. content: "\e663";
  497. }
  498. .uniui-gear[data-v-d31e1c47]:before {
  499. content: "\e664";
  500. }
  501. .uniui-smallcircle-filled[data-v-d31e1c47]:before {
  502. content: "\e665";
  503. }
  504. .uniui-map-filled[data-v-d31e1c47]:before {
  505. content: "\e666";
  506. }
  507. .uniui-map[data-v-d31e1c47]:before {
  508. content: "\e667";
  509. }
  510. .uniui-refresh-filled[data-v-d31e1c47]:before {
  511. content: "\e656";
  512. }
  513. .uniui-refresh[data-v-d31e1c47]:before {
  514. content: "\e657";
  515. }
  516. .uniui-cloud-upload[data-v-d31e1c47]:before {
  517. content: "\e645";
  518. }
  519. .uniui-cloud-download-filled[data-v-d31e1c47]:before {
  520. content: "\e646";
  521. }
  522. .uniui-cloud-download[data-v-d31e1c47]:before {
  523. content: "\e647";
  524. }
  525. .uniui-cloud-upload-filled[data-v-d31e1c47]:before {
  526. content: "\e648";
  527. }
  528. .uniui-redo[data-v-d31e1c47]:before {
  529. content: "\e64a";
  530. }
  531. .uniui-images-filled[data-v-d31e1c47]:before {
  532. content: "\e64b";
  533. }
  534. .uniui-undo-filled[data-v-d31e1c47]:before {
  535. content: "\e64c";
  536. }
  537. .uniui-more[data-v-d31e1c47]:before {
  538. content: "\e64d";
  539. }
  540. .uniui-more-filled[data-v-d31e1c47]:before {
  541. content: "\e64e";
  542. }
  543. .uniui-undo[data-v-d31e1c47]:before {
  544. content: "\e64f";
  545. }
  546. .uniui-images[data-v-d31e1c47]:before {
  547. content: "\e650";
  548. }
  549. .uniui-paperclip[data-v-d31e1c47]:before {
  550. content: "\e652";
  551. }
  552. .uniui-settings[data-v-d31e1c47]:before {
  553. content: "\e653";
  554. }
  555. .uniui-search[data-v-d31e1c47]:before {
  556. content: "\e654";
  557. }
  558. .uniui-redo-filled[data-v-d31e1c47]:before {
  559. content: "\e655";
  560. }
  561. .uniui-list[data-v-d31e1c47]:before {
  562. content: "\e644";
  563. }
  564. .uniui-mail-open-filled[data-v-d31e1c47]:before {
  565. content: "\e63a";
  566. }
  567. .uniui-hand-down-filled[data-v-d31e1c47]:before {
  568. content: "\e63c";
  569. }
  570. .uniui-hand-down[data-v-d31e1c47]:before {
  571. content: "\e63d";
  572. }
  573. .uniui-hand-up-filled[data-v-d31e1c47]:before {
  574. content: "\e63e";
  575. }
  576. .uniui-hand-up[data-v-d31e1c47]:before {
  577. content: "\e63f";
  578. }
  579. .uniui-heart-filled[data-v-d31e1c47]:before {
  580. content: "\e641";
  581. }
  582. .uniui-mail-open[data-v-d31e1c47]:before {
  583. content: "\e643";
  584. }
  585. .uniui-heart[data-v-d31e1c47]:before {
  586. content: "\e639";
  587. }
  588. .uniui-loop[data-v-d31e1c47]:before {
  589. content: "\e633";
  590. }
  591. .uniui-pulldown[data-v-d31e1c47]:before {
  592. content: "\e632";
  593. }
  594. .uniui-scan[data-v-d31e1c47]:before {
  595. content: "\e62a";
  596. }
  597. .uniui-bars[data-v-d31e1c47]:before {
  598. content: "\e627";
  599. }
  600. .uniui-checkbox[data-v-d31e1c47]:before {
  601. content: "\e62b";
  602. }
  603. .uniui-checkbox-filled[data-v-d31e1c47]:before {
  604. content: "\e62c";
  605. }
  606. .uniui-shop[data-v-d31e1c47]:before {
  607. content: "\e62f";
  608. }
  609. .uniui-headphones[data-v-d31e1c47]:before {
  610. content: "\e630";
  611. }
  612. .uniui-cart[data-v-d31e1c47]:before {
  613. content: "\e631";
  614. }
  615. @font-face {
  616. font-family: uniicons;
  617. src: url("../../assets/uniicons.32e978a5.ttf");
  618. }
  619. .uni-icons[data-v-d31e1c47] {
  620. font-family: uniicons;
  621. text-decoration: none;
  622. text-align: center;
  623. }
  624. /**
  625. * 这里是uni-app内置的常用样式变量
  626. *
  627. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  628. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  629. *
  630. */
  631. /**
  632. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  633. *
  634. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  635. */
  636. /* 颜色变量 */
  637. /* 行为相关颜色 */
  638. /* 文字基本颜色 */
  639. /* 背景颜色 */
  640. /* 边框颜色 */
  641. /* 尺寸变量 */
  642. /* 文字尺寸 */
  643. /* 图片尺寸 */
  644. /* Border Radius */
  645. /* 水平间距 */
  646. /* 垂直间距 */
  647. /* 透明度 */
  648. /* 文章场景相关 */
  649. .box[data-v-88b7506d] {
  650. display: flex;
  651. align-items: center;
  652. justify-content: space-between;
  653. }
  654. .uni-pagination[data-v-88b7506d] {
  655. display: flex;
  656. position: relative;
  657. overflow: hidden;
  658. flex-direction: row;
  659. justify-content: center;
  660. align-items: center;
  661. }
  662. .uni-pagination__total[data-v-88b7506d] {
  663. font-size: 22px;
  664. color: #999;
  665. margin-right: 15px;
  666. }
  667. .uni-pagination__btn[data-v-88b7506d] {
  668. display: flex;
  669. cursor: pointer;
  670. padding: 0 8px;
  671. line-height: 30px;
  672. font-size: 22px;
  673. position: relative;
  674. flex-direction: row;
  675. justify-content: center;
  676. align-items: center;
  677. text-align: center;
  678. border-radius: 5px;
  679. }
  680. .uni-pagination__child-btn[data-v-88b7506d] {
  681. display: flex;
  682. font-size: 22px;
  683. position: relative;
  684. flex-direction: row;
  685. justify-content: center;
  686. align-items: center;
  687. text-align: center;
  688. color: #666;
  689. font-size: 22px;
  690. }
  691. .uni-pagination__num[data-v-88b7506d] {
  692. display: flex;
  693. flex-direction: row;
  694. justify-content: center;
  695. align-items: center;
  696. height: 30px;
  697. line-height: 30px;
  698. font-size: 22px;
  699. color: #666;
  700. margin: 0 5px;
  701. }
  702. .uni-pagination__num-tagwight[data-v-88b7506d] {
  703. width: 30px;
  704. }
  705. .uni-pagination__num-tag[data-v-88b7506d] {
  706. margin: 0 5px;
  707. height: 30px;
  708. text-align: center;
  709. line-height: 30px;
  710. color: #999;
  711. border-radius: 4px;
  712. }
  713. .uni-pagination__num-current[data-v-88b7506d] {
  714. display: flex;
  715. flex-direction: row;
  716. }
  717. .uni-pagination__num-current-text[data-v-88b7506d] {
  718. font-size: 22px;
  719. }
  720. .current-index-text[data-v-88b7506d] {
  721. color: #2979ff;
  722. }
  723. .uni-pagination--enabled[data-v-88b7506d] {
  724. color: #333333;
  725. opacity: 1;
  726. }
  727. .uni-pagination--disabled[data-v-88b7506d] {
  728. opacity: 0.5;
  729. }
  730. .uni-pagination--hover[data-v-88b7506d] {
  731. color: rgba(0, 0, 0, 0.6);
  732. background-color: #eee;
  733. }
  734. .tag--active[data-v-88b7506d]:hover {
  735. color: #2979ff;
  736. }
  737. .page--active[data-v-88b7506d] {
  738. color: #fff;
  739. background-color: #2979ff;
  740. }
  741. .page--active[data-v-88b7506d]:hover {
  742. color: #fff;
  743. }
  744. .is-pc-hide[data-v-88b7506d] {
  745. display: block;
  746. }
  747. .is-phone-hide[data-v-88b7506d] {
  748. display: none;
  749. }
  750. @media screen and (min-width: 450px) {
  751. .is-pc-hide[data-v-88b7506d] {
  752. display: none;
  753. }
  754. .is-phone-hide[data-v-88b7506d] {
  755. display: block;
  756. }
  757. .uni-pagination__num-flex-none[data-v-88b7506d] {
  758. flex: none;
  759. }
  760. }
  761. /**
  762. * 这里是uni-app内置的常用样式变量
  763. *
  764. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  765. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  766. *
  767. */
  768. /**
  769. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  770. *
  771. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  772. */
  773. /* 颜色变量 */
  774. /* 行为相关颜色 */
  775. /* 文字基本颜色 */
  776. /* 背景颜色 */
  777. /* 边框颜色 */
  778. /* 尺寸变量 */
  779. /* 文字尺寸 */
  780. /* 图片尺寸 */
  781. /* Border Radius */
  782. /* 水平间距 */
  783. /* 垂直间距 */
  784. /* 透明度 */
  785. /* 文章场景相关 */
  786. .content[data-v-a45dfdea] {
  787. width: 100%;
  788. height: 100vh;
  789. opacity: 1;
  790. background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, #c4e5ff 100%);
  791. box-sizing: border-box;
  792. }
  793. .top[data-v-a45dfdea] {
  794. width: 100%;
  795. height: 100px;
  796. display: flex;
  797. align-items: center;
  798. justify-content: space-between;
  799. background-size: 100% 100%;
  800. background-repeat: no-repeat;
  801. background-color: #fff;
  802. padding: 0px 46px;
  803. box-sizing: border-box;
  804. }
  805. .top_logo[data-v-a45dfdea] {
  806. width: 327px;
  807. height: 52px;
  808. }
  809. .tite[data-v-a45dfdea] {
  810. width: 340px;
  811. height: 48px;
  812. font-size: 34px;
  813. font-weight: 800;
  814. }
  815. .time[data-v-a45dfdea] {
  816. width: 277px;
  817. text-align: right;
  818. }
  819. .time_top[data-v-a45dfdea] {
  820. font-size: 17px;
  821. }
  822. .time_bottom[data-v-a45dfdea] {
  823. display: flex;
  824. font-size: 17px;
  825. justify-content: space-between;
  826. }
  827. .time_bottom1[data-v-a45dfdea] {
  828. display: flex;
  829. }
  830. .time_state[data-v-a45dfdea] {
  831. font-size: 17px;
  832. font-weight: 600;
  833. color: #164490;
  834. }
  835. .parameter[data-v-a45dfdea] {
  836. width: 100%;
  837. /* padding-bottom: 20px; */
  838. display: flex;
  839. padding: 0px 20px 20px 20px;
  840. display: flex;
  841. flex-direction: column;
  842. box-sizing: border-box;
  843. }
  844. .parameter_xian[data-v-a45dfdea] {
  845. width: 100%;
  846. height: 55px;
  847. background: linear-gradient(180deg, #1e83bd 0%, rgba(69, 168, 230, 0.92) 100%);
  848. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  849. display: flex;
  850. align-items: center;
  851. color: #fff;
  852. justify-content: space-between;
  853. font-size: 28px;
  854. font-weight: 600;
  855. padding: 0px 20px;
  856. box-sizing: border-box;
  857. }
  858. .parameter_xian .parameter_xian1[data-v-a45dfdea] {
  859. width: 160px;
  860. }
  861. .parameter_xian .parameter_xian2[data-v-a45dfdea] {
  862. width: 160px;
  863. }
  864. .parameter_xian .parameter_xian3[data-v-a45dfdea] {
  865. width: 430px;
  866. }
  867. .parameter_xian .parameter_xian4[data-v-a45dfdea] {
  868. width: 220px;
  869. margin-right: 10px;
  870. white-space: nowrap;
  871. /* 禁止换行 */
  872. overflow: hidden;
  873. /* 超出部分隐藏 */
  874. text-overflow: ellipsis;
  875. /* 显示省略号 */
  876. }
  877. .parameter_xian .parameter_xian5[data-v-a45dfdea] {
  878. width: 240px;
  879. margin-right: 10px;
  880. }
  881. .parameter_xian .parameter_xian6[data-v-a45dfdea] {
  882. width: 240px;
  883. }
  884. .parameter_box[data-v-a45dfdea] {
  885. width: 100%;
  886. overflow: auto;
  887. }
  888. .parameter_div[data-v-a45dfdea] {
  889. width: 100%;
  890. height: 46px;
  891. background: white;
  892. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  893. margin-top: 10px;
  894. display: flex;
  895. align-items: center;
  896. justify-content: space-between;
  897. font-weight: 500;
  898. padding: 0px 20px;
  899. box-sizing: border-box;
  900. }
  901. .parameter_div .parameter_xian1[data-v-a45dfdea] {
  902. width: 160px;
  903. }
  904. .parameter_div .parameter_xian2[data-v-a45dfdea] {
  905. width: 160px;
  906. }
  907. .parameter_div .parameter_xian3[data-v-a45dfdea] {
  908. width: 430px;
  909. }
  910. .parameter_div .parameter_xian4[data-v-a45dfdea] {
  911. width: 220px;
  912. white-space: nowrap;
  913. /* 禁止换行 */
  914. overflow: hidden;
  915. /* 超出部分隐藏 */
  916. text-overflow: ellipsis;
  917. /* 显示省略号 */
  918. }
  919. .parameter_div .parameter_xian5[data-v-a45dfdea] {
  920. width: 240px;
  921. margin-right: 10px;
  922. }
  923. .parameter_div .parameter_xian6[data-v-a45dfdea] {
  924. width: 240px;
  925. }
  926. .parameter_divred[data-v-a45dfdea] {
  927. width: 100%;
  928. height: 46px;
  929. background: #f56353;
  930. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  931. margin-bottom: 10px;
  932. display: flex;
  933. align-items: center;
  934. color: #fff;
  935. font-weight: 500;
  936. justify-content: space-between;
  937. padding: 0px 16px;
  938. box-sizing: border-box;
  939. }
  940. .parameter_divred .parameter_xian1[data-v-a45dfdea] {
  941. width: 160px;
  942. }
  943. .parameter_divred .parameter_xian2[data-v-a45dfdea] {
  944. width: 160px;
  945. }
  946. .parameter_divred .parameter_xian3[data-v-a45dfdea] {
  947. width: 430px;
  948. }
  949. .parameter_divred .parameter_xian4[data-v-a45dfdea] {
  950. width: 220px;
  951. white-space: nowrap;
  952. /* 禁止换行 */
  953. overflow: hidden;
  954. /* 超出部分隐藏 */
  955. text-overflow: ellipsis;
  956. /* 显示省略号 */
  957. }
  958. .parameter_divred .parameter_xian5[data-v-a45dfdea] {
  959. width: 240px;
  960. margin-right: 10px;
  961. }
  962. .parameter_divred .parameter_xian6[data-v-a45dfdea] {
  963. width: 240px;
  964. }
  965. .parameter_bottom[data-v-a45dfdea] {
  966. display: flex;
  967. justify-content: space-between;
  968. margin-bottom: 10px;
  969. padding: 0px 16px;
  970. position: fixed;
  971. left: 10px;
  972. bottom: 10px;
  973. width: 100%;
  974. box-sizing: border-box;
  975. }
  976. .parameter_bottom1[data-v-a45dfdea] {
  977. display: flex;
  978. align-items: center;
  979. }
  980. .parameter_bottom1 uni-image[data-v-a45dfdea] {
  981. width: 32px;
  982. height: 32px;
  983. display: flex;
  984. }
  985. .parameter_bottom11[data-v-a45dfdea] {
  986. display: flex;
  987. align-items: center;
  988. margin-left: 100px;
  989. }
  990. .parameter_bottom11 uni-image[data-v-a45dfdea] {
  991. width: 32px;
  992. height: 32px;
  993. display: flex;
  994. }
  995. .parameter_bottom2[data-v-a45dfdea] {
  996. font-size: 19.58px;
  997. font-weight: 400;
  998. color: black;
  999. margin-left: 10px;
  1000. }
  1001. .parameter_bottom3[data-v-a45dfdea] {
  1002. display: flex;
  1003. }
  1004. .parameter_bottom31[data-v-a45dfdea] {
  1005. width: 48px;
  1006. height: 48px;
  1007. background: linear-gradient(180deg, #4aa7e0 0%, #2486c0 100%);
  1008. border-radius: 100%;
  1009. display: flex;
  1010. align-items: center;
  1011. justify-content: center;
  1012. font-size: 19px;
  1013. font-weight: 700;
  1014. margin-right: 20px;
  1015. color: white;
  1016. }
  1017. .parameter_bottom32[data-v-a45dfdea] {
  1018. width: 48px;
  1019. height: 48px;
  1020. background: linear-gradient(180deg, #e0dada 0%, #827979 100%);
  1021. border-radius: 100%;
  1022. display: flex;
  1023. align-items: center;
  1024. justify-content: center;
  1025. font-size: 19px;
  1026. font-weight: 700;
  1027. color: #222222;
  1028. margin-right: 20px;
  1029. }
  1030. .parameter_bottom4[data-v-a45dfdea] {
  1031. display: flex;
  1032. align-items: center;
  1033. }
  1034. .eliminate[data-v-a45dfdea] {
  1035. width: 107.69px;
  1036. height: 44.05px;
  1037. opacity: 1;
  1038. border-radius: 2.45px;
  1039. background: linear-gradient(180deg, #77a3e6 0%, #1955b0 10.42%, #06355e 88.89%, #77a3e6 100%);
  1040. margin-right: 20px;
  1041. display: flex;
  1042. align-items: center;
  1043. justify-content: center;
  1044. font-size: 23.5px;
  1045. font-weight: 400;
  1046. color: white;
  1047. box-sizing: border-box;
  1048. }
  1049. .time_state1[data-v-a45dfdea] {
  1050. font-size: 17px;
  1051. font-weight: 600;
  1052. color: #d91616;
  1053. }