data.wxss 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779
  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(315deg, #CCC0F8 0%, #EDEAFF 100%);
  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: 230rpx;
  603. background: white;
  604. /* 与左边面板等高 */
  605. margin-left: 15rpx;
  606. border-radius: 20rpx;
  607. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  608. }
  609. .cell_c4 {
  610. display: flex;
  611. flex: auto;
  612. align-items: center;
  613. /* 顶端对齐 */
  614. justify-content: flex-start;
  615. /* 子元素靠右对齐 */
  616. /* 上下内边距 */
  617. /* margin-bottom: 10rpx; */
  618. /* background-color: rgba(255, 255, 255, 1); */
  619. /* border-radius: 5%; */
  620. }
  621. .cell-image_c4 {
  622. width: 60rpx;
  623. /* 图片宽度 */
  624. height: 60rpx;
  625. /* 图片高度 */
  626. margin-right: 10rpx;
  627. }
  628. .cell-text_c4 {
  629. flex: 1;
  630. margin-right: 30rpx;
  631. /* 文本部分占据剩余空间 */
  632. }
  633. .text-line_c4 {
  634. /* 文本行样式 */
  635. white-space: nowrap;
  636. /* 防止文本自动换行,但这里不需要 */
  637. overflow: hidden;
  638. /* 如果需要,可以隐藏溢出内容 */
  639. text-overflow: ellipsis;
  640. /* 如果需要,可以用省略号表示溢出 */
  641. color: #6C6970;
  642. }
  643. /* 如果需要固定文本为两行显示,可以为 .text-line 设置特定的 height 和 line-height */
  644. .text-line_c4 {
  645. height: 48rpx;
  646. font-size: 24rpx;
  647. /* 假设每行文本高度为24px */
  648. line-height: 48rpx;
  649. /* 行高与文本高度相同 */
  650. /* 还可以添加其他文本样式,如字体大小、颜色等 */
  651. }
  652. .image_c4 {
  653. position: absolute;
  654. right: 0;
  655. bottom: 0;
  656. width: 156rpx;
  657. height: 136rpx;
  658. /* 确保图片填充整个容器并保持其宽高比 */
  659. }
  660. .text-container_c4 {
  661. position: absolute;
  662. /* 绝对定位使得文字可以位于图片之上 */
  663. top: 50%;
  664. /* 垂直居中 */
  665. left: 50%;
  666. /* 水平居中 */
  667. width: calc(100% - 60rpx);
  668. transform: translate(-50%, -50%);
  669. /* 调整位置以完全居中 */
  670. color: white;
  671. /* 或者其他你需要的颜色 */
  672. }
  673. .text-container_c4_top_left {
  674. position: absolute;
  675. top: 0;
  676. left: 0;
  677. width: 146rpx;
  678. font-size: 24rpx;
  679. color: white;
  680. height: 44rpx;
  681. display: flex;
  682. flex-direction: column;
  683. justify-content: center;
  684. align-items: center;
  685. color: #FFFFFF;
  686. text-align: center;
  687. border-radius: 16rpx 0rpx 16rpx 0rpx;
  688. background: linear-gradient(315deg, #A89EFF 0%, #AB81FF 100%);
  689. }
  690. .text_c4 {
  691. color: #3C3796;
  692. font-size: 24rpx;
  693. text-align: start;
  694. line-height: 40rpx;
  695. font-weight: 400;
  696. }
  697. .text_c4_left_top {
  698. color: #ffffff;
  699. font-size: 24rpx;
  700. }
  701. .text_c4_1 {
  702. font-size: 34rpx;
  703. color: #6E6AB2;
  704. font-weight: 700;
  705. }
  706. .text-line_c41 {
  707. /* 文本行样式 */
  708. white-space: nowrap;
  709. /* 防止文本自动换行,但这里不需要 */
  710. overflow: hidden;
  711. /* 如果需要,可以隐藏溢出内容 */
  712. text-overflow: ellipsis;
  713. /* 如果需要,可以用省略号表示溢出 */
  714. color: #000;
  715. font-size: 32rpx;
  716. }
  717. /* 如果需要固定文本为两行显示,可以为 .text-line 设置特定的 height 和 line-height */
  718. .text-line_c41 {
  719. height: 48rpx;
  720. /* 假设每行文本高度为24px */
  721. line-height: 48rpx;
  722. /* 行高与文本高度相同 */
  723. /* 还可以添加其他文本样式,如字体大小、颜色等 */
  724. }
  725. .container_5 {
  726. display: flex;
  727. flex-direction: column;
  728. align-items: flex-start;
  729. /* padding: 40rpx; */
  730. width: 95%;
  731. margin-top: 30rpx;
  732. background-color: rgba(255, 255, 255, 1);
  733. border-radius: 20rpx;
  734. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  735. }
  736. .header_c5 {
  737. display: flex;
  738. justify-content: flex-start;
  739. align-items: center;
  740. margin: 20rpx 0rpx 20rpx 20rpx;
  741. width: 92%;
  742. }
  743. .header-image_c5 {
  744. width: 72rpx;
  745. height: 72rpx;
  746. margin-right: 20rpx;
  747. }
  748. .header-image_comma {
  749. width: 34rpx;
  750. /* 根据需要调整图片大小 */
  751. height: 34rpx;
  752. /* 根据需要调整图片大小 */
  753. margin-left: 10rpx;
  754. }
  755. .header-title_c5 {
  756. font-size: 32rpx;
  757. font-weight: 600;
  758. color: #3E3D44;
  759. }
  760. .data-row_c5 {
  761. display: flex;
  762. justify-content: space-between;
  763. align-items: center;
  764. margin-left: 20rpx;
  765. width: calc(100% - 100rpx);
  766. background-color: rgba(221, 222, 255, 0.2);
  767. border-top-left-radius: 20rpx;
  768. border-top-right-radius: 20rpx;
  769. padding: 15rpx 30rpx 0 30rpx;
  770. }
  771. .data-row_c5_down {
  772. display: flex;
  773. justify-content: space-between;
  774. align-items: center;
  775. /* margin-bottom: 10rpx; */
  776. margin-left: 20rpx;
  777. width: calc(100% - 100rpx);
  778. background-color: rgba(221, 222, 255, 0.2);
  779. border-bottom-left-radius: 20rpx;
  780. border-bottom-right-radius: 20rpx;
  781. padding: 0 30rpx 15rpx 30rpx;
  782. }
  783. .data-item_c5 {
  784. display: flex;
  785. align-items: center;
  786. }
  787. .data-item_c5.left_c5 {
  788. display: flex;
  789. justify-content: flex-start;
  790. /* 子元素靠右对齐 */
  791. align-items: center;
  792. /* 如果需要垂直居中对齐 */
  793. padding: 10rpx 5rpx;
  794. /* 上下内边距 */
  795. margin-bottom: 2rpx;
  796. height: 52rpx;
  797. /* background-color:rgba(255, 255, 255, 1); */
  798. border-radius: 5%;
  799. }
  800. .data-item_c5 .right_c5 {
  801. display: flex;
  802. justify-content: flex-end;
  803. /* 子元素靠右对齐 */
  804. align-items: center;
  805. /* 如果需要垂直居中对齐 */
  806. padding: 15rpx 5rpx;
  807. /* 上下内边距 */
  808. margin-bottom: 10rpx;
  809. height: 62rpx;
  810. /* background-color:rgba(255, 255, 255, 1); */
  811. border-radius: 5%;
  812. }
  813. .data-image_c5 {
  814. width: 45rpx;
  815. /* 根据需要调整图片大小 */
  816. height: 45rpx;
  817. /* 根据需要调整图片大小 */
  818. margin-right: 8rpx;
  819. /* 图片和文本之间的间距 */
  820. }
  821. .data-text_c5 {
  822. font-size: 28rpx;
  823. color: #3E3D44;
  824. }
  825. .dot_c51 {
  826. width: 16rpx;
  827. height: 16rpx;
  828. background-color: #6086EF;
  829. border-radius: 50%;
  830. display: inline-block;
  831. margin-right: 10rpx;
  832. }
  833. .data-text_c51 {
  834. /* 文本样式可以根据需要调整 */
  835. margin-left: 10rpx;
  836. font-size: 20rpx;
  837. color: #6186EF;
  838. background: #E6EDFF;
  839. padding: 1rpx 7rpx;
  840. border-radius: 4rpx;
  841. }
  842. .dot_c51_1 {
  843. width: 16rpx;
  844. height: 16rpx;
  845. background-color: #60C38D;
  846. border-radius: 50%;
  847. display: inline-block;
  848. margin-right: 10rpx;
  849. }
  850. .data-text_c51_1 {
  851. /* 文本样式可以根据需要调整 */
  852. margin-left: 10rpx;
  853. font-size: 20rpx;
  854. color: #60C38D;
  855. background: #DEFAEB;
  856. padding: 1rpx 7rpx;
  857. border-radius: 4rpx;
  858. }
  859. .separator_c5 {
  860. width: 100%;
  861. height: 2rpx;
  862. background-color: #fff;
  863. /* 分割线的颜色为白色 */
  864. margin-bottom: 20rpx;
  865. }
  866. .container_6 {
  867. display: flex;
  868. flex-direction: column;
  869. align-items: flex-start;
  870. width: 95%;
  871. padding-bottom: 30rpx;
  872. background: white;
  873. margin-top: 30rpx;
  874. border-radius: 20rpx;
  875. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  876. }
  877. .title-row_c6 {
  878. display: flex;
  879. justify-content: space-between;
  880. align-items: center;
  881. margin: 20rpx 0rpx 20rpx 20rpx;
  882. width: 92%;
  883. }
  884. .title-left_c6 {
  885. display: flex;
  886. justify-content: flex-start;
  887. /* 子元素靠右对齐 */
  888. align-items: center;
  889. /* 如果需要垂直居中对齐 */
  890. }
  891. .title-right_c6 {
  892. display: flex;
  893. justify-content: flex-end;
  894. /* 子元素靠右对齐 */
  895. align-items: center;
  896. /* 如果需要垂直居中对齐 */
  897. }
  898. .title-image_c6 {
  899. width: 72rpx;
  900. height: 72rpx;
  901. margin-right: 20rpx;
  902. }
  903. .title-text_c6,
  904. .title-text-right_c6 {
  905. font-size: 32rpx;
  906. font-weight: 600;
  907. color: #3E3D44;
  908. }
  909. .title-text-right_c6_1 {
  910. font-size: 24rpx;
  911. color: #EE8E56;
  912. margin-right: 30rpx;
  913. }
  914. .title-text-right_c6 {
  915. text-align: right;
  916. }
  917. .data-row_c6 {
  918. display: flex;
  919. justify-content: space-between;
  920. align-items: center;
  921. margin-bottom: 20rpx;
  922. width: 95%;
  923. margin-left: 20rpx;
  924. }
  925. .data-row_c6_0 {
  926. margin-bottom: 20rpx;
  927. width: 95%;
  928. margin-left: 20rpx;
  929. border-top-left-radius: 20rpx;
  930. border-top-right-radius: 20rpx;
  931. background-color: rgba(221, 222, 255, 0.2);
  932. padding: 15rpx;
  933. }
  934. .data-row_c6_1 {
  935. display: flex;
  936. justify-content: space-between;
  937. align-items: center;
  938. }
  939. .data-row_c6_2 {
  940. display: flex;
  941. justify-content: space-between;
  942. align-items: center;
  943. margin-top: 15rpx;
  944. }
  945. .data-item_c6 {
  946. flex: 1;
  947. display: flex;
  948. flex-direction: row;
  949. align-items: center;
  950. }
  951. .data-item_c6.left_c60 {
  952. display: flex;
  953. justify-content: flex-start;
  954. align-items: center;
  955. /* 如果需要垂直居中对齐 */
  956. text-align: left;
  957. color: white;
  958. font-size: 38rpx;
  959. }
  960. .data-item_c6 .left_c6 {
  961. display: flex;
  962. justify-content: flex-start;
  963. align-items: center;
  964. /* 如果需要垂直居中对齐 */
  965. text-align: left;
  966. color: rgba(0, 0, 0, 0.6);
  967. }
  968. .left_c61 {
  969. display: flex;
  970. justify-content: flex-start;
  971. align-items: center;
  972. /* 如果需要垂直居中对齐 */
  973. text-align: left;
  974. color: #3E3D44;
  975. /* color:rgba(0, 0, 0, 0.6); */
  976. font-size: 28rpx;
  977. font-weight: 525;
  978. }
  979. .data-item_c6 .left_c62 {
  980. display: flex;
  981. justify-content: flex-start;
  982. align-items: center;
  983. /* 如果需要垂直居中对齐 */
  984. text-align: left;
  985. font-size: 24rpx;
  986. color: #3E3D44;
  987. }
  988. .data-item_c6 .left_c62_1 {
  989. display: flex;
  990. justify-content: flex-start;
  991. align-items: center;
  992. /* 如果需要垂直居中对齐 */
  993. text-align: left;
  994. font-size: 24rpx;
  995. color: #ff0000;
  996. }
  997. .data-item_c6 .right_c6 {
  998. display: flex;
  999. justify-content: flex-end;
  1000. /* 子元素靠右对齐 */
  1001. align-items: center;
  1002. /* 如果需要垂直居中对齐 */
  1003. text-align: right;
  1004. color: rgba(0, 0, 0, 0.6);
  1005. }
  1006. .separator_c6 {
  1007. width: 100%;
  1008. height: 2rpx;
  1009. background-color: #ccc;
  1010. /* 分割线的颜色 */
  1011. margin-bottom: 20rpx;
  1012. }
  1013. .echarts-container_c6 {
  1014. width: 100%;
  1015. /* 可以根据需要调整 */
  1016. height: 300rpx;
  1017. /* 可以根据需要调整,或者设置为百分比 */
  1018. display: flex;
  1019. justify-content: center;
  1020. align-items: center;
  1021. /* 如果需要垂直居中对齐 */
  1022. }
  1023. /* ec-canvas 组件的样式可以根据需要进行调整 */
  1024. ec-canvas_c6 {
  1025. width: 92%;
  1026. height: 100%;
  1027. margin-left: 50rpx;
  1028. }
  1029. .container_4_1 {
  1030. display: flex;
  1031. align-items: center;
  1032. /* 垂直居中 */
  1033. justify-content: left;
  1034. /* 水平居中(如果需要整个容器内的内容居中)*/
  1035. padding-top: 10rpx;
  1036. /* 如果只需要image和text水平居中,并且它们占据整个容器的宽度,可以删除justify-content并设置flex-direction: row*/
  1037. }
  1038. .image_4_1 {
  1039. width: 50rpx;
  1040. /* 设置图片的宽度 */
  1041. height: 50rpx;
  1042. /* 设置图片的高度 */
  1043. margin-right: 20rpx;
  1044. /* 图片和文本之间的间距 */
  1045. }
  1046. .text_4_1 {
  1047. /* 这里可以设置文本的样式,如字体大小、颜色等 */
  1048. font-size: 50rpx;
  1049. color: #ffffff;
  1050. }
  1051. .picker-view {
  1052. margin-top: 12rpx;
  1053. }
  1054. .loading-container {
  1055. position: fixed;
  1056. top: 50%;
  1057. left: 50%;
  1058. transform: translate(-50%, -50%);
  1059. padding: 10px;
  1060. background-color: #00ffff;
  1061. width: 350rpx;
  1062. color: #909090;
  1063. border-radius: 4px;
  1064. z-index: 9999;
  1065. /* 确保它显示在其他内容之上 */
  1066. }
  1067. .loading-text {
  1068. /* 其他样式 */
  1069. width: 300rpx;
  1070. white-space: nowrap;
  1071. }
  1072. .circle-container-yh {
  1073. display: flex;
  1074. align-items: center;
  1075. justify-content: center;
  1076. /* 让左右文本分布在图片两侧 */
  1077. width: 100%;
  1078. /* 根据需要调整,确保足够宽以容纳图片和文本 */
  1079. }
  1080. .circle-image-yh {
  1081. width: 200rpx;
  1082. /* 假设圆环图片宽度 */
  1083. height: 200rpx;
  1084. /* 假设圆环图片高度 */
  1085. }
  1086. .text-container-yh {
  1087. display: flex;
  1088. flex-direction: column;
  1089. /* 文本内容垂直排列 */
  1090. align-items: flex-start;
  1091. /* 文本内容从顶部开始排列 */
  1092. align-items: left;
  1093. }
  1094. .left-text-yh {
  1095. margin-left: 15rpx;
  1096. }
  1097. .left-text-yh,
  1098. .right-text-yh {
  1099. /* 根据需要添加样式,如内边距、字体大小等 */
  1100. display: flex;
  1101. align-items: center;
  1102. }
  1103. .icon-yh {
  1104. width: 30rpx;
  1105. /* 假设小图片的宽度 */
  1106. height: 30rpx;
  1107. /* 假设小图片的高度 */
  1108. margin-right: 10rpx;
  1109. /* 小图片与文字的间距 */
  1110. }
  1111. .top-text-yh {
  1112. /* 上方文字的样式 */
  1113. display: flex;
  1114. justify-content: space-between;
  1115. /* 让左右文本分布在水平方向上 */
  1116. align-items: center;
  1117. margin-top: 20rpx;
  1118. /* 与圆环图片的间距 */
  1119. }
  1120. .text-row-yh {
  1121. display: flex;
  1122. align-items: center;
  1123. margin-bottom: 10rpx;
  1124. /* 行与行之间的间距 */
  1125. }
  1126. .centered-text-yh {
  1127. position: absolute;
  1128. top: 85rpx;
  1129. /* 垂直居中 */
  1130. left: 0;
  1131. right: 0;
  1132. transform: translateY(-50%);
  1133. /* 垂直居中 */
  1134. text-align: center;
  1135. /* 水平居中 */
  1136. }
  1137. .text-line-yh {
  1138. display: block;
  1139. margin-bottom: 20rpx;
  1140. /* 行间距 */
  1141. }
  1142. .text-line-yh-1 {
  1143. color: white;
  1144. /* 第一行文字颜色 */
  1145. font-size: 40rpx;
  1146. /* 第一行文字大小 */
  1147. }
  1148. .text-line-yh-2 {
  1149. color: #99ff62;
  1150. /* 第二行文字颜色 */
  1151. font-size: 120rpx;
  1152. /* 第二行文字大小 */
  1153. }
  1154. .text-line-yh-3 {
  1155. color: white;
  1156. /* 第三行文字颜色 */
  1157. font-size: 32rpx;
  1158. /* 第三行文字大小 */
  1159. }
  1160. .text-content-yh {
  1161. color: #9A969F;
  1162. font-size: 20rpx;
  1163. }
  1164. .text-content-yh_1 {
  1165. color: #3E3D44;
  1166. font-size: 24rpx;
  1167. }
  1168. .text-content-yh_1-units {
  1169. font-size: 20rpx;
  1170. }
  1171. /* 蓝色 */
  1172. .blue-dot-up {
  1173. width: 16rpx;
  1174. height: 16rpx;
  1175. background-color: #5555ff;
  1176. border-radius: 50%;
  1177. display: inline-block;
  1178. margin-right: 12rpx;
  1179. margin-left: 20rpx;
  1180. margin-top: 32rpx;
  1181. }
  1182. /* 紫色 */
  1183. .purple-dot-up {
  1184. width: 16rpx;
  1185. height: 16rpx;
  1186. background-color: #9d00f1;
  1187. border-radius: 50%;
  1188. display: inline-block;
  1189. margin-right: 12rpx;
  1190. margin-left: 20rpx;
  1191. margin-top: 32rpx;
  1192. }
  1193. /* 绿色 */
  1194. .green-dot-up {
  1195. width: 16rpx;
  1196. height: 16rpx;
  1197. background-color: #55ff7f;
  1198. border-radius: 50%;
  1199. display: inline-block;
  1200. margin-right: 12rpx;
  1201. margin-left: 20rpx;
  1202. margin-top: 32rpx;
  1203. }
  1204. /* 橘色 */
  1205. .organize-dot-up {
  1206. width: 16rpx;
  1207. height: 16rpx;
  1208. background-color: #ffaa00;
  1209. border-radius: 50%;
  1210. display: inline-block;
  1211. margin-right: 12rpx;
  1212. margin-left: 20rpx;
  1213. margin-top: 32rpx;
  1214. }
  1215. /* 蓝色 */
  1216. .blue-dot {
  1217. width: 16rpx;
  1218. height: 16rpx;
  1219. margin-left: 25rpx;
  1220. background-color: #6086EF;
  1221. border-radius: 50%;
  1222. display: inline-block;
  1223. margin-right: 10rpx;
  1224. }
  1225. /* 紫色 */
  1226. .purple-dot {
  1227. width: 16rpx;
  1228. height: 16rpx;
  1229. background-color: #9d00f1;
  1230. border-radius: 50%;
  1231. display: inline-block;
  1232. margin-right: 10rpx;
  1233. }
  1234. /* 绿色 */
  1235. .green-dot {
  1236. width: 16rpx;
  1237. height: 16rpx;
  1238. margin-left: 25rpx;
  1239. background-color: #61C38D;
  1240. border-radius: 50%;
  1241. display: inline-block;
  1242. margin-right: 10rpx;
  1243. }
  1244. /* 橘色 */
  1245. .organize-dot {
  1246. width: 16rpx;
  1247. height: 16rpx;
  1248. margin-left: 25rpx;
  1249. background-color: #ffaa00;
  1250. border-radius: 50%;
  1251. display: inline-block;
  1252. margin-right: 10rpx;
  1253. }
  1254. .echarts-container_c000 {
  1255. width: 300rpx;
  1256. /* 可以根据需要调整 */
  1257. height: 300rpx;
  1258. /* 可以根据需要调整,或者设置为百分比 */
  1259. display: flex;
  1260. justify-content: center;
  1261. align-items: center;
  1262. /* 如果需要垂直居中对齐 */
  1263. margin-left: 150rpx;
  1264. }
  1265. .echarts-container_c00 {
  1266. width: 350rpx;
  1267. height: 350rpx;
  1268. }
  1269. .container_00 {
  1270. display: flex;
  1271. flex-direction: column;
  1272. align-items: flex-start;
  1273. /* padding: 40rpx; */
  1274. border-radius: 20rpx;
  1275. width: 95%;
  1276. margin-top: 20rpx;
  1277. background-color: rgba(255, 255, 255, 1);
  1278. height: 420rpx;
  1279. box-shadow: 0rpx 32rpx 80rpx 0rpx #E8E8E8;
  1280. }
  1281. .separator_c00 {
  1282. width: calc(100% - 60rpx);
  1283. height: 1rpx;
  1284. margin-right: auto;
  1285. margin-left: auto;
  1286. background-color: #eeeeee;
  1287. /* 分割线的颜色为白色 */
  1288. margin-bottom: 15rpx;
  1289. }
  1290. .header_c00 {
  1291. display: flex;
  1292. justify-content: flex-start;
  1293. align-items: center;
  1294. margin: 20rpx 0rpx 20rpx 20rpx;
  1295. width: 92%;
  1296. }
  1297. .header-image_c00 {
  1298. width: 100rpx;
  1299. /* 根据需要调整图片大小 */
  1300. height: 100rpx;
  1301. /* 根据需要调整图片大小 */
  1302. margin-right: 20rpx;
  1303. }
  1304. .header-title_c00 {
  1305. font-size: 38rpx;
  1306. /* 标题字体大小 */
  1307. color: white;
  1308. }
  1309. .data-row_c00 {
  1310. display: flex;
  1311. justify-content: space-between;
  1312. align-items: center;
  1313. margin-left: 20rpx;
  1314. width: 92%;
  1315. padding: 25rpx 0rpx;
  1316. }
  1317. .data-item_c00 {
  1318. display: flex;
  1319. align-items: center;
  1320. }
  1321. .data-item_c00.left_c00 {
  1322. display: flex;
  1323. justify-content: flex-start;
  1324. /* 子元素靠右对齐 */
  1325. align-items: center;
  1326. /* 如果需要垂直居中对齐 */
  1327. }
  1328. .data-item_c00.right_c00 {
  1329. display: flex;
  1330. justify-content: flex-end;
  1331. /* 子元素靠右对齐 */
  1332. align-items: center;
  1333. /* 如果需要垂直居中对齐 */
  1334. }
  1335. .data-image_c00 {
  1336. width: 32rpx;
  1337. /* 根据需要调整图片大小 */
  1338. height: 32rpx;
  1339. /* 根据需要调整图片大小 */
  1340. margin-left: 12rpx;
  1341. /* 图片和文本之间的间距 */
  1342. }
  1343. .data-image_c00_0 {
  1344. width: 28rpx;
  1345. /* 根据需要调整图片大小 */
  1346. height: 28rpx;
  1347. margin-left: 12rpx;
  1348. /* 根据需要调整图片大小 */
  1349. }
  1350. .data-image_c00_01 {
  1351. width: 16rpx;
  1352. /* 根据需要调整图片大小 */
  1353. height: 16rpx;
  1354. /* 根据需要调整图片大小 */
  1355. margin-left: 6rpx;
  1356. margin-right: 6rpx
  1357. }
  1358. .data-text_c00_0 {
  1359. color: #3E3D44;
  1360. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1361. font-size: 24rpx;
  1362. margin-left: 10rpx;
  1363. white-space: nowrap;
  1364. border-top-right-radius: 20rpx;
  1365. border-bottom-right-radius: 20rpx;
  1366. background-color: rgba(255, 255, 255, 1);
  1367. font-weight: 600;
  1368. flex: 1;
  1369. }
  1370. .top-bar-box {
  1371. width: calc(100% - 40rpx);
  1372. background: #FFFFFF;
  1373. display: flex;
  1374. flex-direction: row;
  1375. align-items: center;
  1376. margin-top: 28rpx;
  1377. height: 64rpx;
  1378. flex-wrap: nowrap;
  1379. border-radius: 20rpx;
  1380. }
  1381. .top-bar-line {
  1382. width: 1rpx;
  1383. margin: auto 20rpx;
  1384. height: 24rpx;
  1385. background: #EEEEEE;
  1386. }
  1387. .top-bar-icon {
  1388. display: block;
  1389. width: 28rpx;
  1390. height: 28rpx;
  1391. margin-right: 16rpx;
  1392. }
  1393. .top-bar-date {
  1394. color: #333333;
  1395. font-size: 24rpx;
  1396. white-space: nowrap;
  1397. margin-right: 24rpx;
  1398. }
  1399. .top-bar-time {
  1400. color: #333333;
  1401. white-space: nowrap;
  1402. margin-right: 20rpx;
  1403. font-size: 24rpx;
  1404. }
  1405. .data-text_c00 {
  1406. /* 文本样式可以根据需要调整 */
  1407. color: #000;
  1408. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1409. font-size: 24rpx;
  1410. margin-right: 30rpx;
  1411. margin-left: 12rpx;
  1412. }
  1413. .data-text_c002 {
  1414. /* 文本样式可以根据需要调整 */
  1415. color: #000;
  1416. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1417. font-size: 28rpx;
  1418. font-weight: 600;
  1419. }
  1420. .data-text_c001 {
  1421. /* 文本样式可以根据需要调整 */
  1422. margin-left: 10rpx;
  1423. font-size: 20rpx;
  1424. color: rgba(255, 255, 255, 0.6);
  1425. }
  1426. .block-element {
  1427. display: block;
  1428. }
  1429. .hidden-element {
  1430. display: none;
  1431. }
  1432. .picker-arrow {
  1433. display: inline-block;
  1434. width: 0;
  1435. height: 0;
  1436. border-left: 10rpx solid transparent;
  1437. border-right: 10rpx solid transparent;
  1438. border-top: 10px solid rgba(161, 161, 161, 1.0);
  1439. margin-left: 2px;
  1440. margin-top: 10px;
  1441. margin-right: 10rpx;
  1442. }
  1443. .picker_out {
  1444. display: flex;
  1445. flex-direction: row;
  1446. min-width: 380rpx;
  1447. margin-right: 20rpx;
  1448. justify-content: space-between;
  1449. border-radius: 60rpx;
  1450. background-color: white;
  1451. margin-left: 20rpx;
  1452. }
  1453. .picker-row_view {
  1454. display: flex;
  1455. flex-direction: row;
  1456. height: 64rpx;
  1457. flex: 1;
  1458. justify-content: left;
  1459. /* 移除默认背景 */
  1460. align-items: center;
  1461. background-color: rgba(255, 255, 255, 1);
  1462. border-top-right-radius: 32rpx;
  1463. border-bottom-right-radius: 32rpx;
  1464. /* height:50rpx; */
  1465. }
  1466. .card-h {
  1467. width: 100%;
  1468. height: 100%;
  1469. display: flex;
  1470. flex-direction: row;
  1471. }
  1472. .card-h .chart-left-box {
  1473. display: flex;
  1474. width: 110rpx;
  1475. justify-content: space-between;
  1476. align-items: flex-end;
  1477. flex-direction: column;
  1478. }
  1479. .card-h .chart-left-box .chart-left-title-box {
  1480. display: flex;
  1481. flex-direction: row;
  1482. align-items: center;
  1483. flex-wrap: nowrap;
  1484. margin-top: 70rpx;
  1485. justify-content: center;
  1486. }
  1487. .card-h .chart-left-box .chart-left-title-box .dot {
  1488. width: 16rpx;
  1489. height: 16rpx;
  1490. border-radius: 100%;
  1491. }
  1492. .card-h .chart-left-box .chart-left-title-box .left-title {
  1493. white-space: nowrap;
  1494. color: #333333;
  1495. margin-left: 16rpx;
  1496. min-width: 52rpx;
  1497. font-size: 24rpx;
  1498. color: #3E3D44;
  1499. }
  1500. .card-h .chart-left-box .chart-left-title-box:last-child {
  1501. margin-bottom: 50rpx;
  1502. }
  1503. .sub-title {
  1504. font-size: 24rpx;
  1505. margin-bottom: 30rpx;
  1506. color: #3E3D44;
  1507. margin-left: 30rpx;
  1508. }
  1509. .card5-h {
  1510. margin-top: 20rpx;
  1511. display: flex;
  1512. width: calc(100% - 40rpx);
  1513. background: #F7F8FD;
  1514. margin-left: 20rpx;
  1515. flex-direction: row;
  1516. align-items: center;
  1517. padding: 24rpx 0;
  1518. justify-content: space-around;
  1519. }
  1520. .card-v {
  1521. display: flex;
  1522. align-items: center;
  1523. flex-direction: column;
  1524. }
  1525. .card-t1 {
  1526. font-size: 28rpx;
  1527. font-weight: 600;
  1528. color: #3E3D44;
  1529. }
  1530. .card-t2 {
  1531. font-size: 24rpx;
  1532. color: #6C6970;
  1533. }
  1534. .card6-h {
  1535. width: 100%;
  1536. margin: auto;
  1537. display: flex;
  1538. }
  1539. .card-item {
  1540. display: flex;
  1541. flex-direction: row;
  1542. align-items: center;
  1543. justify-content: center;
  1544. }
  1545. .card-t3 {
  1546. font-size: 24rpx;
  1547. color: #3E3D44;
  1548. }
  1549. .card-item2 {
  1550. margin-bottom: 30rpx;
  1551. width: 100%;
  1552. display: flex;
  1553. flex-direction: column;
  1554. }