移动储能车V1版本
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

index.css 18KB

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