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

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