data.wxss 33 KB

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