移动储能车V1版本
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.css 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  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. /**
  148. * 这里是uni-app内置的常用样式变量
  149. *
  150. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  151. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  152. *
  153. */
  154. /**
  155. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  156. *
  157. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  158. */
  159. /* 颜色变量 */
  160. /* 行为相关颜色 */
  161. /* 文字基本颜色 */
  162. /* 背景颜色 */
  163. /* 边框颜色 */
  164. /* 尺寸变量 */
  165. /* 文字尺寸 */
  166. /* 图片尺寸 */
  167. /* Border Radius */
  168. /* 水平间距 */
  169. /* 垂直间距 */
  170. /* 透明度 */
  171. /* 文章场景相关 */
  172. .uni-popup-message[data-v-a4566996] {
  173. display: flex;
  174. flex-direction: row;
  175. justify-content: center;
  176. }
  177. .uni-popup-message__box[data-v-a4566996] {
  178. background-color: #e1f3d8;
  179. padding: 10px 15px;
  180. border-color: #eee;
  181. border-style: solid;
  182. border-width: 1px;
  183. flex: 1;
  184. }
  185. @media screen and (min-width: 500px) {
  186. .fixforpc-width[data-v-a4566996] {
  187. margin-top: 20px;
  188. border-radius: 4px;
  189. flex: none;
  190. min-width: 380px;
  191. max-width: 50%;
  192. }
  193. }
  194. .uni-popup-message-text[data-v-a4566996] {
  195. font-size: 14px;
  196. padding: 0;
  197. }
  198. .uni-popup__success[data-v-a4566996] {
  199. background-color: #e1f3d8;
  200. }
  201. .uni-popup__success-text[data-v-a4566996] {
  202. color: #67C23A;
  203. }
  204. .uni-popup__warn[data-v-a4566996] {
  205. background-color: #faecd8;
  206. }
  207. .uni-popup__warn-text[data-v-a4566996] {
  208. color: #E6A23C;
  209. }
  210. .uni-popup__error[data-v-a4566996] {
  211. background-color: #fde2e2;
  212. }
  213. .uni-popup__error-text[data-v-a4566996] {
  214. color: #F56C6C;
  215. }
  216. .uni-popup__info[data-v-a4566996] {
  217. background-color: #F2F6FC;
  218. }
  219. .uni-popup__info-text[data-v-a4566996] {
  220. color: #909399;
  221. }
  222. .content[data-v-4978fed5] {
  223. width: 100%;
  224. height: 100vh;
  225. opacity: 1;
  226. background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, rgba(196, 229, 255, 1) 100%);
  227. box-sizing: border-box;
  228. }
  229. .top[data-v-4978fed5] {
  230. width: 100%;
  231. height: 100px;
  232. display: flex;
  233. align-items: center;
  234. justify-content: space-between;
  235. background-size: 100% 100%;
  236. background-repeat: no-repeat;
  237. box-sizing: border-box;
  238. background-color: #fff;
  239. padding: 0px 46px;
  240. }
  241. .top_logo[data-v-4978fed5] {
  242. width: 426px;
  243. height: 68px;
  244. }
  245. .tite[data-v-4978fed5] {
  246. width: 277px;
  247. height: 48px;
  248. }
  249. .time[data-v-4978fed5] {
  250. text-align: right;
  251. }
  252. .time_top[data-v-4978fed5] {
  253. font-size: 17px;
  254. }
  255. .time_bottom[data-v-4978fed5] {
  256. display: flex;
  257. font-size: 17px;
  258. justify-content: space-between;
  259. }
  260. .time_bottom1[data-v-4978fed5] {
  261. display: flex;
  262. }
  263. .time_state[data-v-4978fed5] {
  264. font-size: 17px;
  265. font-weight: 600;
  266. color: rgba(22, 68, 144, 1);
  267. }
  268. .time_state1[data-v-4978fed5] {
  269. font-size: 17px;
  270. font-weight: 600;
  271. color: rgba(217, 22, 22, 1);
  272. }
  273. .parameter[data-v-4978fed5] {
  274. width: 100%;
  275. padding-bottom: 20px;
  276. display: flex;
  277. padding: 20px 20px;
  278. box-sizing: border-box;
  279. }
  280. .parameter_left[data-v-4978fed5] {
  281. width: 262.85px;
  282. height: 630px;
  283. opacity: 1;
  284. border-radius: 24.47px;
  285. background: linear-gradient(180deg, rgba(42, 150, 212, 0.1) 0%, rgba(42, 146, 209, 0) 100%);
  286. border: 2.94px solid rgba(242, 248, 252, 1);
  287. display: flex;
  288. flex-direction: column;
  289. align-items: center;
  290. padding: 0.625rem 0px;
  291. }
  292. .parameter_left1[data-v-4978fed5] {
  293. width: 100%;
  294. height: 158px;
  295. box-sizing: border-box;
  296. display: flex;
  297. flex-direction: column;
  298. justify-content: space-between;
  299. align-items: center;
  300. padding-bottom: 16px;
  301. }
  302. .canvas[data-v-4978fed5] {
  303. width: 180px;
  304. margin: 8px auto auto auto;
  305. }
  306. .parameter_canvas[data-v-4978fed5] {
  307. width: 100%;
  308. display: flex;
  309. justify-content: space-around;
  310. box-sizing: border-box;
  311. box-sizing: border-box;
  312. margin-top: 8px;
  313. }
  314. .parameter_canvas1[data-v-4978fed5] {
  315. margin-left: -20px;
  316. }
  317. .parameter_canvas2[data-v-4978fed5] {
  318. margin-right: -20px;
  319. }
  320. .parameter_leftdian1[data-v-4978fed5] {
  321. width: 97.9px;
  322. height: 97.9px;
  323. opacity: 1;
  324. }
  325. .parameter_lef2[data-v-4978fed5] {
  326. width: 100%;
  327. height: 210px;
  328. display: flex;
  329. justify-content: center;
  330. align-items: center;
  331. background-image: url("../../static/heng.png");
  332. background-size: auto 100%;
  333. background-repeat: no-repeat;
  334. background-position: center center;
  335. margin: 10px 0px;
  336. uni-image[data-v-4978fed5] {
  337. width: 100px;
  338. height: 100px;
  339. margin-top: -10px;
  340. }
  341. }
  342. .parameter_leftche[data-v-4978fed5] {
  343. width: 115.52px;
  344. height: 78.32px;
  345. opacity: 1;
  346. }
  347. .parameter_leftche1[data-v-4978fed5] {
  348. width: 77px;
  349. height: 81px;
  350. opacity: 1;
  351. }
  352. .parameter_leftche2[data-v-4978fed5] {
  353. width: 77px;
  354. height: 62px;
  355. }
  356. .parameter_leftview[data-v-4978fed5] {
  357. font-size: 19.58px;
  358. font-weight: 400;
  359. letter-spacing: 0px;
  360. line-height: 28.35px;
  361. color: rgba(0, 0, 0, 1);
  362. margin-top: 8px;
  363. }
  364. .parameter_right[data-v-4978fed5] {
  365. flex: 1;
  366. margin-left: 10px;
  367. display: flex;
  368. flex-direction: column;
  369. justify-content: space-between;
  370. }
  371. .parameter_righttop[data-v-4978fed5] {
  372. width: 100%;
  373. }
  374. .parameter_1[data-v-4978fed5] {
  375. display: flex;
  376. }
  377. .parameter_2[data-v-4978fed5] {
  378. width: 339.21px;
  379. display: flex;
  380. flex-direction: column;
  381. justify-content: space-between;
  382. margin-right: 16px;
  383. }
  384. .parameter_3[data-v-4978fed5] {
  385. width: 339.21px;
  386. display: flex;
  387. align-items: center;
  388. justify-content: space-between;
  389. padding: 12px 20px;
  390. box-sizing: border-box;
  391. border-radius: 9.79px;
  392. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  393. uni-image[data-v-4978fed5] {
  394. width: 7.83px;
  395. height: 7.83px;
  396. margin-right: 6px;
  397. }
  398. }
  399. .parameter_31[data-v-4978fed5] {
  400. width: 339.21px;
  401. display: flex;
  402. align-items: center;
  403. justify-content: space-between;
  404. padding: 3px 20px;
  405. box-sizing: border-box;
  406. border-radius: 9.79px;
  407. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  408. uni-image[data-v-4978fed5] {
  409. width: 7.83px;
  410. height: 7.83px;
  411. margin-right: 6px;
  412. }
  413. }
  414. .parameter_4[data-v-4978fed5] {
  415. /** 文本1 */
  416. font-size: 23.5px;
  417. font-weight: 700;
  418. color: rgba(38, 38, 38, 1);
  419. display: flex;
  420. align-items: center;
  421. }
  422. .parameter_5[data-v-4978fed5] {
  423. font-size: 24.47px;
  424. font-weight: 700;
  425. color: rgba(217, 22, 22, 1);
  426. }
  427. .parameter_51[data-v-4978fed5] {
  428. font-size: 24.47px;
  429. font-weight: 700;
  430. color: rgba(7, 123, 67, 1);
  431. }
  432. .parameter_SOC[data-v-4978fed5] {
  433. display: flex;
  434. align-items: center;
  435. justify-content: space-around;
  436. width: 195.11px;
  437. height: 130px;
  438. /* opacity: 0.15; */
  439. border-radius: 9.79px;
  440. margin-right: 16px;
  441. background: linear-gradient(180deg, rgba(240, 209, 137, 0.15) 0%, rgba(186, 141, 56, 0.15) 100%);
  442. uni-image[data-v-4978fed5] {
  443. width: 37.2px;
  444. height: 37.2px;
  445. }
  446. }
  447. .parameter_state[data-v-4978fed5] {
  448. display: flex;
  449. align-items: center;
  450. justify-content: space-around;
  451. width: 195.11px;
  452. height: 130px;
  453. /* opacity: 0.15; */
  454. border-radius: 9.79px;
  455. background: linear-gradient(180deg, rgba(93, 149, 245, 0.15) 0%, rgba(41, 71, 204, 0.15) 100%);
  456. uni-image[data-v-4978fed5] {
  457. width: 37.2px;
  458. height: 37.2px;
  459. }
  460. }
  461. .parameter_Battery[data-v-4978fed5] {
  462. display: flex;
  463. align-items: center;
  464. justify-content: space-around;
  465. width: 195.11px;
  466. height: 130px;
  467. /* opacity: 0.15; */
  468. margin-right: 16px;
  469. border-radius: 9.79px;
  470. background: linear-gradient(180deg, rgba(133, 242, 133, 0.15)0%, rgba(82, 209, 75, 0.15)100%);
  471. uni-image[data-v-4978fed5] {
  472. width: 37.2px;
  473. height: 37.2px;
  474. }
  475. }
  476. .parameter_SOCright[data-v-4978fed5] {
  477. display: flex;
  478. flex-direction: column;
  479. }
  480. .parameter_SOCright1[data-v-4978fed5] {
  481. font-size: 23.5px;
  482. font-weight: 700;
  483. letter-spacing: 0px;
  484. line-height: 32.24px;
  485. color: rgba(38, 38, 38, 1);
  486. text-align: right;
  487. }
  488. .parameter_SOCright2[data-v-4978fed5] {
  489. font-size: 29.37px;
  490. font-weight: 700;
  491. color: rgba(186, 141, 56, 1);
  492. }
  493. .parameter_Batterystate[data-v-4978fed5] {
  494. font-size: 23.5px;
  495. font-weight: 500;
  496. color: rgba(38, 38, 38, 1);
  497. text-align: right;
  498. }
  499. .parameter_tap[data-v-4978fed5] {
  500. width: 100%;
  501. display: flex;
  502. margin-top: 18px;
  503. }
  504. .parameter_tap1[data-v-4978fed5] {
  505. flex: 1;
  506. height: 55.8px;
  507. opacity: 1;
  508. background: linear-gradient(180deg, rgba(30, 131, 189, 1) 0%, rgba(69, 168, 230, 0.92) 100%);
  509. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  510. display: flex;
  511. align-items: center;
  512. justify-content: center;
  513. font-size: 23.5px;
  514. font-weight: 500;
  515. color: rgba(255, 255, 255, 1);
  516. }
  517. .parameter_tap2[data-v-4978fed5] {
  518. flex: 1;
  519. height: 55.8px;
  520. opacity: 1;
  521. background: rgba(242, 242, 242, 1);
  522. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  523. display: flex;
  524. align-items: center;
  525. justify-content: center;
  526. font-size: 23.5px;
  527. font-weight: 500;
  528. }
  529. .parameter_zheng[data-v-4978fed5] {
  530. width: 100%;
  531. height: 313px;
  532. background-image: url("../../static/z16.png");
  533. background-size: 100% 100%;
  534. margin-top: 10px;
  535. padding: 20px 0px;
  536. display: flex;
  537. }
  538. .parameter_zheng1[data-v-4978fed5] {
  539. width: 387px;
  540. height: 100%;
  541. border-right: 0.49px solid rgba(0, 0, 0, 1);
  542. display: flex;
  543. flex-direction: column;
  544. justify-content: space-between;
  545. }
  546. .parameter_zheng11[data-v-4978fed5] {
  547. display: flex;
  548. padding: 0px 20px;
  549. justify-content: space-between;
  550. }
  551. .parameter_zheng12[data-v-4978fed5] {
  552. font-size: 23.5px;
  553. font-weight: 400;
  554. color: rgba(0, 0, 0, 1);
  555. }
  556. .parameter_zheng13[data-v-4978fed5] {
  557. font-size: 29.37px;
  558. font-weight: 700;
  559. color: rgba(20, 105, 201, 1);
  560. }
  561. .parameter_zheng14[data-v-4978fed5] {
  562. font-size: 23.5px;
  563. font-weight: 400;
  564. color: rgba(0, 0, 0, 1);
  565. }
  566. .parameter_zheng2[data-v-4978fed5] {
  567. width: 387px;
  568. height: 100%;
  569. border-right: 0.49px solid rgba(0, 0, 0, 1);
  570. display: flex;
  571. flex-direction: column;
  572. justify-content: space-between;
  573. }
  574. .parameter_zheng3[data-v-4978fed5] {
  575. flex: 1;
  576. height: 100%;
  577. display: flex;
  578. flex-direction: column;
  579. align-items: center;
  580. justify-content: space-between;
  581. }
  582. .parameter_zheng31[data-v-4978fed5] {
  583. width: 75px;
  584. height: 75px;
  585. background-image: url("../../static/y4.png");
  586. background-size: 100% 100%;
  587. display: flex;
  588. align-items: center;
  589. justify-content: center;
  590. }
  591. .parameter_zheng32[data-v-4978fed5] {
  592. width: 66px;
  593. height: 66px;
  594. background-image: url("../../static/y1.png");
  595. background-size: 100% 100%;
  596. display: flex;
  597. align-items: center;
  598. justify-content: center;
  599. font-size: 19.58px;
  600. font-weight: 700;
  601. color: rgba(255, 255, 255, 1);
  602. }
  603. .parameter_zheng32ccc[data-v-4978fed5] {
  604. width: 66px;
  605. height: 66px;
  606. /* background-image: url("../../static/y1.png"); */
  607. background-color: #cccccc;
  608. background-size: 100% 100%;
  609. display: flex;
  610. align-items: center;
  611. justify-content: center;
  612. font-size: 19.58px;
  613. font-weight: 700;
  614. color: rgba(255, 255, 255, 1);
  615. border-radius: 100%;
  616. }
  617. .parameter_zheng33[data-v-4978fed5] {
  618. width: 66px;
  619. height: 66px;
  620. background-image: url("../../static/y6.png");
  621. background-size: 100% 100%;
  622. display: flex;
  623. align-items: center;
  624. justify-content: center;
  625. font-size: 19px;
  626. font-weight: 700;
  627. color: rgba(255, 255, 255, 1);
  628. }
  629. .parameter_zheng34[data-v-4978fed5] {
  630. width: 66px;
  631. height: 66px;
  632. background-image: url("../../static/y8.png");
  633. background-size: 100% 100%;
  634. font-size: 18px;
  635. font-weight: 700;
  636. color: rgba(255, 255, 255, 1);
  637. display: flex;
  638. flex-direction: column;
  639. align-items: center;
  640. justify-content: center;
  641. }
  642. .parameter_home[data-v-4978fed5] {
  643. width: 100%;
  644. display: flex;
  645. margin-top: 0px;
  646. justify-content: space-between;
  647. }
  648. .parameter_home1[data-v-4978fed5] {
  649. display: flex;
  650. align-items: center;
  651. uni-image[data-v-4978fed5] {
  652. width: 32.8px;
  653. height: 32.31px;
  654. margin-right: 10px;
  655. }
  656. }
  657. .parameter_hometext[data-v-4978fed5] {
  658. font-size: 19.58px;
  659. font-weight: 400;
  660. color: rgba(0, 0, 0, 1);
  661. }
  662. .parameter_home2[data-v-4978fed5] {
  663. width: 636.33px;
  664. height: 39.16px;
  665. opacity: 0.8;
  666. border-radius: 0.98px;
  667. background: rgba(242, 242, 242, 1);
  668. border: 0.49px solid rgba(161, 161, 161, 1);
  669. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  670. display: flex;
  671. align-items: center;
  672. padding: 0px 10px;
  673. box-sizing: border-box;
  674. uni-image[data-v-4978fed5] {
  675. width: 26.92px;
  676. height: 29.86px;
  677. }
  678. }
  679. .parameter_home3[data-v-4978fed5] {
  680. font-size: 17.62px;
  681. font-weight: 400;
  682. color: rgba(0, 0, 0, 1);
  683. margin-left: 10px;
  684. }
  685. .uni-dialog-title-text[data-v-4978fed5] {
  686. font-size: 70.89px !important;
  687. font-weight: 500;
  688. color: rgba(5, 5, 5, 1);
  689. }
  690. .parameter_box[data-v-4978fed5] {
  691. height: 100%;
  692. display: flex;
  693. }
  694. .parameter_zheng10[data-v-4978fed5] {
  695. width: 687px;
  696. height: 100%;
  697. border-right: 0.49px solid rgba(0, 0, 0, 1);
  698. display: flex;
  699. flex-direction: column;
  700. justify-content: space-around;
  701. }