移动储能车V1版本
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  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. 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-tag[data-v-88b7506d] {
  700. margin: 0 5px;
  701. height: 30px;
  702. text-align: center;
  703. line-height: 30px;
  704. color: #999;
  705. border-radius: 4px;
  706. }
  707. .uni-pagination__num-current[data-v-88b7506d] {
  708. display: flex;
  709. flex-direction: row;
  710. }
  711. .uni-pagination__num-current-text[data-v-88b7506d] {
  712. font-size: 22px;
  713. }
  714. .current-index-text[data-v-88b7506d] {
  715. color: #2979ff;
  716. }
  717. .uni-pagination--enabled[data-v-88b7506d] {
  718. color: #333333;
  719. opacity: 1;
  720. }
  721. .uni-pagination--disabled[data-v-88b7506d] {
  722. opacity: 0.5;
  723. }
  724. .uni-pagination--hover[data-v-88b7506d] {
  725. color: rgba(0, 0, 0, 0.6);
  726. background-color: #eee;
  727. }
  728. .tag--active[data-v-88b7506d]:hover {
  729. color: #2979ff;
  730. }
  731. .page--active[data-v-88b7506d] {
  732. color: #fff;
  733. background-color: #2979ff;
  734. }
  735. .page--active[data-v-88b7506d]:hover {
  736. color: #fff;
  737. }
  738. .is-pc-hide[data-v-88b7506d] {
  739. display: block;
  740. }
  741. .is-phone-hide[data-v-88b7506d] {
  742. display: none;
  743. }
  744. @media screen and (min-width: 450px) {
  745. .is-pc-hide[data-v-88b7506d] {
  746. display: none;
  747. }
  748. .is-phone-hide[data-v-88b7506d] {
  749. display: block;
  750. }
  751. .uni-pagination__num-flex-none[data-v-88b7506d] {
  752. flex: none;
  753. }
  754. }
  755. .content[data-v-a45dfdea] {
  756. width: 100%;
  757. height: 100vh;
  758. opacity: 1;
  759. background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, rgba(196, 229, 255, 1) 100%);
  760. box-sizing: border-box;
  761. }
  762. .top[data-v-a45dfdea] {
  763. width: 100%;
  764. height: 100px;
  765. display: flex;
  766. align-items: center;
  767. justify-content: space-between;
  768. background-size: 100% 100%;
  769. background-repeat: no-repeat;
  770. background-color: #fff;
  771. padding: 0px 46px;
  772. box-sizing: border-box;
  773. }
  774. .top_logo[data-v-a45dfdea] {
  775. width: 426px;
  776. height: 68px;
  777. }
  778. .tite[data-v-a45dfdea] {
  779. width: 277px;
  780. height: 48px;
  781. }
  782. .time[data-v-a45dfdea] {
  783. text-align: right;
  784. }
  785. .time_top[data-v-a45dfdea] {
  786. font-size: 17px;
  787. }
  788. .time_bottom[data-v-a45dfdea] {
  789. display: flex;
  790. font-size: 17px;
  791. justify-content: space-between;
  792. }
  793. .time_bottom1[data-v-a45dfdea] {
  794. display: flex;
  795. }
  796. .time_state[data-v-a45dfdea] {
  797. font-size: 17px;
  798. font-weight: 600;
  799. color: rgba(22, 68, 144, 1);
  800. }
  801. .parameter[data-v-a45dfdea] {
  802. width: 100%;
  803. /* padding-bottom: 20px; */
  804. display: flex;
  805. padding:0px 20px 20px 20px;
  806. display: flex;
  807. flex-direction: column;
  808. box-sizing: border-box;
  809. }
  810. .parameter_xian[data-v-a45dfdea] {
  811. width: 100%;
  812. height: 55px;
  813. background: linear-gradient(180deg, rgba(30, 131, 189, 1) 0%, rgba(69, 168, 230, 0.92) 100%);
  814. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  815. display: flex;
  816. align-items: center;
  817. /* justify-content: space-around; */
  818. font-size: 28px;
  819. font-weight: 600;
  820. padding: 0px 20px;
  821. box-sizing: border-box;
  822. .parameter_xian1[data-v-a45dfdea] {
  823. width: 100px;
  824. }
  825. .parameter_xian2[data-v-a45dfdea] {
  826. width: 100px;
  827. }
  828. .parameter_xian3[data-v-a45dfdea] {
  829. width: 120px;
  830. }
  831. .parameter_xian4[data-v-a45dfdea] {
  832. width: 400px;
  833. margin-right: 10px;
  834. white-space: nowrap; /* 禁止换行 */
  835. overflow: hidden; /* 超出部分隐藏 */
  836. text-overflow: ellipsis; /* 显示省略号 */
  837. }
  838. .parameter_xian5[data-v-a45dfdea] {
  839. width: 220px;
  840. margin-right: 10px;
  841. }
  842. .parameter_xian6[data-v-a45dfdea] {
  843. width: 220px;
  844. }
  845. }
  846. .parameter_box[data-v-a45dfdea] {
  847. width: 100%;
  848. overflow: auto;
  849. }
  850. .parameter_div[data-v-a45dfdea] {
  851. width: 100%;
  852. height: 44.05px;
  853. background: rgba(255, 255, 255, 1);
  854. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  855. margin-top: 10px;
  856. display: flex;
  857. align-items: center;
  858. /* justify-content: space-around; */
  859. font-weight: 500;
  860. padding: 0px 20px;
  861. box-sizing: border-box;
  862. .parameter_xian1[data-v-a45dfdea] {
  863. font-size: 18px;
  864. width: 100px;
  865. }
  866. .parameter_xian2[data-v-a45dfdea] {
  867. font-size: 18px;
  868. width: 100px;
  869. }
  870. .parameter_xian3[data-v-a45dfdea] {
  871. font-size: 18px;
  872. width: 120px;
  873. white-space: nowrap; /* 禁止换行 */
  874. overflow: hidden; /* 超出部分隐藏 */
  875. text-overflow: ellipsis; /* 显示省略号 */
  876. margin-right: 10px;
  877. }
  878. .parameter_xian4[data-v-a45dfdea] {
  879. font-size: 18px;
  880. width: 400px;
  881. margin-right: 10px;
  882. white-space: nowrap; /* 禁止换行 */
  883. overflow: hidden; /* 超出部分隐藏 */
  884. text-overflow: ellipsis; /* 显示省略号 */
  885. }
  886. .parameter_xian5[data-v-a45dfdea] {
  887. font-size: 18px;
  888. width: 220px;
  889. margin-right: 10px;
  890. }
  891. .parameter_xian6[data-v-a45dfdea] {
  892. font-size: 18px;
  893. width: 220px;
  894. }
  895. }
  896. .parameter_divred[data-v-a45dfdea] {
  897. width: 100%;
  898. height: 44.05px;
  899. background: rgba(245, 99, 83, 1);
  900. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  901. margin-bottom: 10px;
  902. display: flex;
  903. align-items: center;
  904. color: #fff;
  905. font-weight: 500;
  906. /* justify-content: space-around; */
  907. padding: 0px 16px;
  908. box-sizing: border-box;
  909. .parameter_xian1[data-v-a45dfdea] {
  910. font-size: 18px;
  911. width: 100px;
  912. }
  913. .parameter_xian2[data-v-a45dfdea] {
  914. font-size: 18px;
  915. width: 100px;
  916. }
  917. .parameter_xian3[data-v-a45dfdea] {
  918. font-size: 18px;
  919. width: 120px;
  920. white-space: nowrap; /* 禁止换行 */
  921. overflow: hidden; /* 超出部分隐藏 */
  922. text-overflow: ellipsis; /* 显示省略号 */
  923. margin-right: 10px;
  924. }
  925. .parameter_xian4[data-v-a45dfdea] {
  926. font-size: 18px;
  927. width: 400px;
  928. margin-right: 10px;
  929. white-space: nowrap; /* 禁止换行 */
  930. overflow: hidden; /* 超出部分隐藏 */
  931. text-overflow: ellipsis; /* 显示省略号 */
  932. }
  933. .parameter_xian5[data-v-a45dfdea] {
  934. font-size: 18px;
  935. width: 220px;
  936. margin-right: 10px;
  937. }
  938. .parameter_xian6[data-v-a45dfdea] {
  939. font-size: 18px;
  940. width: 220px;
  941. }
  942. }
  943. .parameter_bottom[data-v-a45dfdea] {
  944. display: flex;
  945. justify-content: space-between;
  946. margin-bottom: 10px;
  947. padding: 0px 16px;
  948. position: fixed;
  949. left: 0px;
  950. bottom: 10px;
  951. width: 100%;
  952. box-sizing: border-box;
  953. }
  954. .parameter_bottom1[data-v-a45dfdea] {
  955. display: flex;
  956. align-items: center;
  957. uni-image[data-v-a45dfdea] {
  958. width: 32px;
  959. height: 32px;
  960. display: flex;
  961. }
  962. }
  963. .parameter_bottom2[data-v-a45dfdea] {
  964. font-size: 19.58px;
  965. font-weight: 400;
  966. color: rgba(0, 0, 0, 1);
  967. margin-left: 10px;
  968. }
  969. .parameter_bottom3[data-v-a45dfdea] {
  970. display: flex;
  971. }
  972. .parameter_bottom31[data-v-a45dfdea] {
  973. width: 48px;
  974. height: 48px;
  975. background: linear-gradient(180deg, rgba(74, 167, 224, 1) 0%, rgba(36, 134, 192, 1) 100%);
  976. border-radius: 100%;
  977. display: flex;
  978. align-items: center;
  979. justify-content: center;
  980. font-size: 19px;
  981. font-weight: 700;
  982. margin-right: 20px;
  983. color: rgba(255, 255, 255, 1);
  984. }
  985. .parameter_bottom32[data-v-a45dfdea] {
  986. width: 48px;
  987. height: 48px;
  988. background: linear-gradient(180deg, rgba(224, 218, 218, 1) 0%, rgba(130, 121, 121, 1) 100%);
  989. border-radius: 100%;
  990. display: flex;
  991. align-items: center;
  992. justify-content: center;
  993. font-size: 19px;
  994. font-weight: 700;
  995. color:#222222;
  996. margin-right: 20px;
  997. }
  998. .parameter_bottom4[data-v-a45dfdea] {
  999. display: flex;
  1000. align-items: center;
  1001. }
  1002. .eliminate[data-v-a45dfdea] {
  1003. width: 107.69px;
  1004. height: 44.05px;
  1005. opacity: 1;
  1006. border-radius: 2.45px;
  1007. background: linear-gradient(180deg, rgba(119, 163, 230, 1) 0%, rgba(25, 85, 176, 1) 10.42%, rgba(6, 53, 94, 1) 88.89%, rgba(119, 163, 230, 1) 100%);
  1008. margin-right: 20px;
  1009. display: flex;
  1010. align-items: center;
  1011. justify-content: center;
  1012. font-size: 23.5px;
  1013. font-weight: 400;
  1014. color: rgba(255, 255, 255, 1);
  1015. box-sizing: border-box;
  1016. }
  1017. .time_state1[data-v-a45dfdea] {
  1018. font-size: 17px;
  1019. font-weight: 600;
  1020. color: rgba(217, 22, 22, 1);
  1021. }