data.wxss 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. /* subpages/data/data.wxss */
  2. page {
  3. background-repeat: no-repeat;
  4. background-size: 100% 100%;
  5. -moz-background-size: 100% 100%;
  6. padding-bottom: 130px;
  7. background-color: #F8FAFF;
  8. }
  9. .container {
  10. height: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. /* border: 2rpx solid #e0e0e0; */
  15. /* 设置圆角弧度 */
  16. border-radius: 20rpx;
  17. /* 可以根据需要调整圆角的大小 */
  18. /* 设置阴影效果 */
  19. box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.1);
  20. /* 阴影的偏移量、模糊半径和颜色 */
  21. }
  22. .calendar {
  23. width: 750rpx;
  24. }
  25. .header {
  26. font-size: large;
  27. color: #605eac;
  28. }
  29. .board {
  30. background-color: #ffffff;
  31. }
  32. .value {
  33. width: 350rpx;
  34. height: 350rpx;
  35. border: 10rpx solid #62c4d9;
  36. border-radius: 50%;
  37. margin-top: 30rpx;
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. justify-content: center;
  42. }
  43. .title {
  44. font-size: 28rpx;
  45. color: #605eac;
  46. }
  47. .num {
  48. font-size: 100rpx;
  49. margin: 20rpx;
  50. font-weight: 800;
  51. color: #fff;
  52. }
  53. .tag {
  54. color: #ffd700;
  55. }
  56. .list {
  57. height: 15rpx;
  58. font-size: 25rpx;
  59. }
  60. .list .content {
  61. font-size: 25rpx;
  62. }
  63. .canvas0 {
  64. display: flex;
  65. flex-direction: column;
  66. width: 100%;
  67. height: 620rpx;
  68. background-color: #ffffff;
  69. /* 这里设置你想要的背景色 */
  70. }
  71. .canvas {
  72. display: flex;
  73. flex-direction: column;
  74. width: 100%;
  75. height: 420rpx;
  76. }
  77. .canvas1 {
  78. display: flex;
  79. flex-direction: column;
  80. width: 100%;
  81. height: 620rpx;
  82. background-color: #ffffff;
  83. /* 这里设置你想要的背景色 */
  84. }
  85. .canvas2 {
  86. display: flex;
  87. flex-direction: column;
  88. width: 100%;
  89. height: 620rpx;
  90. background-color: #ffffff;
  91. /* 这里设置你想要的背景色 */
  92. }
  93. .canvas3 {
  94. display: flex;
  95. flex-direction: column;
  96. width: 100%;
  97. height: 620rpx;
  98. background-color: #ffffff;
  99. /* 这里设置你想要的背景色 */
  100. }
  101. .canvas4 {
  102. display: flex;
  103. flex-direction: column;
  104. width: 100%;
  105. height: 720rpx;
  106. background-color: #ffffff;
  107. /* 这里设置你想要的背景色 */
  108. }
  109. .canvas5 {
  110. display: flex;
  111. flex-direction: column;
  112. width: 100%;
  113. height: 620rpx;
  114. /* background-color: #ffffff; */
  115. }
  116. .big-title_c2-box {
  117. margin-top: 30rpx;
  118. width: calc(100% - 60rpx);
  119. margin-bottom: 28rpx;
  120. position: relative;
  121. }
  122. .big-title_c2 {
  123. font-size: 32rpx;
  124. color: #3E3D44;
  125. }
  126. .big-title_c2-line {
  127. position: absolute;
  128. left: 0;
  129. bottom: 0;
  130. width: 288rpx;
  131. height: 12rpx;
  132. background: linear-gradient(90deg, #8D32F1 0%, rgba(255, 255, 255, 0) 100%);
  133. }
  134. ec-canvas {
  135. width: 100%;
  136. height: 100%;
  137. }
  138. /* canvas {
  139. margin-bottom: 40rpx;
  140. } */
  141. .percentage {
  142. font-size: 36rpx;
  143. text-align: center;
  144. /* margin-left: 150rpx;
  145. margin-top:5rpx */
  146. }
  147. .centered {
  148. display: flex;
  149. flex-direction: column;
  150. justify-content: center;
  151. /* 垂直居中 */
  152. align-items: center;
  153. /* 水平居中,但在这里不是必需的,因为text-align会处理水平居中 */
  154. }
  155. .centered-text {
  156. text-align: center;
  157. /* 水平居中 */
  158. color: '#62c4d9';
  159. font-size: 60rpx;
  160. font-weight: 700;
  161. /* 这里可以添加其他文本样式 */
  162. }
  163. .container1 {
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. }
  168. .gradient-button {
  169. width: 600rpx;
  170. height: 80rpx;
  171. border: none;
  172. border-radius: 10rpx;
  173. background: linear-gradient(to right, #6699ff, #625eff);
  174. color: #fff;
  175. font-size: 32rpx;
  176. text-align: center;
  177. line-height: 80rpx;
  178. box-shadow: 0 2rpx 5rpx rgba(0, 0, 0, 0.1);
  179. transition: background 0.3s ease;
  180. /* 添加过渡效果 */
  181. margin-top: 10rpx;
  182. }
  183. .gradient-button-clicked {
  184. background: linear-gradient(to right, #ff9966, #ff5e62);
  185. /* 点击后的背景渐变 */
  186. }
  187. .air-conditioner-controls {
  188. display: flex;
  189. justify-content: space-between;
  190. align-items: center;
  191. padding: 20rpx;
  192. }
  193. .control-button {
  194. width: 160rpx;
  195. height: 160rpx;
  196. border-radius: 50%;
  197. display: flex;
  198. flex-direction: column;
  199. align-items: center;
  200. justify-content: center;
  201. background-color: #fff;
  202. box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  203. margin: 0 10rpx;
  204. }
  205. .control-icon {
  206. width: 80rpx;
  207. height: 80rpx;
  208. }
  209. .control-text {
  210. font-size: 24rpx;
  211. color: #333;
  212. margin-top: 10rpx;
  213. }
  214. .image-container {
  215. position: relative;
  216. display: flex;
  217. flex-direction: column;
  218. align-items: center;
  219. justify-content: center;
  220. width: 100%;
  221. height: 620rpx;
  222. /* 根据实际情况设置容器高度 */
  223. overflow: hidden;
  224. }
  225. .background-image {
  226. width: 100%;
  227. height: 100%;
  228. margin-top: 38rpx;
  229. }
  230. .header {
  231. position: absolute;
  232. top: 20rpx;
  233. /* 距离顶部的距离,根据需要调整 */
  234. left: 20rpx;
  235. /* 距离左边的距离,确保按钮在图片左边 */
  236. display: flex;
  237. flex-direction: column;
  238. align-items: flex-start;
  239. /* 垂直对齐在顶部 */
  240. }
  241. .picker-container {
  242. width: 100%;
  243. /* 根据需要调整 */
  244. display: flex;
  245. align-items: center;
  246. /* 垂直居中 */
  247. justify-content: space-between;
  248. /* 水平两端对齐,你也可以根据需要调整 */
  249. padding: 20rpx;
  250. /* 容器内边距 */
  251. background-color: rgba(255, 255, 255, 0.8);
  252. /* 半透明背景色,可选 */
  253. position: relative;
  254. /* 如果需要相对于其他元素定位 */
  255. z-index: 10;
  256. /* 确保在图片上方 */
  257. }
  258. .picker-placeholder {
  259. line-height: 60rpx;
  260. /* 根据需要调整 */
  261. text-align: center;
  262. white-space: nowrap;
  263. color: #ffffff;
  264. /* 占位符颜色 */
  265. z-index: 10;
  266. margin-left: 20rpx;
  267. border-radius: 20rpx;
  268. font-size: 24rpx;
  269. }
  270. .picker-row {
  271. display: flex;
  272. left: 0;
  273. top: 0;
  274. right: 0;
  275. padding-top: 20rpx;
  276. padding-bottom: 20rpx;
  277. z-index: 9999;
  278. background: #F8FAFF;
  279. position: sticky;
  280. flex-direction: row;
  281. align-items: center;
  282. width: 100%;
  283. box-shadow: 0rpx 16rpx 40rpx 0rpx #E8E8E8;
  284. }
  285. .picker {
  286. flex: 1;
  287. /* 平分空间 */
  288. background-color: transparent;
  289. /* 移除默认背景 */
  290. border: none;
  291. /* 移除默认边框 */
  292. /* border-radius: 5%; */
  293. border-radius: 20rpx;
  294. background-color: rgba(255, 255, 255, 1);
  295. width: 40%;
  296. }
  297. .picker-placeholder {
  298. text-align: center;
  299. line-height: 64rpx;
  300. color: #666666;
  301. font-size: 24rpx;
  302. font-weight: 400;
  303. }
  304. .picker-placeholder1 {
  305. text-align: center;
  306. line-height: 64rpx;
  307. color: #666666;
  308. margin-left: 15rpx;
  309. font-size: 24rpx;
  310. }
  311. .picker-placeholder2 {
  312. text-align: center;
  313. line-height: 64rpx;
  314. color: #666666;
  315. margin-right: 15rpx;
  316. font-size: 24rpx;
  317. }
  318. .button-group {
  319. position: absolute;
  320. top: 80rpx;
  321. left: 10rpx;
  322. display: flex;
  323. flex-direction: column;
  324. z-index: 999;
  325. }
  326. .select-group {
  327. position: absolute;
  328. top: 80rpx;
  329. right: 10rpx;
  330. width: 160rpx;
  331. height: 50rpx;
  332. display: flex;
  333. flex-direction: column;
  334. z-index: 999;
  335. }
  336. .small-button {
  337. width: 160rpx;
  338. height: 60rpx;
  339. font-size: 25rpx;
  340. margin-top: 10rpx;
  341. background-color: #a873b6;
  342. /* 浅紫色示例,你可以根据需要选择具体的颜色 */
  343. background-color: rgba(255, 255, 255, 1);
  344. color: white;
  345. border-radius: 4px;
  346. /* 设置圆角 */
  347. }
  348. .small-button:last-child {
  349. margin-bottom: 0;
  350. /* 最后一个按钮不需要下边距 */
  351. }
  352. .centered-text {
  353. position: absolute;
  354. top: 476rpx;
  355. /* 垂直居中 */
  356. left: 0;
  357. right: 0;
  358. transform: translateY(-50%);
  359. /* 垂直居中 */
  360. text-align: center;
  361. /* 水平居中 */
  362. z-index: 999;
  363. }
  364. .centered-text_1 {
  365. position: absolute;
  366. top: 130rpx;
  367. /* 垂直居中 */
  368. left: 0;
  369. right: 0;
  370. transform: translateY(-50%);
  371. /* 垂直居中 */
  372. text-align: center;
  373. /* 水平居中 */
  374. }
  375. .text-line {
  376. display: block;
  377. margin-bottom: 20rpx;
  378. /* 行间距 */
  379. }
  380. .text-line-1 {
  381. color: white;
  382. /* 第一行文字颜色 */
  383. font-size: 40rpx;
  384. /* 第一行文字大小 */
  385. }
  386. .text-line-2 {
  387. color: #99ff62;
  388. /* 第二行文字颜色 */
  389. font-size: 120rpx;
  390. /* 第二行文字大小 */
  391. }
  392. .text-line-3 {
  393. color: #3E3D44;
  394. font-size: 32rpx;
  395. margin-left: 18rpx;
  396. font-weight: 600;
  397. }
  398. .text-line:last-child {
  399. margin-bottom: 0;
  400. /* 最后一行不需要下边距 */
  401. }
  402. .container_1 {
  403. display: flex;
  404. justify-content: space-between;
  405. /* 根据需要调整间距 */
  406. align-items: center;
  407. /* 垂直居中 */
  408. padding: 20rpx;
  409. /* 外部间距 */
  410. }
  411. .item_c1 {
  412. display: flex;
  413. align-items: center;
  414. /* 垂直居中 */
  415. margin: 0 20rpx;
  416. /* 左右间距 */
  417. }
  418. .image_c1 {
  419. width: 100rpx;
  420. /* 图片宽度 */
  421. height: 100rpx;
  422. /* 图片高度 */
  423. margin-right: 20rpx;
  424. /* 图片与文字的间距 */
  425. }
  426. .text-container_c1 {
  427. flex: 1;
  428. }
  429. .text-line_c1 {
  430. /* 根据需要设置文本样式 */
  431. font-size: 28rpx;
  432. line-height: 1.5;
  433. margin-bottom: 10rpx;
  434. /* 行间距 */
  435. color: white;
  436. }
  437. /* 最后一行文字不需要下外边距 */
  438. .text-container_c1 .text-line_c1:last-child {
  439. margin-bottom: 0;
  440. }
  441. .title-container_2 {
  442. display: flex;
  443. justify-content: space-between;
  444. align-items: center;
  445. margin-right: 230rpx;
  446. padding: 10rpx;
  447. }
  448. .container_3 {
  449. display: flex;
  450. flex-direction: column;
  451. height: 100%;
  452. /* 或者你需要的任意高度 */
  453. width: 95%;
  454. }
  455. .row_c3 {
  456. display: flex;
  457. justify-content: space-between;
  458. /* 使两个cell之间有一定间距 */
  459. align-items: flex-start;
  460. /* 顶端对齐 */
  461. padding: 10rpx 0;
  462. /* 上下内边距 */
  463. }
  464. .cell_c3 {
  465. display: flex;
  466. align-items: flex-start;
  467. position: relative;
  468. /* 顶端对齐 */
  469. flex: 1;
  470. /* 使两个cell等宽 */
  471. margin-right: 10rpx;
  472. /* 右边距,最后一个cell可以去掉或使用 :nth-last-child() 选择器去除 */
  473. border-radius: 5%;
  474. width: 80%;
  475. padding-left: 10rpx;
  476. margin-left: 10rpx;
  477. height: 150rpx;
  478. background-color: rgba(255, 255, 255, 1);
  479. }
  480. .image_c5 {
  481. position: absolute;
  482. right: 0;
  483. bottom: 0;
  484. width: 116rpx;
  485. }
  486. .cell_c3:nth-last-child(1) {
  487. margin-right: 0;
  488. /* 移除最后一个cell的右边距 */
  489. }
  490. .cell-image_c3 {
  491. width: 50rpx;
  492. /* 图片宽度,可以根据需要调整 */
  493. height: 50rpx;
  494. /* 图片高度,可以根据需要调整 */
  495. margin-right: 10rpx;
  496. /* 图片与文字的间距 */
  497. }
  498. .cell-text_c3 {
  499. flex: 1;
  500. margin-top: 14rpx;
  501. display: flex;
  502. flex-direction: column;
  503. /* 使文本部分占据剩余空间 */
  504. }
  505. .text-line_c3 {
  506. white-space: nowrap;
  507. /* 防止文本自动换行,但这里不需要,因为我们想要两行显示 */
  508. overflow: hidden;
  509. /* 如果需要,可以隐藏溢出内容 */
  510. text-overflow: ellipsis;
  511. /* 如果需要,可以用省略号表示溢出 */
  512. border-radius: 5%;
  513. color: rgba(0, 170, 255, 0.8);
  514. font-size: 24rpx;
  515. /* 可以添加其他文本样式,如字体大小、颜色等 */
  516. }
  517. /* 如果需要固定文本行数,可以为 .text-line 添加特定的高度和行高 */
  518. .text-line_c3:nth-child(1) {
  519. /* 第一行文本样式(如果需要) */
  520. color: #6C6970;
  521. }
  522. .text-line_c3:nth-child(2) {
  523. /* 第二行文本样式(如果需要) */
  524. color: rgba(255, 255, 255, 0.6);
  525. }
  526. .text-line_c3_1 {
  527. white-space: nowrap;
  528. /* 防止文本自动换行,但这里不需要,因为我们想要两行显示 */
  529. overflow: hidden;
  530. /* 如果需要,可以隐藏溢出内容 */
  531. text-overflow: ellipsis;
  532. /* 如果需要,可以用省略号表示溢出 */
  533. border-radius: 5%;
  534. background: linear-gradient(to right, #000 5%, #62c4d9 100%);
  535. /* 可以添加其他文本样式,如字体大小、颜色等 */
  536. }
  537. /* 如果需要固定文本行数,可以为 .text-line 添加特定的高度和行高 */
  538. .text-line_c3_1:nth-child(1) {
  539. /* 第一行文本样式(如果需要) */
  540. color: rgba(255, 255, 255, 0.8);
  541. }
  542. .text-line_c3_1:nth-child(2) {
  543. /* 第二行文本样式(如果需要) */
  544. color: rgba(255, 255, 255, 0.6);
  545. }
  546. .text-line_c31 {
  547. white-space: nowrap;
  548. /* 防止文本自动换行,但这里不需要,因为我们想要两行显示 */
  549. overflow: hidden;
  550. /* 如果需要,可以隐藏溢出内容 */
  551. text-overflow: ellipsis;
  552. font-weight: 550;
  553. font-size: 32rpx;
  554. }
  555. .text-line_c31-units {
  556. font-size: 24rpx;
  557. font-weight: 400;
  558. }
  559. .text-line_c31:nth-child(1) {
  560. color: #3E3D44;
  561. }
  562. .text-line_c31:nth-child(2) {
  563. /* 第二行文本样式(如果需要) */
  564. color: white;
  565. }
  566. .container_4 {
  567. display: flex;
  568. justify-content: space-between;
  569. align-items: flex-start;
  570. width: 95%;
  571. margin-top: 10rpx;
  572. /* padding: 10px; */
  573. }
  574. .left-panel_c4 {
  575. position: relative;
  576. flex: 1;
  577. height: 230rpx;
  578. background: linear-gradient(345deg, #C8F6EA 23%, #FFFFFF 68%);
  579. margin-left: 10rpx;
  580. border-radius: 5%;
  581. }
  582. .left-panel-header_c4 {
  583. /* 标题样式 */
  584. font-weight: bold;
  585. margin-bottom: 20rpx;
  586. /* 与内容的间距 */
  587. color: white;
  588. }
  589. .left-panel-content_c4 {
  590. /* 内容样式 */
  591. color: white;
  592. margin-bottom: 100rpx;
  593. padding: 20rpx;
  594. }
  595. .right-panel_c4 {
  596. flex: 1;
  597. /* 右边面板占据剩余空间的一半 */
  598. display: flex;
  599. flex-direction: column;
  600. justify-content: space-between;
  601. /* 垂直分布三个cell */
  602. height: 180rpx;
  603. padding: 25rpx 0;
  604. background: white;
  605. /* 与左边面板等高 */
  606. margin-left: 15rpx;
  607. border-radius: 20rpx;
  608. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  609. }
  610. .cell_c4 {
  611. display: flex;
  612. /* 使容器成为弹性容器,支持灵活的布局方式 */
  613. flex: auto;
  614. /* 自动填充容器,根据容器的大小自动调整项目的大小 */
  615. align-items: center;
  616. /* 在交叉轴(通常是垂直方向)上居中对齐项目 */
  617. /* 顶端对齐 */
  618. justify-content: flex-start;
  619. /* 在主轴(通常是水平方向)上从起点开始对齐项目 */
  620. /* 子元素靠右对齐 */
  621. /* 上下内边距 */
  622. /* margin-bottom: 10rpx; */
  623. /* background-color: rgba(255, 255, 255, 1); */
  624. /* border-radius: 5%; */
  625. }
  626. .cell-image_c4 {
  627. width: 60rpx;
  628. /* 图片宽度 */
  629. height: 60rpx;
  630. /* 图片高度 */
  631. margin-right: 10rpx;
  632. }
  633. .cell-text_c4 {
  634. flex: 1;
  635. margin-right: 30rpx;
  636. /* 文本部分占据剩余空间 */
  637. }
  638. .text-line_c4 {
  639. /* 文本行样式 */
  640. white-space: nowrap;
  641. /* 防止文本自动换行,但这里不需要 */
  642. overflow: hidden;
  643. /* 如果需要,可以隐藏溢出内容 */
  644. text-overflow: ellipsis;
  645. /* 如果需要,可以用省略号表示溢出 */
  646. color: #6C6970;
  647. }
  648. /* 如果需要固定文本为两行显示,可以为 .text-line 设置特定的 height 和 line-height */
  649. .text-line_c4 {
  650. height: 48rpx;
  651. font-size: 24rpx;
  652. /* 假设每行文本高度为24px */
  653. line-height: 48rpx;
  654. /* 行高与文本高度相同 */
  655. /* 还可以添加其他文本样式,如字体大小、颜色等 */
  656. }
  657. .image_c4 {
  658. position: absolute;
  659. right: 0;
  660. bottom: 0;
  661. width: 138rpx;
  662. height: 120rpx;
  663. /* 确保图片填充整个容器并保持其宽高比 */
  664. }
  665. .tz-title {
  666. position: absolute;
  667. top: 24rpx;
  668. left: 20rpx;
  669. font-weight: 400;
  670. font-size: 28rpx;
  671. color: #0BC3AA;
  672. }
  673. .tz-desc {
  674. position: absolute;
  675. top: 68rpx;
  676. left: 20rpx;
  677. right: 20rpx;
  678. font-weight: 400;
  679. font-size: 20rpx;
  680. color: #888888;
  681. }
  682. .tz-btn {
  683. position: absolute;
  684. bottom: 30rpx;
  685. left: 20rpx;
  686. width: 156rpx;
  687. height: 56rpx;
  688. background: linear-gradient(315deg, #0ABCA4 0%, rgba(11, 195, 170, 0.8) 100%);
  689. border-radius: 292rpx 292rpx 292rpx 292rpx;
  690. border: 2rpx solid #FFFFFF;
  691. font-weight: 400;
  692. font-size: 24rpx;
  693. color: #FFFFFF;
  694. text-align: center;
  695. line-height: 56rpx;
  696. }
  697. .tz-btn:active {
  698. opacity: 0.7;
  699. }
  700. .text-container_c4 {
  701. position: absolute;
  702. /* 绝对定位使得文字可以位于图片之上 */
  703. top: 50%;
  704. /* 垂直居中 */
  705. left: 50%;
  706. /* 水平居中 */
  707. width: calc(100% - 60rpx);
  708. transform: translate(-50%, -50%);
  709. /* 调整位置以完全居中 */
  710. color: white;
  711. /* 或者其他你需要的颜色 */
  712. }
  713. .text-container_c4_top_left {
  714. position: absolute;
  715. top: 0;
  716. left: 0;
  717. width: 146rpx;
  718. font-size: 24rpx;
  719. color: white;
  720. height: 44rpx;
  721. display: flex;
  722. flex-direction: column;
  723. justify-content: center;
  724. align-items: center;
  725. color: #FFFFFF;
  726. text-align: center;
  727. border-radius: 16rpx 0rpx 16rpx 0rpx;
  728. background: linear-gradient(315deg, #A89EFF 0%, #AB81FF 100%);
  729. }
  730. .text_c4 {
  731. color: #3C3796;
  732. font-size: 24rpx;
  733. text-align: start;
  734. line-height: 40rpx;
  735. font-weight: 400;
  736. }
  737. .text_c4_left_top {
  738. color: #ffffff;
  739. font-size: 24rpx;
  740. }
  741. .text_c4_1 {
  742. font-size: 34rpx;
  743. color: #6E6AB2;
  744. font-weight: 700;
  745. }
  746. .text-line_c41 {
  747. /* 文本行样式 */
  748. white-space: nowrap;
  749. /* 防止文本自动换行,但这里不需要 */
  750. overflow: hidden;
  751. /* 如果需要,可以隐藏溢出内容 */
  752. text-overflow: ellipsis;
  753. /* 如果需要,可以用省略号表示溢出 */
  754. color: #000;
  755. font-size: 32rpx;
  756. }
  757. /* 如果需要固定文本为两行显示,可以为 .text-line 设置特定的 height 和 line-height */
  758. .text-line_c41 {
  759. height: 48rpx;
  760. /* 假设每行文本高度为24px */
  761. line-height: 48rpx;
  762. /* 行高与文本高度相同 */
  763. /* 还可以添加其他文本样式,如字体大小、颜色等 */
  764. }
  765. .container_5 {
  766. display: flex;
  767. flex-direction: column;
  768. align-items: flex-start;
  769. /* padding: 40rpx; */
  770. width: 95%;
  771. margin-top: 30rpx;
  772. background-color: rgba(255, 255, 255, 1);
  773. border-radius: 20rpx;
  774. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  775. }
  776. .header_c5 {
  777. display: flex;
  778. justify-content: flex-start;
  779. align-items: center;
  780. margin: 20rpx 0rpx 20rpx 20rpx;
  781. width: 92%;
  782. }
  783. .header-image_c5 {
  784. width: 72rpx;
  785. height: 72rpx;
  786. margin-right: 20rpx;
  787. }
  788. .header-image_comma {
  789. width: 34rpx;
  790. /* 根据需要调整图片大小 */
  791. height: 34rpx;
  792. /* 根据需要调整图片大小 */
  793. margin-left: 10rpx;
  794. }
  795. .header-title_c5 {
  796. font-size: 32rpx;
  797. font-weight: 600;
  798. color: #3E3D44;
  799. }
  800. .data-row_c5 {
  801. display: flex;
  802. justify-content: space-between;
  803. align-items: center;
  804. margin-left: 20rpx;
  805. width: calc(100% - 100rpx);
  806. background-color: rgba(221, 222, 255, 0.2);
  807. border-top-left-radius: 20rpx;
  808. border-top-right-radius: 20rpx;
  809. padding: 15rpx 30rpx 0 30rpx;
  810. }
  811. .data-row_c5_down {
  812. display: flex;
  813. justify-content: space-between;
  814. align-items: center;
  815. /* margin-bottom: 10rpx; */
  816. margin-left: 20rpx;
  817. width: calc(100% - 100rpx);
  818. background-color: rgba(221, 222, 255, 0.2);
  819. border-bottom-left-radius: 20rpx;
  820. border-bottom-right-radius: 20rpx;
  821. padding: 0 30rpx 15rpx 30rpx;
  822. }
  823. .data-item_c5 {
  824. display: flex;
  825. align-items: center;
  826. }
  827. .data-item_c5.left_c5 {
  828. display: flex;
  829. justify-content: flex-start;
  830. /* 子元素靠右对齐 */
  831. align-items: center;
  832. /* 如果需要垂直居中对齐 */
  833. padding: 10rpx 5rpx;
  834. /* 上下内边距 */
  835. margin-bottom: 2rpx;
  836. height: 52rpx;
  837. /* background-color:rgba(255, 255, 255, 1); */
  838. border-radius: 5%;
  839. }
  840. .data-item_c5 .right_c5 {
  841. display: flex;
  842. justify-content: flex-end;
  843. /* 子元素靠右对齐 */
  844. align-items: center;
  845. /* 如果需要垂直居中对齐 */
  846. padding: 15rpx 5rpx;
  847. /* 上下内边距 */
  848. margin-bottom: 10rpx;
  849. height: 62rpx;
  850. /* background-color:rgba(255, 255, 255, 1); */
  851. border-radius: 5%;
  852. }
  853. .data-image_c5 {
  854. width: 45rpx;
  855. /* 根据需要调整图片大小 */
  856. height: 45rpx;
  857. /* 根据需要调整图片大小 */
  858. margin-right: 8rpx;
  859. /* 图片和文本之间的间距 */
  860. }
  861. .data-text_c5 {
  862. font-size: 28rpx;
  863. color: #3E3D44;
  864. }
  865. .dot_c51 {
  866. width: 16rpx;
  867. height: 16rpx;
  868. background-color: #6086EF;
  869. border-radius: 50%;
  870. display: inline-block;
  871. margin-right: 10rpx;
  872. }
  873. .data-text_c51 {
  874. /* 文本样式可以根据需要调整 */
  875. margin-left: 10rpx;
  876. font-size: 20rpx;
  877. color: #6186EF;
  878. background: #E6EDFF;
  879. padding: 1rpx 7rpx;
  880. border-radius: 4rpx;
  881. }
  882. .dot_c51_1 {
  883. width: 16rpx;
  884. height: 16rpx;
  885. background-color: #60C38D;
  886. border-radius: 50%;
  887. display: inline-block;
  888. margin-right: 10rpx;
  889. }
  890. .data-text_c51_1 {
  891. /* 文本样式可以根据需要调整 */
  892. margin-left: 10rpx;
  893. font-size: 20rpx;
  894. color: #60C38D;
  895. background: #DEFAEB;
  896. padding: 1rpx 7rpx;
  897. border-radius: 4rpx;
  898. }
  899. .separator_c5 {
  900. width: 100%;
  901. height: 2rpx;
  902. background-color: #fff;
  903. /* 分割线的颜色为白色 */
  904. margin-bottom: 20rpx;
  905. }
  906. .container_6 {
  907. display: flex;
  908. flex-direction: column;
  909. align-items: flex-start;
  910. width: 95%;
  911. padding-bottom: 30rpx;
  912. background: white;
  913. margin-top: 30rpx;
  914. border-radius: 20rpx;
  915. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  916. }
  917. .title-row_c6 {
  918. display: flex;
  919. justify-content: space-between;
  920. align-items: center;
  921. margin: 20rpx 0rpx 20rpx 20rpx;
  922. width: 92%;
  923. }
  924. .title-left_c6 {
  925. display: flex;
  926. justify-content: flex-start;
  927. /* 子元素靠右对齐 */
  928. align-items: center;
  929. /* 如果需要垂直居中对齐 */
  930. }
  931. .title-right_c6 {
  932. display: flex;
  933. justify-content: flex-end;
  934. /* 子元素靠右对齐 */
  935. align-items: center;
  936. /* 如果需要垂直居中对齐 */
  937. }
  938. .title-image_c6 {
  939. width: 72rpx;
  940. height: 72rpx;
  941. margin-right: 20rpx;
  942. }
  943. .title-text_c6,
  944. .title-text-right_c6 {
  945. font-size: 32rpx;
  946. font-weight: 600;
  947. color: #3E3D44;
  948. }
  949. .title-text-right_c6_1 {
  950. font-size: 24rpx;
  951. color: #EE8E56;
  952. margin-right: 30rpx;
  953. }
  954. .title-text-right_c6 {
  955. text-align: right;
  956. }
  957. .data-row_c6 {
  958. display: flex;
  959. justify-content: space-between;
  960. align-items: center;
  961. margin-bottom: 20rpx;
  962. width: 95%;
  963. margin-left: 20rpx;
  964. }
  965. .data-row_c6_0 {
  966. margin-bottom: 20rpx;
  967. width: 95%;
  968. margin-left: 20rpx;
  969. border-top-left-radius: 20rpx;
  970. border-top-right-radius: 20rpx;
  971. background-color: rgba(221, 222, 255, 0.2);
  972. padding: 15rpx;
  973. }
  974. .data-row_c6_1 {
  975. display: flex;
  976. justify-content: space-between;
  977. align-items: center;
  978. }
  979. .data-row_c6_2 {
  980. display: flex;
  981. justify-content: space-between;
  982. align-items: center;
  983. margin-top: 15rpx;
  984. }
  985. .data-item_c6 {
  986. flex: 1;
  987. display: flex;
  988. flex-direction: row;
  989. align-items: center;
  990. }
  991. .data-item_c6.left_c60 {
  992. display: flex;
  993. justify-content: flex-start;
  994. align-items: center;
  995. /* 如果需要垂直居中对齐 */
  996. text-align: left;
  997. color: white;
  998. font-size: 38rpx;
  999. }
  1000. .data-item_c6 .left_c6 {
  1001. display: flex;
  1002. justify-content: flex-start;
  1003. align-items: center;
  1004. /* 如果需要垂直居中对齐 */
  1005. text-align: left;
  1006. color: rgba(0, 0, 0, 0.6);
  1007. }
  1008. .left_c61 {
  1009. display: flex;
  1010. justify-content: flex-start;
  1011. align-items: center;
  1012. /* 如果需要垂直居中对齐 */
  1013. text-align: left;
  1014. color: #3E3D44;
  1015. /* color:rgba(0, 0, 0, 0.6); */
  1016. font-size: 28rpx;
  1017. font-weight: 525;
  1018. }
  1019. .data-item_c6 .left_c62 {
  1020. display: flex;
  1021. justify-content: flex-start;
  1022. align-items: center;
  1023. /* 如果需要垂直居中对齐 */
  1024. text-align: left;
  1025. font-size: 24rpx;
  1026. color: #3E3D44;
  1027. }
  1028. .data-item_c6 .left_c62_1 {
  1029. display: flex;
  1030. justify-content: flex-start;
  1031. align-items: center;
  1032. /* 如果需要垂直居中对齐 */
  1033. text-align: left;
  1034. font-size: 24rpx;
  1035. color: #ff0000;
  1036. }
  1037. .data-item_c6 .right_c6 {
  1038. display: flex;
  1039. justify-content: flex-end;
  1040. /* 子元素靠右对齐 */
  1041. align-items: center;
  1042. /* 如果需要垂直居中对齐 */
  1043. text-align: right;
  1044. color: rgba(0, 0, 0, 0.6);
  1045. }
  1046. .separator_c6 {
  1047. width: 100%;
  1048. height: 2rpx;
  1049. background-color: #ccc;
  1050. /* 分割线的颜色 */
  1051. margin-bottom: 20rpx;
  1052. }
  1053. .echarts-container_c6 {
  1054. width: 100%;
  1055. /* 可以根据需要调整 */
  1056. height: 300rpx;
  1057. /* 可以根据需要调整,或者设置为百分比 */
  1058. display: flex;
  1059. justify-content: center;
  1060. align-items: center;
  1061. /* 如果需要垂直居中对齐 */
  1062. }
  1063. /* ec-canvas 组件的样式可以根据需要进行调整 */
  1064. ec-canvas_c6 {
  1065. width: 92%;
  1066. height: 100%;
  1067. margin-left: 50rpx;
  1068. }
  1069. .container_4_1 {
  1070. display: flex;
  1071. align-items: center;
  1072. /* 垂直居中 */
  1073. justify-content: left;
  1074. /* 水平居中(如果需要整个容器内的内容居中)*/
  1075. padding-top: 10rpx;
  1076. /* 如果只需要image和text水平居中,并且它们占据整个容器的宽度,可以删除justify-content并设置flex-direction: row*/
  1077. }
  1078. .image_4_1 {
  1079. width: 50rpx;
  1080. /* 设置图片的宽度 */
  1081. height: 50rpx;
  1082. /* 设置图片的高度 */
  1083. margin-right: 20rpx;
  1084. /* 图片和文本之间的间距 */
  1085. }
  1086. .text_4_1 {
  1087. /* 这里可以设置文本的样式,如字体大小、颜色等 */
  1088. font-size: 50rpx;
  1089. color: #ffffff;
  1090. }
  1091. .picker-view {
  1092. margin-top: 12rpx;
  1093. }
  1094. .loading-container {
  1095. position: fixed;
  1096. top: 50%;
  1097. left: 50%;
  1098. transform: translate(-50%, -50%);
  1099. padding: 10px;
  1100. background-color: #00ffff;
  1101. width: 350rpx;
  1102. color: #909090;
  1103. border-radius: 4px;
  1104. z-index: 9999;
  1105. /* 确保它显示在其他内容之上 */
  1106. }
  1107. .loading-text {
  1108. /* 其他样式 */
  1109. width: 300rpx;
  1110. white-space: nowrap;
  1111. }
  1112. .circle-container-yh {
  1113. display: flex;
  1114. align-items: center;
  1115. justify-content: center;
  1116. /* 让左右文本分布在图片两侧 */
  1117. width: 100%;
  1118. /* 根据需要调整,确保足够宽以容纳图片和文本 */
  1119. }
  1120. .circle-image-yh {
  1121. width: 200rpx;
  1122. /* 假设圆环图片宽度 */
  1123. height: 200rpx;
  1124. /* 假设圆环图片高度 */
  1125. }
  1126. .text-container-yh {
  1127. display: flex;
  1128. flex-direction: column;
  1129. /* 文本内容垂直排列 */
  1130. align-items: flex-start;
  1131. /* 文本内容从顶部开始排列 */
  1132. align-items: left;
  1133. }
  1134. .left-text-yh {
  1135. margin-left: 15rpx;
  1136. }
  1137. .left-text-yh,
  1138. .right-text-yh {
  1139. /* 根据需要添加样式,如内边距、字体大小等 */
  1140. display: flex;
  1141. align-items: center;
  1142. }
  1143. .icon-yh {
  1144. width: 30rpx;
  1145. /* 假设小图片的宽度 */
  1146. height: 30rpx;
  1147. /* 假设小图片的高度 */
  1148. margin-right: 10rpx;
  1149. /* 小图片与文字的间距 */
  1150. }
  1151. .top-text-yh {
  1152. /* 上方文字的样式 */
  1153. display: flex;
  1154. justify-content: space-between;
  1155. /* 让左右文本分布在水平方向上 */
  1156. align-items: center;
  1157. margin-top: 20rpx;
  1158. /* 与圆环图片的间距 */
  1159. }
  1160. .text-row-yh {
  1161. display: flex;
  1162. align-items: center;
  1163. margin-bottom: 10rpx;
  1164. /* 行与行之间的间距 */
  1165. }
  1166. .centered-text-yh {
  1167. position: absolute;
  1168. top: 85rpx;
  1169. /* 垂直居中 */
  1170. left: 0;
  1171. right: 0;
  1172. transform: translateY(-50%);
  1173. /* 垂直居中 */
  1174. text-align: center;
  1175. /* 水平居中 */
  1176. }
  1177. .text-line-yh {
  1178. display: block;
  1179. margin-bottom: 20rpx;
  1180. /* 行间距 */
  1181. }
  1182. .text-line-yh-1 {
  1183. color: white;
  1184. /* 第一行文字颜色 */
  1185. font-size: 40rpx;
  1186. /* 第一行文字大小 */
  1187. }
  1188. .text-line-yh-2 {
  1189. color: #99ff62;
  1190. /* 第二行文字颜色 */
  1191. font-size: 120rpx;
  1192. /* 第二行文字大小 */
  1193. }
  1194. .text-line-yh-3 {
  1195. color: white;
  1196. /* 第三行文字颜色 */
  1197. font-size: 32rpx;
  1198. /* 第三行文字大小 */
  1199. }
  1200. .text-content-yh {
  1201. color: #9A969F;
  1202. font-size: 20rpx;
  1203. }
  1204. .text-content-yh_1 {
  1205. color: #3E3D44;
  1206. font-size: 24rpx;
  1207. }
  1208. .text-content-yh_1-units {
  1209. font-size: 20rpx;
  1210. }
  1211. /* 蓝色 */
  1212. .blue-dot-up {
  1213. width: 16rpx;
  1214. height: 16rpx;
  1215. background-color: #5555ff;
  1216. border-radius: 50%;
  1217. display: inline-block;
  1218. margin-right: 12rpx;
  1219. margin-left: 20rpx;
  1220. margin-top: 32rpx;
  1221. }
  1222. /* 紫色 */
  1223. .purple-dot-up {
  1224. width: 16rpx;
  1225. height: 16rpx;
  1226. background-color: #9d00f1;
  1227. border-radius: 50%;
  1228. display: inline-block;
  1229. margin-right: 12rpx;
  1230. margin-left: 20rpx;
  1231. margin-top: 32rpx;
  1232. }
  1233. /* 绿色 */
  1234. .green-dot-up {
  1235. width: 16rpx;
  1236. height: 16rpx;
  1237. background-color: #55ff7f;
  1238. border-radius: 50%;
  1239. display: inline-block;
  1240. margin-right: 12rpx;
  1241. margin-left: 20rpx;
  1242. margin-top: 32rpx;
  1243. }
  1244. /* 橘色 */
  1245. .organize-dot-up {
  1246. width: 16rpx;
  1247. height: 16rpx;
  1248. background-color: #ffaa00;
  1249. border-radius: 50%;
  1250. display: inline-block;
  1251. margin-right: 12rpx;
  1252. margin-left: 20rpx;
  1253. margin-top: 32rpx;
  1254. }
  1255. /* 蓝色 */
  1256. .blue-dot {
  1257. width: 16rpx;
  1258. height: 16rpx;
  1259. margin-left: 25rpx;
  1260. background-color: #6086EF;
  1261. border-radius: 50%;
  1262. display: inline-block;
  1263. margin-right: 10rpx;
  1264. }
  1265. /* 紫色 */
  1266. .purple-dot {
  1267. width: 16rpx;
  1268. height: 16rpx;
  1269. background-color: #9d00f1;
  1270. border-radius: 50%;
  1271. display: inline-block;
  1272. margin-right: 10rpx;
  1273. }
  1274. /* 绿色 */
  1275. .green-dot {
  1276. width: 16rpx;
  1277. height: 16rpx;
  1278. margin-left: 25rpx;
  1279. background-color: #61C38D;
  1280. border-radius: 50%;
  1281. display: inline-block;
  1282. margin-right: 10rpx;
  1283. }
  1284. /* 橘色 */
  1285. .organize-dot {
  1286. width: 16rpx;
  1287. height: 16rpx;
  1288. margin-left: 25rpx;
  1289. background-color: #ffaa00;
  1290. border-radius: 50%;
  1291. display: inline-block;
  1292. margin-right: 10rpx;
  1293. }
  1294. .echarts-container_c000 {
  1295. width: 300rpx;
  1296. /* 可以根据需要调整 */
  1297. height: 300rpx;
  1298. /* 可以根据需要调整,或者设置为百分比 */
  1299. display: flex;
  1300. justify-content: center;
  1301. align-items: center;
  1302. /* 如果需要垂直居中对齐 */
  1303. margin-left: 150rpx;
  1304. }
  1305. .echarts-container_c00 {
  1306. width: 350rpx;
  1307. height: 350rpx;
  1308. }
  1309. .container_00 {
  1310. display: flex;
  1311. flex-direction: column;
  1312. align-items: flex-start;
  1313. /* padding: 40rpx; */
  1314. border-radius: 20rpx;
  1315. width: 95%;
  1316. margin-top: 20rpx;
  1317. background-color: rgba(255, 255, 255, 1);
  1318. height: 420rpx;
  1319. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  1320. }
  1321. .separator_c00 {
  1322. width: calc(100% - 60rpx);
  1323. height: 1rpx;
  1324. margin-right: auto;
  1325. margin-left: auto;
  1326. background-color: #eeeeee;
  1327. /* 分割线的颜色为白色 */
  1328. margin-bottom: 15rpx;
  1329. }
  1330. .header_c00 {
  1331. display: flex;
  1332. justify-content: flex-start;
  1333. align-items: center;
  1334. margin: 20rpx 0rpx 20rpx 20rpx;
  1335. width: 92%;
  1336. }
  1337. .header-image_c00 {
  1338. width: 100rpx;
  1339. /* 根据需要调整图片大小 */
  1340. height: 100rpx;
  1341. /* 根据需要调整图片大小 */
  1342. margin-right: 20rpx;
  1343. }
  1344. .header-title_c00 {
  1345. font-size: 38rpx;
  1346. /* 标题字体大小 */
  1347. color: white;
  1348. }
  1349. .data-row_c00 {
  1350. display: flex;
  1351. justify-content: space-between;
  1352. align-items: center;
  1353. margin-left: 20rpx;
  1354. width: 92%;
  1355. padding: 25rpx 0rpx;
  1356. }
  1357. .data-item_c00 {
  1358. display: flex;
  1359. align-items: center;
  1360. }
  1361. .data-item_c00.left_c00 {
  1362. display: flex;
  1363. justify-content: flex-start;
  1364. /* 子元素靠右对齐 */
  1365. align-items: center;
  1366. /* 如果需要垂直居中对齐 */
  1367. }
  1368. .data-item_c00.right_c00 {
  1369. display: flex;
  1370. justify-content: flex-end;
  1371. /* 子元素靠右对齐 */
  1372. align-items: center;
  1373. /* 如果需要垂直居中对齐 */
  1374. }
  1375. .data-image_c00 {
  1376. width: 32rpx;
  1377. /* 根据需要调整图片大小 */
  1378. height: 32rpx;
  1379. /* 根据需要调整图片大小 */
  1380. margin-left: 12rpx;
  1381. /* 图片和文本之间的间距 */
  1382. }
  1383. .data-image_c00_0 {
  1384. width: 28rpx;
  1385. /* 根据需要调整图片大小 */
  1386. height: 28rpx;
  1387. margin-left: 12rpx;
  1388. /* 根据需要调整图片大小 */
  1389. }
  1390. .data-image_c00_01 {
  1391. width: 16rpx;
  1392. /* 根据需要调整图片大小 */
  1393. height: 16rpx;
  1394. /* 根据需要调整图片大小 */
  1395. margin-left: 6rpx;
  1396. margin-right: 6rpx
  1397. }
  1398. .data-text_c00_0 {
  1399. color: #3E3D44;
  1400. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1401. font-size: 24rpx;
  1402. margin-left: 10rpx;
  1403. white-space: nowrap;
  1404. border-top-right-radius: 20rpx;
  1405. border-bottom-right-radius: 20rpx;
  1406. background-color: rgba(255, 255, 255, 1);
  1407. font-weight: 600;
  1408. flex: 1;
  1409. }
  1410. .top-bar-box {
  1411. width: calc(100% - 40rpx);
  1412. background: #FFFFFF;
  1413. display: flex;
  1414. flex-direction: row;
  1415. align-items: center;
  1416. margin-top: 28rpx;
  1417. height: 64rpx;
  1418. flex-wrap: nowrap;
  1419. border-radius: 20rpx;
  1420. }
  1421. .top-bar-line {
  1422. width: 1rpx;
  1423. margin: auto 20rpx;
  1424. height: 24rpx;
  1425. background: #EEEEEE;
  1426. }
  1427. .top-bar-icon {
  1428. display: block;
  1429. width: 28rpx;
  1430. height: 28rpx;
  1431. margin-right: 16rpx;
  1432. }
  1433. .top-bar-date {
  1434. color: #333333;
  1435. font-size: 24rpx;
  1436. white-space: nowrap;
  1437. margin-right: 24rpx;
  1438. }
  1439. .top-bar-time {
  1440. color: #333333;
  1441. white-space: nowrap;
  1442. margin-right: 20rpx;
  1443. font-size: 24rpx;
  1444. }
  1445. .data-text_c00 {
  1446. /* 文本样式可以根据需要调整 */
  1447. color: #000;
  1448. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1449. font-size: 24rpx;
  1450. margin-right: 30rpx;
  1451. margin-left: 12rpx;
  1452. }
  1453. .data-text_c002 {
  1454. /* 文本样式可以根据需要调整 */
  1455. color: #000;
  1456. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1457. font-size: 28rpx;
  1458. font-weight: 600;
  1459. }
  1460. .data-text_c001 {
  1461. /* 文本样式可以根据需要调整 */
  1462. margin-left: 10rpx;
  1463. font-size: 20rpx;
  1464. color: rgba(255, 255, 255, 0.6);
  1465. }
  1466. .block-element {
  1467. display: block;
  1468. }
  1469. .hidden-element {
  1470. display: none;
  1471. }
  1472. .picker-arrow {
  1473. display: inline-block;
  1474. width: 0;
  1475. height: 0;
  1476. border-left: 10rpx solid transparent;
  1477. border-right: 10rpx solid transparent;
  1478. border-top: 10px solid rgba(161, 161, 161, 1.0);
  1479. margin-left: 2px;
  1480. margin-top: 10px;
  1481. margin-right: 10rpx;
  1482. }
  1483. .picker_out {
  1484. display: flex;
  1485. flex-direction: row;
  1486. min-width: 380rpx;
  1487. margin-right: 20rpx;
  1488. justify-content: space-between;
  1489. border-radius: 60rpx;
  1490. background-color: white;
  1491. margin-left: 20rpx;
  1492. }
  1493. .picker-row_view {
  1494. display: flex;
  1495. flex-direction: row;
  1496. height: 64rpx;
  1497. flex: 1;
  1498. justify-content: left;
  1499. /* 移除默认背景 */
  1500. align-items: center;
  1501. background-color: rgba(255, 255, 255, 1);
  1502. border-top-right-radius: 32rpx;
  1503. border-bottom-right-radius: 32rpx;
  1504. /* height:50rpx; */
  1505. }
  1506. .card-h {
  1507. width: 100%;
  1508. height: 100%;
  1509. display: flex;
  1510. flex-direction: row;
  1511. }
  1512. .card-h .chart-left-box {
  1513. display: flex;
  1514. width: 110rpx;
  1515. justify-content: space-between;
  1516. align-items: flex-end;
  1517. flex-direction: column;
  1518. }
  1519. .card-h .chart-left-box .chart-left-title-box {
  1520. display: flex;
  1521. flex-direction: row;
  1522. align-items: center;
  1523. flex-wrap: nowrap;
  1524. margin-top: 70rpx;
  1525. justify-content: center;
  1526. }
  1527. .card-h .chart-left-box .chart-left-title-box .dot {
  1528. width: 16rpx;
  1529. height: 16rpx;
  1530. border-radius: 100%;
  1531. }
  1532. .card-h .chart-left-box .chart-left-title-box .left-title {
  1533. white-space: nowrap;
  1534. color: #333333;
  1535. margin-left: 16rpx;
  1536. min-width: 52rpx;
  1537. font-size: 24rpx;
  1538. color: #3E3D44;
  1539. }
  1540. .card-h .chart-left-box .chart-left-title-box:last-child {
  1541. margin-bottom: 50rpx;
  1542. }
  1543. .sub-title {
  1544. font-size: 24rpx;
  1545. margin-bottom: 30rpx;
  1546. color: #3E3D44;
  1547. margin-left: 30rpx;
  1548. }
  1549. .card5-h {
  1550. margin-top: 20rpx;
  1551. display: flex;
  1552. width: calc(100% - 40rpx);
  1553. background: #F7F8FD;
  1554. margin-left: 20rpx;
  1555. flex-direction: row;
  1556. align-items: center;
  1557. padding: 24rpx 0;
  1558. justify-content: space-around;
  1559. }
  1560. .card-v {
  1561. display: flex;
  1562. align-items: center;
  1563. flex-direction: column;
  1564. }
  1565. .card-t1 {
  1566. font-size: 28rpx;
  1567. font-weight: 600;
  1568. color: #3E3D44;
  1569. }
  1570. .card-t2 {
  1571. font-size: 24rpx;
  1572. color: #6C6970;
  1573. }
  1574. .card6-h {
  1575. width: 100%;
  1576. margin: auto;
  1577. display: flex;
  1578. }
  1579. .card-item {
  1580. display: flex;
  1581. flex-direction: row;
  1582. align-items: center;
  1583. justify-content: center;
  1584. }
  1585. .card-t3 {
  1586. font-size: 24rpx;
  1587. color: #3E3D44;
  1588. }
  1589. .card-item2 {
  1590. margin-bottom: 30rpx;
  1591. width: 100%;
  1592. display: flex;
  1593. flex-direction: column;
  1594. }