移动储能车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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064
  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. .uni-pagination[data-v-88b7506d] {
  650. display: flex;
  651. position: relative;
  652. overflow: hidden;
  653. flex-direction: row;
  654. justify-content: center;
  655. align-items: center;
  656. }
  657. .uni-pagination__total[data-v-88b7506d] {
  658. font-size: 22px;
  659. color: #999;
  660. margin-right: 15px;
  661. }
  662. .uni-pagination__btn[data-v-88b7506d] {
  663. display: flex;
  664. cursor: pointer;
  665. padding: 0 8px;
  666. line-height: 30px;
  667. font-size: 22px;
  668. position: relative;
  669. background-color: #F0F0F0;
  670. flex-direction: row;
  671. justify-content: center;
  672. align-items: center;
  673. text-align: center;
  674. border-radius: 5px;
  675. }
  676. .uni-pagination__child-btn[data-v-88b7506d] {
  677. display: flex;
  678. font-size: 22px;
  679. position: relative;
  680. flex-direction: row;
  681. justify-content: center;
  682. align-items: center;
  683. text-align: center;
  684. color: #666;
  685. font-size: 22px;
  686. }
  687. .uni-pagination__num[data-v-88b7506d] {
  688. display: flex;
  689. max-width: 340px;
  690. flex-direction: row;
  691. justify-content: center;
  692. align-items: center;
  693. height: 30px;
  694. line-height: 30px;
  695. font-size: 22px;
  696. color: #666;
  697. margin: 0 5px;
  698. }
  699. .uni-pagination__num-tagwight[data-v-88b7506d] {
  700. width: 30px;
  701. }
  702. .uni-pagination__num-tag[data-v-88b7506d] {
  703. margin: 0 5px;
  704. height: 30px;
  705. text-align: center;
  706. line-height: 30px;
  707. color: #999;
  708. border-radius: 4px;
  709. }
  710. .uni-pagination__num-current[data-v-88b7506d] {
  711. display: flex;
  712. flex-direction: row;
  713. }
  714. .uni-pagination__num-current-text[data-v-88b7506d] {
  715. font-size: 22px;
  716. }
  717. .current-index-text[data-v-88b7506d] {
  718. color: #2979ff;
  719. }
  720. .uni-pagination--enabled[data-v-88b7506d] {
  721. color: #333333;
  722. opacity: 1;
  723. }
  724. .uni-pagination--disabled[data-v-88b7506d] {
  725. opacity: 0.5;
  726. }
  727. .uni-pagination--hover[data-v-88b7506d] {
  728. color: rgba(0, 0, 0, 0.6);
  729. background-color: #eee;
  730. }
  731. .tag--active[data-v-88b7506d]:hover {
  732. color: #2979ff;
  733. }
  734. .page--active[data-v-88b7506d] {
  735. color: #fff;
  736. background-color: #2979ff;
  737. }
  738. .page--active[data-v-88b7506d]:hover {
  739. color: #fff;
  740. }
  741. .is-pc-hide[data-v-88b7506d] {
  742. display: block;
  743. }
  744. .is-phone-hide[data-v-88b7506d] {
  745. display: none;
  746. }
  747. @media screen and (min-width: 450px) {
  748. .is-pc-hide[data-v-88b7506d] {
  749. display: none;
  750. }
  751. .is-phone-hide[data-v-88b7506d] {
  752. display: block;
  753. }
  754. .uni-pagination__num-flex-none[data-v-88b7506d] {
  755. flex: none;
  756. }
  757. }
  758. /**
  759. * 这里是uni-app内置的常用样式变量
  760. *
  761. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  762. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  763. *
  764. */
  765. /**
  766. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  767. *
  768. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  769. */
  770. /* 颜色变量 */
  771. /* 行为相关颜色 */
  772. /* 文字基本颜色 */
  773. /* 背景颜色 */
  774. /* 边框颜色 */
  775. /* 尺寸变量 */
  776. /* 文字尺寸 */
  777. /* 图片尺寸 */
  778. /* Border Radius */
  779. /* 水平间距 */
  780. /* 垂直间距 */
  781. /* 透明度 */
  782. /* 文章场景相关 */
  783. .content[data-v-a45dfdea] {
  784. width: 100%;
  785. height: 100vh;
  786. opacity: 1;
  787. background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, #c4e5ff 100%);
  788. box-sizing: border-box;
  789. }
  790. .top[data-v-a45dfdea] {
  791. width: 100%;
  792. height: 100px;
  793. display: flex;
  794. align-items: center;
  795. justify-content: space-between;
  796. background-size: 100% 100%;
  797. background-repeat: no-repeat;
  798. background-color: #fff;
  799. padding: 0px 46px;
  800. box-sizing: border-box;
  801. }
  802. .top_logo[data-v-a45dfdea] {
  803. width: 426px;
  804. height: 68px;
  805. }
  806. .tite[data-v-a45dfdea] {
  807. width: 277px;
  808. height: 48px;
  809. }
  810. .time[data-v-a45dfdea] {
  811. text-align: right;
  812. }
  813. .time_top[data-v-a45dfdea] {
  814. font-size: 17px;
  815. }
  816. .time_bottom[data-v-a45dfdea] {
  817. display: flex;
  818. font-size: 17px;
  819. justify-content: space-between;
  820. }
  821. .time_bottom1[data-v-a45dfdea] {
  822. display: flex;
  823. }
  824. .time_state[data-v-a45dfdea] {
  825. font-size: 17px;
  826. font-weight: 600;
  827. color: #164490;
  828. }
  829. .parameter[data-v-a45dfdea] {
  830. width: 100%;
  831. /* padding-bottom: 20px; */
  832. display: flex;
  833. padding: 0px 20px 20px 20px;
  834. display: flex;
  835. flex-direction: column;
  836. box-sizing: border-box;
  837. }
  838. .parameter_xian[data-v-a45dfdea] {
  839. width: 100%;
  840. height: 55px;
  841. background: linear-gradient(180deg, #1e83bd 0%, rgba(69, 168, 230, 0.92) 100%);
  842. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  843. display: flex;
  844. align-items: center;
  845. /* justify-content: space-around; */
  846. font-size: 28px;
  847. font-weight: 600;
  848. padding: 0px 20px;
  849. box-sizing: border-box;
  850. }
  851. .parameter_xian .parameter_xian1[data-v-a45dfdea] {
  852. width: 100px;
  853. }
  854. .parameter_xian .parameter_xian2[data-v-a45dfdea] {
  855. width: 100px;
  856. }
  857. .parameter_xian .parameter_xian3[data-v-a45dfdea] {
  858. width: 120px;
  859. }
  860. .parameter_xian .parameter_xian4[data-v-a45dfdea] {
  861. width: 400px;
  862. margin-right: 10px;
  863. white-space: nowrap;
  864. /* 禁止换行 */
  865. overflow: hidden;
  866. /* 超出部分隐藏 */
  867. text-overflow: ellipsis;
  868. /* 显示省略号 */
  869. }
  870. .parameter_xian .parameter_xian5[data-v-a45dfdea] {
  871. width: 220px;
  872. margin-right: 10px;
  873. }
  874. .parameter_xian .parameter_xian6[data-v-a45dfdea] {
  875. width: 220px;
  876. }
  877. .parameter_box[data-v-a45dfdea] {
  878. width: 100%;
  879. overflow: auto;
  880. }
  881. .parameter_div[data-v-a45dfdea] {
  882. width: 100%;
  883. height: 46px;
  884. background: white;
  885. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  886. margin-top: 10px;
  887. display: flex;
  888. align-items: center;
  889. /* justify-content: space-around; */
  890. font-weight: 500;
  891. padding: 0px 20px;
  892. box-sizing: border-box;
  893. }
  894. .parameter_div .parameter_xian1[data-v-a45dfdea] {
  895. font-size: 18px;
  896. width: 100px;
  897. }
  898. .parameter_div .parameter_xian2[data-v-a45dfdea] {
  899. font-size: 18px;
  900. width: 100px;
  901. }
  902. .parameter_div .parameter_xian3[data-v-a45dfdea] {
  903. font-size: 18px;
  904. width: 120px;
  905. white-space: nowrap;
  906. /* 禁止换行 */
  907. overflow: hidden;
  908. /* 超出部分隐藏 */
  909. text-overflow: ellipsis;
  910. /* 显示省略号 */
  911. margin-right: 10px;
  912. }
  913. .parameter_div .parameter_xian4[data-v-a45dfdea] {
  914. font-size: 18px;
  915. width: 400px;
  916. margin-right: 10px;
  917. white-space: nowrap;
  918. /* 禁止换行 */
  919. overflow: hidden;
  920. /* 超出部分隐藏 */
  921. text-overflow: ellipsis;
  922. /* 显示省略号 */
  923. }
  924. .parameter_div .parameter_xian5[data-v-a45dfdea] {
  925. font-size: 18px;
  926. width: 220px;
  927. margin-right: 10px;
  928. }
  929. .parameter_div .parameter_xian6[data-v-a45dfdea] {
  930. font-size: 18px;
  931. width: 220px;
  932. }
  933. .parameter_divred[data-v-a45dfdea] {
  934. width: 100%;
  935. height: 46px;
  936. background: #f56353;
  937. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  938. margin-bottom: 10px;
  939. display: flex;
  940. align-items: center;
  941. color: #fff;
  942. font-weight: 500;
  943. /* justify-content: space-around; */
  944. padding: 0px 16px;
  945. box-sizing: border-box;
  946. }
  947. .parameter_divred .parameter_xian1[data-v-a45dfdea] {
  948. font-size: 18px;
  949. width: 100px;
  950. }
  951. .parameter_divred .parameter_xian2[data-v-a45dfdea] {
  952. font-size: 18px;
  953. width: 100px;
  954. }
  955. .parameter_divred .parameter_xian3[data-v-a45dfdea] {
  956. font-size: 18px;
  957. width: 120px;
  958. white-space: nowrap;
  959. /* 禁止换行 */
  960. overflow: hidden;
  961. /* 超出部分隐藏 */
  962. text-overflow: ellipsis;
  963. /* 显示省略号 */
  964. margin-right: 10px;
  965. }
  966. .parameter_divred .parameter_xian4[data-v-a45dfdea] {
  967. font-size: 18px;
  968. width: 400px;
  969. margin-right: 10px;
  970. white-space: nowrap;
  971. /* 禁止换行 */
  972. overflow: hidden;
  973. /* 超出部分隐藏 */
  974. text-overflow: ellipsis;
  975. /* 显示省略号 */
  976. }
  977. .parameter_divred .parameter_xian5[data-v-a45dfdea] {
  978. font-size: 18px;
  979. width: 220px;
  980. margin-right: 10px;
  981. }
  982. .parameter_divred .parameter_xian6[data-v-a45dfdea] {
  983. font-size: 18px;
  984. width: 220px;
  985. }
  986. .parameter_bottom[data-v-a45dfdea] {
  987. display: flex;
  988. justify-content: space-between;
  989. margin-bottom: 10px;
  990. padding: 0px 16px;
  991. position: fixed;
  992. left: 0px;
  993. bottom: 16px;
  994. width: 100%;
  995. box-sizing: border-box;
  996. }
  997. .parameter_bottom1[data-v-a45dfdea] {
  998. display: flex;
  999. align-items: center;
  1000. }
  1001. .parameter_bottom1 uni-image[data-v-a45dfdea] {
  1002. width: 32px;
  1003. height: 32px;
  1004. display: flex;
  1005. }
  1006. .parameter_bottom2[data-v-a45dfdea] {
  1007. font-size: 19.58px;
  1008. font-weight: 400;
  1009. color: black;
  1010. margin-left: 10px;
  1011. }
  1012. .parameter_bottom3[data-v-a45dfdea] {
  1013. display: flex;
  1014. }
  1015. .parameter_bottom31[data-v-a45dfdea] {
  1016. width: 48px;
  1017. height: 48px;
  1018. background: linear-gradient(180deg, #4aa7e0 0%, #2486c0 100%);
  1019. border-radius: 100%;
  1020. display: flex;
  1021. align-items: center;
  1022. justify-content: center;
  1023. font-size: 19px;
  1024. font-weight: 700;
  1025. margin-right: 20px;
  1026. color: white;
  1027. }
  1028. .parameter_bottom32[data-v-a45dfdea] {
  1029. width: 48px;
  1030. height: 48px;
  1031. background: linear-gradient(180deg, #e0dada 0%, #827979 100%);
  1032. border-radius: 100%;
  1033. display: flex;
  1034. align-items: center;
  1035. justify-content: center;
  1036. font-size: 19px;
  1037. font-weight: 700;
  1038. color: #222222;
  1039. margin-right: 20px;
  1040. }
  1041. .parameter_bottom4[data-v-a45dfdea] {
  1042. display: flex;
  1043. align-items: center;
  1044. }
  1045. .eliminate[data-v-a45dfdea] {
  1046. width: 107.69px;
  1047. height: 44.05px;
  1048. opacity: 1;
  1049. border-radius: 2.45px;
  1050. background: linear-gradient(180deg, #77a3e6 0%, #1955b0 10.42%, #06355e 88.89%, #77a3e6 100%);
  1051. margin-right: 20px;
  1052. display: flex;
  1053. align-items: center;
  1054. justify-content: center;
  1055. font-size: 23.5px;
  1056. font-weight: 400;
  1057. color: white;
  1058. box-sizing: border-box;
  1059. }
  1060. .time_state1[data-v-a45dfdea] {
  1061. font-size: 17px;
  1062. font-weight: 600;
  1063. color: #d91616;
  1064. }