移动储能车V1版本
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

supplyss.css 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  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. .uni-popup-dialog[data-v-d78c88b7] {
  27. width: 300px;
  28. border-radius: 11px;
  29. background-color: #fff;
  30. }
  31. .uni-dialog-title[data-v-d78c88b7] {
  32. display: flex;
  33. flex-direction: row;
  34. justify-content: center;
  35. padding-top: 25px;
  36. }
  37. .uni-dialog-title-text[data-v-d78c88b7] {
  38. font-size: 20px;
  39. font-weight: 600;
  40. }
  41. .uni-dialog-content[data-v-d78c88b7] {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: center;
  45. align-items: center;
  46. padding: 20px;
  47. }
  48. .uni-dialog-content-text[data-v-d78c88b7] {
  49. font-size: 16px;
  50. color: #6C6C6C;
  51. }
  52. .uni-dialog-button-group[data-v-d78c88b7] {
  53. display: flex;
  54. flex-direction: row;
  55. border-top-color: #f5f5f5;
  56. border-top-style: solid;
  57. border-top-width: 1px;
  58. }
  59. .uni-dialog-button[data-v-d78c88b7] {
  60. display: flex;
  61. flex: 1;
  62. flex-direction: row;
  63. justify-content: center;
  64. align-items: center;
  65. height: 45px;
  66. }
  67. .uni-border-left[data-v-d78c88b7] {
  68. border-left-color: #f0f0f0;
  69. border-left-style: solid;
  70. border-left-width: 1px;
  71. }
  72. .uni-dialog-button-text[data-v-d78c88b7] {
  73. font-size: 16px;
  74. color: #333;
  75. }
  76. .uni-button-color[data-v-d78c88b7] {
  77. color: #007aff;
  78. }
  79. .uni-dialog-input[data-v-d78c88b7] {
  80. flex: 1;
  81. font-size: 16px;
  82. border: 1px #eee solid;
  83. height: 40px;
  84. padding: 0 10px;
  85. border-radius: 5px;
  86. color: #555;
  87. }
  88. .uni-popup__success[data-v-d78c88b7] {
  89. color: #4cd964;
  90. }
  91. .uni-popup__warn[data-v-d78c88b7] {
  92. color: #f0ad4e;
  93. }
  94. .uni-popup__error[data-v-d78c88b7] {
  95. color: #dd524d;
  96. }
  97. .uni-popup__info[data-v-d78c88b7] {
  98. color: #909399;
  99. }
  100. /**
  101. * 这里是uni-app内置的常用样式变量
  102. *
  103. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  104. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  105. *
  106. */
  107. /**
  108. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  109. *
  110. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  111. */
  112. /* 颜色变量 */
  113. /* 行为相关颜色 */
  114. /* 文字基本颜色 */
  115. /* 背景颜色 */
  116. /* 边框颜色 */
  117. /* 尺寸变量 */
  118. /* 文字尺寸 */
  119. /* 图片尺寸 */
  120. /* Border Radius */
  121. /* 水平间距 */
  122. /* 垂直间距 */
  123. /* 透明度 */
  124. /* 文章场景相关 */
  125. .uni-popup[data-v-4dd3c44b] {
  126. position: fixed;
  127. z-index: 99;
  128. }
  129. .uni-popup.top[data-v-4dd3c44b], .uni-popup.left[data-v-4dd3c44b], .uni-popup.right[data-v-4dd3c44b] {
  130. top: 0;
  131. }
  132. .uni-popup .uni-popup__wrapper[data-v-4dd3c44b] {
  133. display: block;
  134. position: relative;
  135. /* iphonex 等安全区设置,底部安全区适配 */
  136. }
  137. .uni-popup .uni-popup__wrapper.left[data-v-4dd3c44b], .uni-popup .uni-popup__wrapper.right[data-v-4dd3c44b] {
  138. padding-top: 0;
  139. flex: 1;
  140. }
  141. .fixforpc-z-index[data-v-4dd3c44b] {
  142. z-index: 999;
  143. }
  144. .fixforpc-top[data-v-4dd3c44b] {
  145. top: 0;
  146. }
  147. .content[data-v-0d60935b] {
  148. width: 100%;
  149. height: 100vh;
  150. opacity: 1;
  151. background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, rgba(196, 229, 255, 1) 100%);
  152. box-sizing: border-box;
  153. }
  154. .top[data-v-0d60935b] {
  155. width: 100%;
  156. height: 100px;
  157. display: flex;
  158. align-items: center;
  159. justify-content: space-between;
  160. background-size: 100% 100%;
  161. background-repeat: no-repeat;
  162. box-sizing: border-box;
  163. background-color: #fff;
  164. padding: 0px 46px;
  165. }
  166. .top_logo[data-v-0d60935b] {
  167. width: 426px;
  168. height: 68px;
  169. }
  170. .tite[data-v-0d60935b] {
  171. width: 277px;
  172. height: 48px;
  173. }
  174. .time[data-v-0d60935b] {
  175. text-align: right;
  176. }
  177. .time_top[data-v-0d60935b] {
  178. font-size: 17px;
  179. }
  180. .time_bottom[data-v-0d60935b] {
  181. display: flex;
  182. font-size: 17px;
  183. justify-content: space-between;
  184. }
  185. .time_bottom1[data-v-0d60935b] {
  186. display: flex;
  187. }
  188. .time_state[data-v-0d60935b] {
  189. font-size: 17px;
  190. font-weight: 600;
  191. color: rgba(22, 68, 144, 1);
  192. }
  193. .time_state1[data-v-0d60935b] {
  194. font-size: 17px;
  195. font-weight: 600;
  196. color: rgba(217, 22, 22, 1);
  197. }
  198. .parameter[data-v-0d60935b] {
  199. width: 100%;
  200. padding-bottom: 20px;
  201. display: flex;
  202. padding: 20px 20px;
  203. box-sizing: border-box;
  204. }
  205. .parameter_left[data-v-0d60935b] {
  206. width: 262.85px;
  207. height: 630px;
  208. opacity: 1;
  209. border-radius: 24.47px;
  210. background: linear-gradient(180deg, rgba(42, 150, 212, 0.1) 0%, rgba(42, 146, 209, 0) 100%);
  211. border: 2.94px solid rgba(242, 248, 252, 1);
  212. display: flex;
  213. flex-direction: column;
  214. align-items: center;
  215. padding: 0.625rem 0px;
  216. }
  217. .parameter_left1[data-v-0d60935b] {
  218. width: 100%;
  219. height: 158px;
  220. box-sizing: border-box;
  221. display: flex;
  222. flex-direction: column;
  223. justify-content: space-between;
  224. align-items: center;
  225. padding-bottom: 16px;
  226. }
  227. .canvas[data-v-0d60935b] {
  228. width: 180px;
  229. margin: 8px auto auto auto;
  230. }
  231. .parameter_canvas[data-v-0d60935b] {
  232. width: 100%;
  233. display: flex;
  234. justify-content: space-around;
  235. box-sizing: border-box;
  236. box-sizing: border-box;
  237. margin-top: 8px;
  238. }
  239. .parameter_canvas1[data-v-0d60935b] {
  240. margin-left: -20px;
  241. }
  242. .parameter_canvas2[data-v-0d60935b] {
  243. margin-right: -20px;
  244. }
  245. .parameter_leftdian1[data-v-0d60935b] {
  246. width: 97.9px;
  247. height: 97.9px;
  248. opacity: 1;
  249. }
  250. .parameter_lef2[data-v-0d60935b] {
  251. width: 100%;
  252. height: 210px;
  253. display: flex;
  254. justify-content: center;
  255. align-items: center;
  256. background-image: url("../../static/heng.png");
  257. background-size: auto 100%;
  258. background-repeat: no-repeat;
  259. background-position: center center;
  260. margin: 10px 0px;
  261. uni-image[data-v-0d60935b] {
  262. width: 100px;
  263. height: 100px;
  264. margin-top: -10px;
  265. }
  266. }
  267. .parameter_leftche[data-v-0d60935b] {
  268. width: 115.52px;
  269. height: 78.32px;
  270. opacity: 1;
  271. }
  272. .parameter_leftche1[data-v-0d60935b] {
  273. width: 77px;
  274. height: 81px;
  275. opacity: 1;
  276. }
  277. .parameter_leftche2[data-v-0d60935b] {
  278. width: 77px;
  279. height: 62px;
  280. }
  281. .parameter_leftview[data-v-0d60935b] {
  282. font-size: 19.58px;
  283. font-weight: 400;
  284. letter-spacing: 0px;
  285. line-height: 28.35px;
  286. color: rgba(0, 0, 0, 1);
  287. margin-top: 8px;
  288. }
  289. .parameter_right[data-v-0d60935b] {
  290. flex: 1;
  291. margin-left: 10px;
  292. display: flex;
  293. flex-direction: column;
  294. justify-content: space-between;
  295. }
  296. .parameter_righttop[data-v-0d60935b] {
  297. width: 100%;
  298. }
  299. .parameter_1[data-v-0d60935b] {
  300. display: flex;
  301. }
  302. .parameter_2[data-v-0d60935b] {
  303. width: 339.21px;
  304. display: flex;
  305. flex-direction: column;
  306. justify-content: space-between;
  307. margin-right: 16px;
  308. }
  309. .parameter_3[data-v-0d60935b] {
  310. width: 339.21px;
  311. display: flex;
  312. align-items: center;
  313. justify-content: space-between;
  314. padding: 12px 20px;
  315. box-sizing: border-box;
  316. border-radius: 9.79px;
  317. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  318. uni-image[data-v-0d60935b] {
  319. width: 7.83px;
  320. height: 7.83px;
  321. margin-right: 6px;
  322. }
  323. }
  324. .parameter_31[data-v-0d60935b] {
  325. width: 339.21px;
  326. display: flex;
  327. align-items: center;
  328. justify-content: space-between;
  329. padding: 3px 20px;
  330. box-sizing: border-box;
  331. border-radius: 9.79px;
  332. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  333. uni-image[data-v-0d60935b] {
  334. width: 7.83px;
  335. height: 7.83px;
  336. margin-right: 6px;
  337. }
  338. }
  339. .parameter_4[data-v-0d60935b] {
  340. /** 文本1 */
  341. font-size: 23.5px;
  342. font-weight: 700;
  343. color: rgba(38, 38, 38, 1);
  344. display: flex;
  345. align-items: center;
  346. }
  347. .parameter_5[data-v-0d60935b] {
  348. font-size: 24.47px;
  349. font-weight: 700;
  350. color: rgba(217, 22, 22, 1);
  351. }
  352. .parameter_51[data-v-0d60935b] {
  353. font-size: 24.47px;
  354. font-weight: 700;
  355. color: rgba(7, 123, 67, 1);
  356. }
  357. .parameter_SOC[data-v-0d60935b] {
  358. display: flex;
  359. align-items: center;
  360. justify-content: space-around;
  361. width: 195.11px;
  362. height: 130px;
  363. /* opacity: 0.15; */
  364. border-radius: 9.79px;
  365. margin-right: 16px;
  366. background: linear-gradient(180deg, rgba(240, 209, 137, 0.15) 0%, rgba(186, 141, 56, 0.15) 100%);
  367. uni-image[data-v-0d60935b] {
  368. width: 37.2px;
  369. height: 37.2px;
  370. }
  371. }
  372. .parameter_state[data-v-0d60935b] {
  373. display: flex;
  374. align-items: center;
  375. justify-content: space-around;
  376. width: 195.11px;
  377. height: 130px;
  378. /* opacity: 0.15; */
  379. border-radius: 9.79px;
  380. background: linear-gradient(180deg, rgba(93, 149, 245, 0.15) 0%, rgba(41, 71, 204, 0.15) 100%);
  381. uni-image[data-v-0d60935b] {
  382. width: 37.2px;
  383. height: 37.2px;
  384. }
  385. }
  386. .parameter_Battery[data-v-0d60935b] {
  387. display: flex;
  388. align-items: center;
  389. justify-content: space-around;
  390. width: 195.11px;
  391. height: 130px;
  392. /* opacity: 0.15; */
  393. margin-right: 16px;
  394. border-radius: 9.79px;
  395. background: linear-gradient(180deg, rgba(133, 242, 133, 0.15)0%, rgba(82, 209, 75, 0.15)100%);
  396. uni-image[data-v-0d60935b] {
  397. width: 37.2px;
  398. height: 37.2px;
  399. }
  400. }
  401. .parameter_SOCright[data-v-0d60935b] {
  402. display: flex;
  403. flex-direction: column;
  404. }
  405. .parameter_SOCright1[data-v-0d60935b] {
  406. font-size: 23.5px;
  407. font-weight: 700;
  408. letter-spacing: 0px;
  409. line-height: 32.24px;
  410. color: rgba(38, 38, 38, 1);
  411. text-align: right;
  412. }
  413. .parameter_SOCright2[data-v-0d60935b] {
  414. font-size: 29.37px;
  415. font-weight: 700;
  416. color: rgba(186, 141, 56, 1);
  417. }
  418. .parameter_Batterystate[data-v-0d60935b] {
  419. font-size: 23.5px;
  420. font-weight: 500;
  421. color: rgba(38, 38, 38, 1);
  422. text-align: right;
  423. }
  424. .parameter_tap[data-v-0d60935b] {
  425. width: 100%;
  426. display: flex;
  427. margin-top: 18px;
  428. }
  429. .parameter_tap1[data-v-0d60935b] {
  430. flex: 1;
  431. height: 55.8px;
  432. opacity: 1;
  433. background: linear-gradient(180deg, rgba(30, 131, 189, 1) 0%, rgba(69, 168, 230, 0.92) 100%);
  434. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  435. display: flex;
  436. align-items: center;
  437. justify-content: center;
  438. font-size: 23.5px;
  439. font-weight: 500;
  440. color: rgba(255, 255, 255, 1);
  441. }
  442. .parameter_tap2[data-v-0d60935b] {
  443. flex: 1;
  444. height: 55.8px;
  445. opacity: 1;
  446. background: rgba(242, 242, 242, 1);
  447. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  448. display: flex;
  449. align-items: center;
  450. justify-content: center;
  451. font-size: 23.5px;
  452. font-weight: 500;
  453. }
  454. .parameter_zheng[data-v-0d60935b] {
  455. width: 100%;
  456. height: 313px;
  457. background-image: url("../../static/z16.png");
  458. background-size: 100% 100%;
  459. margin-top: 10px;
  460. padding: 20px 0px;
  461. display: flex;
  462. }
  463. .parameter_zheng1[data-v-0d60935b] {
  464. width: 387px;
  465. height: 100%;
  466. border-right: 0.49px solid rgba(0, 0, 0, 1);
  467. display: flex;
  468. flex-direction: column;
  469. justify-content: space-around;
  470. }
  471. .parameter_zheng11[data-v-0d60935b] {
  472. display: flex;
  473. padding: 0px 20px;
  474. justify-content: space-between;
  475. }
  476. .parameter_zheng12[data-v-0d60935b] {
  477. font-size: 23.5px;
  478. font-weight: 400;
  479. color: rgba(0, 0, 0, 1);
  480. }
  481. .parameter_zheng13[data-v-0d60935b] {
  482. font-size: 29.37px;
  483. font-weight: 700;
  484. color: rgba(20, 105, 201, 1);
  485. }
  486. .parameter_zheng14[data-v-0d60935b] {
  487. font-size: 23.5px;
  488. font-weight: 400;
  489. color: rgba(0, 0, 0, 1);
  490. }
  491. .parameter_zheng2[data-v-0d60935b] {
  492. width: 387px;
  493. height: 100%;
  494. border-right: 0.49px solid rgba(0, 0, 0, 1);
  495. display: flex;
  496. flex-direction: column;
  497. justify-content: space-around;
  498. }
  499. .parameter_zheng3[data-v-0d60935b] {
  500. flex: 1;
  501. height: 100%;
  502. display: flex;
  503. flex-direction: column;
  504. align-items: center;
  505. justify-content: space-around;
  506. }
  507. .parameter_zheng31[data-v-0d60935b] {
  508. width: 75px;
  509. height: 75px;
  510. background-image: url("../../static/y4.png");
  511. background-size: 100% 100%;
  512. display: flex;
  513. align-items: center;
  514. justify-content: center;
  515. }
  516. .parameter_zheng32[data-v-0d60935b] {
  517. width: 66px;
  518. height: 66px;
  519. background-image: url("../../static/y1.png");
  520. background-size: 100% 100%;
  521. display: flex;
  522. align-items: center;
  523. justify-content: center;
  524. font-size: 19.58px;
  525. font-weight: 700;
  526. color: rgba(255, 255, 255, 1);
  527. }
  528. .parameter_zheng32ccc[data-v-0d60935b] {
  529. width: 66px;
  530. height: 66px;
  531. /* background-image: url("../../static/y1.png"); */
  532. background-color: #cccccc;
  533. background-size: 100% 100%;
  534. display: flex;
  535. align-items: center;
  536. justify-content: center;
  537. font-size: 19.58px;
  538. font-weight: 700;
  539. color: rgba(255, 255, 255, 1);
  540. border-radius: 100%;
  541. }
  542. .parameter_zheng33[data-v-0d60935b] {
  543. width: 66px;
  544. height: 66px;
  545. background-image: url("../../static/y6.png");
  546. background-size: 100% 100%;
  547. display: flex;
  548. align-items: center;
  549. justify-content: center;
  550. font-size: 19px;
  551. font-weight: 700;
  552. color: rgba(255, 255, 255, 1);
  553. }
  554. .parameter_zheng34[data-v-0d60935b] {
  555. width: 66px;
  556. height: 66px;
  557. background-image: url("../../static/y8.png");
  558. background-size: 100% 100%;
  559. font-size: 18px;
  560. font-weight: 700;
  561. color: rgba(255, 255, 255, 1);
  562. display: flex;
  563. flex-direction: column;
  564. align-items: center;
  565. justify-content: center;
  566. }
  567. .parameter_home[data-v-0d60935b] {
  568. width: 100%;
  569. display: flex;
  570. margin-top: 0px;
  571. justify-content: space-between;
  572. }
  573. .parameter_home1[data-v-0d60935b] {
  574. display: flex;
  575. align-items: center;
  576. uni-image[data-v-0d60935b] {
  577. width: 32.8px;
  578. height: 32.31px;
  579. margin-right: 10px;
  580. }
  581. }
  582. .parameter_hometext[data-v-0d60935b] {
  583. font-size: 19.58px;
  584. font-weight: 400;
  585. color: rgba(0, 0, 0, 1);
  586. }
  587. .parameter_home2[data-v-0d60935b] {
  588. width: 636.33px;
  589. height: 39.16px;
  590. opacity: 0.8;
  591. border-radius: 0.98px;
  592. background: rgba(242, 242, 242, 1);
  593. border: 0.49px solid rgba(161, 161, 161, 1);
  594. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  595. display: flex;
  596. align-items: center;
  597. padding: 0px 10px;
  598. box-sizing: border-box;
  599. uni-image[data-v-0d60935b] {
  600. width: 26.92px;
  601. height: 29.86px;
  602. }
  603. }
  604. .parameter_home3[data-v-0d60935b] {
  605. font-size: 17.62px;
  606. font-weight: 400;
  607. color: rgba(0, 0, 0, 1);
  608. margin-left: 10px;
  609. }
  610. .uni-dialog-title-text[data-v-0d60935b] {
  611. font-size: 70.89px !important;
  612. font-weight: 500;
  613. color: rgba(5, 5, 5, 1);
  614. }
  615. .parameter_box[data-v-0d60935b]{
  616. display: flex;
  617. }
  618. .parameter_zheng10[data-v-0d60935b]{
  619. width: 687px;
  620. height: 100%;
  621. border-right: 0.49px solid rgba(0, 0, 0, 1);
  622. display: flex;
  623. flex-direction: column;
  624. justify-content: space-around;
  625. }