data.wxss 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370
  1. /* pages/data/data.wxss */
  2. @import "/pages/setTime/setTime.wxss";
  3. page {
  4. background-repeat: no-repeat;
  5. background-size: 100% 100%;
  6. -moz-background-size: 100% 100%;
  7. background-color: #F3F5F9;
  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. box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.1); /* 阴影的偏移量、模糊半径和颜色 */
  19. }
  20. .calendar {
  21. width: 750rpx;
  22. }
  23. .header {
  24. font-size: large;
  25. color: #605eac;
  26. }
  27. .board {
  28. background-color: #ffffff;
  29. }
  30. .value {
  31. width: 350rpx;
  32. height: 350rpx;
  33. border: 10rpx solid #62c4d9;
  34. border-radius: 50%;
  35. margin-top: 30rpx;
  36. display: flex;
  37. flex-direction: column;
  38. align-items: center;
  39. justify-content: center;
  40. }
  41. .title {
  42. font-size: 28rpx;
  43. color: #605eac;
  44. }
  45. .num{
  46. font-size: 100rpx;
  47. margin: 20rpx;
  48. font-weight: 800;
  49. color: #fff;
  50. }
  51. .tag{
  52. color: #ffd700;
  53. }
  54. .list{
  55. height: 15rpx;
  56. font-size: 25rpx;
  57. }
  58. .list .content{
  59. font-size: 25rpx;
  60. }
  61. .canvas0 {
  62. display: flex;
  63. flex-direction: column;
  64. width: 100%;
  65. height: 620rpx;
  66. background-color: #ffffff; /* 这里设置你想要的背景色 */
  67. }
  68. .canvas {
  69. display: flex;
  70. flex-direction: column;
  71. width: 100%;
  72. height: 420rpx;
  73. }
  74. .canvas1 {
  75. display: flex;
  76. flex-direction: column;
  77. width: 100%;
  78. height: 620rpx;
  79. background-color: #ffffff; /* 这里设置你想要的背景色 */
  80. }
  81. .canvas2 {
  82. display: flex;
  83. flex-direction: column;
  84. width: 100%;
  85. height: 620rpx;
  86. background-color: #ffffff; /* 这里设置你想要的背景色 */
  87. }
  88. .canvas3 {
  89. display: flex;
  90. flex-direction: column;
  91. width: 100%;
  92. height: 620rpx;
  93. background-color: #ffffff; /* 这里设置你想要的背景色 */
  94. }
  95. .canvas4 {
  96. display: flex;
  97. flex-direction: column;
  98. width: 100%;
  99. height: 720rpx;
  100. background-color: #ffffff; /* 这里设置你想要的背景色 */
  101. }
  102. .canvas5 {
  103. display: flex;
  104. flex-direction: column;
  105. width: 100%;
  106. height: 620rpx;
  107. /* background-color: #ffffff; */
  108. }
  109. ec-canvas {
  110. width: 100%;
  111. height:400rpx;
  112. /* background-color: #fff; */
  113. }
  114. /* canvas {
  115. margin-bottom: 40rpx;
  116. } */
  117. .percentage {
  118. font-size: 36rpx;
  119. text-align: center;
  120. /* margin-left: 150rpx;
  121. margin-top:5rpx */
  122. }
  123. .centered {
  124. display: flex;
  125. flex-direction: column;
  126. justify-content: center; /* 垂直居中 */
  127. align-items: center; /* 水平居中,但在这里不是必需的,因为text-align会处理水平居中 */
  128. }
  129. .centered-text {
  130. text-align: center; /* 水平居中 */
  131. color: '#62c4d9';
  132. font-size: 60rpx;
  133. font-weight:700;
  134. /* 这里可以添加其他文本样式 */
  135. }
  136. .container1 {
  137. display: flex;
  138. justify-content: center;
  139. align-items: center;
  140. }
  141. .gradient-button {
  142. width: 600rpx;
  143. height: 80rpx;
  144. border: none;
  145. border-radius: 10rpx;
  146. background: linear-gradient(to right, #6699ff, #625eff);
  147. color: #fff;
  148. font-size: 32rpx;
  149. text-align: center;
  150. line-height: 80rpx;
  151. box-shadow: 0 2rpx 5rpx rgba(0, 0, 0, 0.1);
  152. transition: background 0.3s ease; /* 添加过渡效果 */
  153. margin-top:10rpx;
  154. }
  155. .gradient-button-clicked {
  156. background: linear-gradient(to right, #ff9966, #ff5e62); /* 点击后的背景渐变 */
  157. }
  158. .air-conditioner-controls {
  159. display: flex;
  160. justify-content: space-between;
  161. align-items: center;
  162. padding: 20rpx;
  163. }
  164. .control-button {
  165. width: 160rpx;
  166. height: 160rpx;
  167. border-radius: 50%;
  168. display: flex;
  169. flex-direction: column;
  170. align-items: center;
  171. justify-content: center;
  172. background-color: #fff;
  173. box-shadow: 0 4rpx 10rpx rgba(0, 0, 0, 0.1);
  174. margin: 0 10rpx;
  175. }
  176. .control-icon {
  177. width: 80rpx;
  178. height: 80rpx;
  179. }
  180. .control-text {
  181. font-size: 24rpx;
  182. color: #333;
  183. margin-top: 10rpx;
  184. }
  185. .image-container {
  186. position: relative;
  187. display: flex;
  188. flex-direction: column;
  189. align-items: center;
  190. justify-content: center;
  191. width: 100%;
  192. height: 620rpx; /* 根据实际情况设置容器高度 */
  193. overflow: hidden;
  194. }
  195. .background-image {
  196. width: 100%;
  197. height: 100%;
  198. margin-top: 38rpx;
  199. }
  200. .header {
  201. position: absolute;
  202. top: 20rpx; /* 距离顶部的距离,根据需要调整 */
  203. left: 20rpx; /* 距离左边的距离,确保按钮在图片左边 */
  204. display: flex;
  205. flex-direction: column;
  206. align-items: flex-start; /* 垂直对齐在顶部 */
  207. }
  208. .picker-container {
  209. width: 100%; /* 根据需要调整 */
  210. display: flex;
  211. align-items: center; /* 垂直居中 */
  212. justify-content: space-between; /* 水平两端对齐,你也可以根据需要调整 */
  213. padding: 20rpx; /* 容器内边距 */
  214. background-color: rgba(255, 255, 255, 0.8); /* 半透明背景色,可选 */
  215. position: relative; /* 如果需要相对于其他元素定位 */
  216. z-index: 10; /* 确保在图片上方 */
  217. }
  218. .picker-placeholder {
  219. line-height: 60rpx; /* 根据需要调整 */
  220. text-align: center;
  221. color: #ffffff; /* 占位符颜色 */
  222. z-index: 10;
  223. border-radius: 20rpx;
  224. font-size: 30rpx;
  225. }
  226. .picker-row {
  227. position: absolute;
  228. top: 20rpx; /* 根据需要调整 */
  229. left: 5rpx;
  230. right: 0;
  231. display: flex;
  232. justify-content: center;
  233. /* padding: 0 10px; */
  234. width:95%;
  235. }
  236. .picker {
  237. flex: 1; /* 平分空间 */
  238. background-color: transparent; /* 移除默认背景 */
  239. border: none; /* 移除默认边框 */
  240. /* border-radius: 5%; */
  241. border-radius: 20rpx;
  242. background-color: rgba(255, 255, 255, 1);
  243. width: 40%;
  244. }
  245. .picker-placeholder {
  246. text-align: center;
  247. line-height: 60rpx; /* 根据需要调整 */
  248. color: rgba(161, 161, 161, 1.0);
  249. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  250. }
  251. .picker-placeholder1 {
  252. text-align: center;
  253. line-height: 60rpx; /* 根据需要调整 */
  254. color: rgba(161, 161, 161, 1.0);
  255. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  256. margin-left:15rpx;
  257. font-size: 28rpx;
  258. }
  259. .picker-placeholder2 {
  260. text-align: center;
  261. line-height: 60rpx; /* 根据需要调整 */
  262. color: rgba(161, 161, 161, 1.0);
  263. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  264. margin-right:15rpx;
  265. font-size: 28rpx;
  266. }
  267. .button-group {
  268. position: absolute;
  269. top: 80rpx; /* 相对于picker-row的位置调整 */
  270. left: 10rpx;
  271. display: flex;
  272. flex-direction: column;
  273. z-index: 999;
  274. }
  275. .select-group {
  276. position: absolute;
  277. top: 80rpx; /* 相对于picker-row的位置调整 */
  278. right: 10rpx;
  279. width:160rpx;
  280. height:50rpx;
  281. display: flex;
  282. flex-direction: column;
  283. z-index: 999;
  284. }
  285. .small-button {
  286. width:160rpx;
  287. height:60rpx;
  288. font-size:25rpx;
  289. margin-top: 10rpx;
  290. background-color: #a873b6; /* 浅紫色示例,你可以根据需要选择具体的颜色 */
  291. background-color: rgba(255, 255, 255, 1);
  292. color: white;
  293. border-radius: 4px; /* 设置圆角 */
  294. }
  295. .small-button:last-child {
  296. margin-bottom: 0; /* 最后一个按钮不需要下边距 */
  297. }
  298. .centered-text {
  299. position: absolute;
  300. top: 540rpx; /* 垂直居中 */
  301. left: 0;
  302. right: 0;
  303. transform: translateY(-50%); /* 垂直居中 */
  304. text-align: center; /* 水平居中 */
  305. z-index: 999;
  306. }
  307. .centered-text_1 {
  308. position: absolute;
  309. top: 130rpx; /* 垂直居中 */
  310. left: 0;
  311. right: 0;
  312. transform: translateY(-50%); /* 垂直居中 */
  313. text-align: center; /* 水平居中 */
  314. }
  315. .text-line {
  316. display: block;
  317. margin-bottom: 20rpx; /* 行间距 */
  318. }
  319. .text-line-1 {
  320. color: white; /* 第一行文字颜色 */
  321. font-size: 40rpx; /* 第一行文字大小 */
  322. }
  323. .text-line-2 {
  324. color: #99ff62; /* 第二行文字颜色 */
  325. font-size: 120rpx; /* 第二行文字大小 */
  326. }
  327. .text-line-3 {
  328. color: #000; /* 第三行文字颜色 */
  329. font-size: 32rpx; /* 第三行文字大小 */
  330. margin-left: 18rpx;
  331. }
  332. .text-line:last-child {
  333. margin-bottom: 0; /* 最后一行不需要下边距 */
  334. }
  335. .container_1 {
  336. display: flex;
  337. justify-content: space-between; /* 根据需要调整间距 */
  338. align-items: center; /* 垂直居中 */
  339. padding: 20rpx; /* 外部间距 */
  340. }
  341. .item_c1 {
  342. display: flex;
  343. align-items: center; /* 垂直居中 */
  344. margin: 0 20rpx; /* 左右间距 */
  345. }
  346. .image_c1 {
  347. width: 100rpx; /* 图片宽度 */
  348. height: 100rpx; /* 图片高度 */
  349. margin-right: 20rpx; /* 图片与文字的间距 */
  350. }
  351. .text-container_c1 {
  352. flex: 1;
  353. }
  354. .text-line_c1 {
  355. /* 根据需要设置文本样式 */
  356. font-size: 28rpx;
  357. line-height: 1.5;
  358. margin-bottom: 10rpx; /* 行间距 */
  359. color:white;
  360. }
  361. /* 最后一行文字不需要下外边距 */
  362. .text-container_c1 .text-line_c1:last-child {
  363. margin-bottom: 0;
  364. }
  365. .title-container_2 {
  366. display: flex;
  367. justify-content: space-between;
  368. align-items: center;
  369. margin-right: 230rpx;
  370. padding: 10rpx;
  371. }
  372. .big-title_c2 {
  373. font-size: 40rpx; /* 设置字体大小,根据需要调整 */
  374. text-align: left;
  375. font-weight: 545; /* 设置为粗体 */
  376. color: #000000; /* 设置字体颜色 */
  377. /* 其他样式,如行高、字间距等 */
  378. line-height: 1.5;
  379. }
  380. .container_3 {
  381. display: flex;
  382. flex-direction: column;
  383. height: 100%; /* 或者你需要的任意高度 */
  384. width:95%;
  385. }
  386. .row_c3 {
  387. display: flex;
  388. justify-content: space-between; /* 使两个cell之间有一定间距 */
  389. align-items: flex-start; /* 顶端对齐 */
  390. padding: 10rpx 0; /* 上下内边距 */
  391. }
  392. .cell_c3 {
  393. display: flex;
  394. align-items: flex-start; /* 顶端对齐 */
  395. flex: 1; /* 使两个cell等宽 */
  396. margin-right: 10rpx; /* 右边距,最后一个cell可以去掉或使用 :nth-last-child() 选择器去除 */
  397. border-radius: 5%;
  398. width:80%;
  399. padding-left: 10rpx;
  400. margin-left: 10rpx;
  401. height:150rpx;
  402. background-color:rgba(255, 255, 255, 1);
  403. }
  404. .cell_c3:nth-last-child(1) {
  405. margin-right: 0; /* 移除最后一个cell的右边距 */
  406. }
  407. .cell-image_c3 {
  408. width: 50rpx; /* 图片宽度,可以根据需要调整 */
  409. height: 50rpx; /* 图片高度,可以根据需要调整 */
  410. margin-right: 10rpx; /* 图片与文字的间距 */
  411. }
  412. .cell-text_c3 {
  413. flex: 1; /* 使文本部分占据剩余空间 */
  414. }
  415. .text-line_c3 {
  416. white-space: nowrap; /* 防止文本自动换行,但这里不需要,因为我们想要两行显示 */
  417. overflow: hidden; /* 如果需要,可以隐藏溢出内容 */
  418. text-overflow: ellipsis; /* 如果需要,可以用省略号表示溢出 */
  419. border-radius: 5%;
  420. color: rgba(0, 170, 255, 0.8);
  421. /* 可以添加其他文本样式,如字体大小、颜色等 */
  422. }
  423. /* 如果需要固定文本行数,可以为 .text-line 添加特定的高度和行高 */
  424. .text-line_c3:nth-child(1) {
  425. /* 第一行文本样式(如果需要) */
  426. color: rgba(159, 159, 159, 0.8);
  427. }
  428. .text-line_c3:nth-child(2) {
  429. /* 第二行文本样式(如果需要) */
  430. color: rgba(255, 255, 255, 0.6);
  431. }
  432. .text-line_c3_1 {
  433. white-space: nowrap; /* 防止文本自动换行,但这里不需要,因为我们想要两行显示 */
  434. overflow: hidden; /* 如果需要,可以隐藏溢出内容 */
  435. text-overflow: ellipsis; /* 如果需要,可以用省略号表示溢出 */
  436. border-radius: 5%;
  437. background: linear-gradient(to right, #000 5%, #62c4d9 100%);
  438. /* 可以添加其他文本样式,如字体大小、颜色等 */
  439. }
  440. /* 如果需要固定文本行数,可以为 .text-line 添加特定的高度和行高 */
  441. .text-line_c3_1:nth-child(1) {
  442. /* 第一行文本样式(如果需要) */
  443. color: rgba(255, 255, 255, 0.8);
  444. }
  445. .text-line_c3_1:nth-child(2) {
  446. /* 第二行文本样式(如果需要) */
  447. color: rgba(255, 255, 255, 0.6);
  448. }
  449. .text-line_c31 {
  450. white-space: nowrap; /* 防止文本自动换行,但这里不需要,因为我们想要两行显示 */
  451. overflow: hidden; /* 如果需要,可以隐藏溢出内容 */
  452. text-overflow: ellipsis; /* 如果需要,可以用省略号表示溢出 */
  453. /* 可以添加其他文本样式,如字体大小、颜色等 */
  454. font-weight: 550;
  455. }
  456. /* 如果需要固定文本行数,可以为 .text-line 添加特定的高度和行高 */
  457. .text-line_c31:nth-child(1) {
  458. /* 第一行文本样式(如果需要) */
  459. color: #000;
  460. }
  461. .text-line_c31:nth-child(2) {
  462. /* 第二行文本样式(如果需要) */
  463. color: white;
  464. }
  465. .container_4 {
  466. display: flex;
  467. justify-content: space-between;
  468. align-items: flex-start;
  469. width:95%;
  470. margin-top:10rpx;
  471. /* padding: 10px; */
  472. }
  473. .left-panel_c4 {
  474. position: relative;
  475. flex: 1; /* 左边面板占据剩余空间的一半 */
  476. display: flex;
  477. flex-direction: column;
  478. justify-content: space-between; /* 标题和内容垂直分布 */
  479. align-items: center;
  480. /* padding-right: 10px; */
  481. background-color:rgba(255, 255, 255, 1);
  482. height:320rpx;
  483. margin-left:10rpx;
  484. border-radius: 5%;
  485. }
  486. .left-panel-header_c4 {
  487. /* 标题样式 */
  488. font-weight: bold;
  489. margin-bottom: 20rpx; /* 与内容的间距 */
  490. color:white;
  491. }
  492. .left-panel-content_c4 {
  493. /* 内容样式 */
  494. color:white;
  495. margin-bottom: 100rpx;
  496. padding:20rpx;
  497. }
  498. .right-panel_c4 {
  499. flex: 1; /* 右边面板占据剩余空间的一半 */
  500. display: flex;
  501. flex-direction: column;
  502. justify-content: space-between; /* 垂直分布三个cell */
  503. height: 100%; /* 与左边面板等高 */
  504. margin-left:15rpx;
  505. }
  506. .cell_c4 {
  507. display: flex;
  508. align-items: center; /* 顶端对齐 */
  509. justify-content: flex-start; /* 子元素靠右对齐 */
  510. padding: 20rpx 5rpx; /* 上下内边距 */
  511. margin-bottom:10rpx;
  512. height:62rpx;
  513. background-color:rgba(255, 255, 255, 1);
  514. border-radius: 5%;
  515. }
  516. .cell-image_c4 {
  517. width: 60rpx; /* 图片宽度 */
  518. height: 60rpx; /* 图片高度 */
  519. margin-right: 10rpx;
  520. }
  521. .cell-text_c4 {
  522. flex: 1; /* 文本部分占据剩余空间 */
  523. }
  524. .text-line_c4 {
  525. /* 文本行样式 */
  526. white-space: nowrap; /* 防止文本自动换行,但这里不需要 */
  527. overflow: hidden; /* 如果需要,可以隐藏溢出内容 */
  528. text-overflow: ellipsis; /* 如果需要,可以用省略号表示溢出 */
  529. color:rgba(159, 159, 159, 0.8);
  530. }
  531. /* 如果需要固定文本为两行显示,可以为 .text-line 设置特定的 height 和 line-height */
  532. .text-line_c4 {
  533. height: 48rpx; /* 假设每行文本高度为24px */
  534. line-height: 48rpx; /* 行高与文本高度相同 */
  535. /* 还可以添加其他文本样式,如字体大小、颜色等 */
  536. }
  537. .image_c4 {
  538. width: 100%;
  539. height: 100%;
  540. object-fit: cover; /* 确保图片填充整个容器并保持其宽高比 */
  541. }
  542. .text-container_c4 {
  543. position: absolute; /* 绝对定位使得文字可以位于图片之上 */
  544. top: 50%; /* 垂直居中 */
  545. left: 50%; /* 水平居中 */
  546. width:90%;
  547. transform: translate(-50%, -50%); /* 调整位置以完全居中 */
  548. color: white; /* 或者其他你需要的颜色 */
  549. text-align: center; /* 确保文字水平居中(尽管在绝对定位下这不是必需的)*/
  550. }
  551. .text-container_c4_top_left {
  552. position: absolute; /* 绝对定位使得文字可以位于图片之上 */
  553. top: 9%; /* 垂直居中 */
  554. left: 20%; /* 水平居中 */
  555. width:40%;
  556. transform: translate(-50%, -50%); /* 调整位置以完全居中 */
  557. color: white; /* 或者其他你需要的颜色 */
  558. text-align: center; /* 确保文字水平居中(尽管在绝对定位下这不是必需的)*/
  559. }
  560. .text_c4 {
  561. color: #3C3796;
  562. }
  563. .text_c4_left_top {
  564. color: #ffffff;
  565. font-size: 28rpx;
  566. font-weight: 600;
  567. }
  568. .text_c4_1 {
  569. color: #0055ff;
  570. font-weight: 600;
  571. }
  572. .text-line_c41 {
  573. /* 文本行样式 */
  574. white-space: nowrap; /* 防止文本自动换行,但这里不需要 */
  575. overflow: hidden; /* 如果需要,可以隐藏溢出内容 */
  576. text-overflow: ellipsis; /* 如果需要,可以用省略号表示溢出 */
  577. color: #000;
  578. font-weight:700;
  579. }
  580. /* 如果需要固定文本为两行显示,可以为 .text-line 设置特定的 height 和 line-height */
  581. .text-line_c41 {
  582. height: 48rpx; /* 假设每行文本高度为24px */
  583. line-height: 48rpx; /* 行高与文本高度相同 */
  584. /* 还可以添加其他文本样式,如字体大小、颜色等 */
  585. }
  586. .container_5 {
  587. display: flex;
  588. flex-direction: column;
  589. align-items: flex-start;
  590. /* padding: 40rpx; */
  591. border-radius: 5%;
  592. width:95%;
  593. margin-top:30rpx;
  594. background-color:rgba(255, 255, 255, 1);
  595. }
  596. .header_c5 {
  597. display: flex;
  598. justify-content: flex-start;
  599. align-items: center;
  600. margin: 20rpx 0rpx 20rpx 20rpx;
  601. width:92%;
  602. }
  603. .header-image_c5 {
  604. width: 100rpx; /* 根据需要调整图片大小 */
  605. height: 100rpx; /* 根据需要调整图片大小 */
  606. margin-right: 20rpx;
  607. }
  608. .header-image_comma {
  609. width: 40rpx; /* 根据需要调整图片大小 */
  610. height: 40rpx; /* 根据需要调整图片大小 */
  611. margin-left: 10rpx;
  612. }
  613. .header-title_c5 {
  614. font-size: 38rpx; /* 标题字体大小 */
  615. color: #000;
  616. }
  617. .data-row_c5 {
  618. display: flex;
  619. justify-content: space-between;
  620. align-items: center;
  621. /* margin-bottom: 10rpx; */
  622. margin-left: 20rpx;
  623. width:92%;
  624. background-color:rgba(221, 222, 255, 0.2);
  625. border-top-left-radius: 20rpx;
  626. border-top-right-radius: 20rpx;
  627. padding:0rpx 15rpx;
  628. }
  629. .data-row_c5_down {
  630. display: flex;
  631. justify-content: space-between;
  632. align-items: center;
  633. /* margin-bottom: 10rpx; */
  634. margin-left: 20rpx;
  635. width:92%;
  636. background-color:rgba(221, 222, 255, 0.2);
  637. border-bottom-left-radius: 20rpx;
  638. border-bottom-right-radius: 20rpx;
  639. padding:0rpx 15rpx;
  640. }
  641. .data-item_c5 {
  642. display: flex;
  643. align-items: center;
  644. }
  645. .data-item_c5.left_c5 {
  646. display: flex;
  647. justify-content: flex-start; /* 子元素靠右对齐 */
  648. align-items: center; /* 如果需要垂直居中对齐 */
  649. padding: 10rpx 5rpx; /* 上下内边距 */
  650. margin-bottom:2rpx;
  651. height:52rpx;
  652. /* background-color:rgba(255, 255, 255, 1); */
  653. border-radius: 5%;
  654. }
  655. .data-item_c5.right_c5 {
  656. display: flex;
  657. justify-content: flex-end; /* 子元素靠右对齐 */
  658. align-items: center; /* 如果需要垂直居中对齐 */
  659. padding: 20rpx 5rpx; /* 上下内边距 */
  660. margin-bottom:10rpx;
  661. height:62rpx;
  662. /* background-color:rgba(255, 255, 255, 1); */
  663. border-radius: 5%;
  664. }
  665. .data-image_c5 {
  666. width: 45rpx; /* 根据需要调整图片大小 */
  667. height: 45rpx; /* 根据需要调整图片大小 */
  668. margin-right: 8rpx; /* 图片和文本之间的间距 */
  669. }
  670. .data-text_c5 {
  671. /* 文本样式可以根据需要调整 */
  672. color:#000;
  673. }
  674. .dot_c51{
  675. width: 20rpx;
  676. height: 20rpx;
  677. background-color: rgba(140, 120, 255, 0.9);
  678. border-radius: 50%;
  679. display: inline-block;
  680. margin-right:10rpx;
  681. }
  682. .data-text_c51 {
  683. /* 文本样式可以根据需要调整 */
  684. margin-left:10rpx;
  685. font-size: 20rpx;
  686. color:rgba(140, 120, 255, 0.6);
  687. background-color:rgba(140, 120, 255, 0.2);
  688. }
  689. .dot_c51_1{
  690. width: 20rpx;
  691. height: 20rpx;
  692. background-color: rgba(85, 255, 127, 0.9);
  693. border-radius: 50%;
  694. display: inline-block;
  695. margin-right:10rpx;
  696. }
  697. .data-text_c51_1 {
  698. /* 文本样式可以根据需要调整 */
  699. margin-left:10rpx;
  700. font-size: 20rpx;
  701. color:rgba(85, 255, 127, 0.6);
  702. background-color:rgba(85, 255, 127, 0.2);
  703. }
  704. .separator_c5 {
  705. width: 100%;
  706. height: 2rpx;
  707. background-color: #fff; /* 分割线的颜色为白色 */
  708. margin-bottom: 20rpx;
  709. }
  710. .container_6 {
  711. display: flex;
  712. flex-direction: column;
  713. align-items: flex-start;
  714. /* padding: 20rpx; */
  715. border-radius: 5%;
  716. width:95%;
  717. margin-top: 20rpx;
  718. background-color:rgba(255, 255, 255, 1);
  719. }
  720. .title-row_c6 {
  721. display: flex;
  722. justify-content: space-between;
  723. align-items: center;
  724. margin: 20rpx 0rpx 20rpx 20rpx;
  725. width:92%;
  726. }
  727. .title-left_c6 {
  728. display: flex;
  729. justify-content: flex-start; /* 子元素靠右对齐 */
  730. align-items: center; /* 如果需要垂直居中对齐 */
  731. }
  732. .title-right_c6 {
  733. display: flex;
  734. justify-content: flex-end; /* 子元素靠右对齐 */
  735. align-items: center; /* 如果需要垂直居中对齐 */
  736. }
  737. .title-image_c6 {
  738. width: 100rpx; /* 根据需要调整图片大小 */
  739. height: 100rpx; /* 根据需要调整图片大小 */
  740. margin-right: 20rpx;
  741. }
  742. .title-text_c6, .title-text-right_c6 {
  743. font-size: 35rpx; /* 标题字体大小 */
  744. color: #000;
  745. }
  746. .title-text-right_c6_1 {
  747. font-size: 32rpx; /* 标题字体大小 */
  748. color: #ffb9a4;
  749. margin-right:10rpx;
  750. /* background-color: rgba(255, 255, 255, 1); */
  751. }
  752. .title-text-right_c6 {
  753. text-align: right;
  754. }
  755. .data-row_c6 {
  756. display: flex;
  757. justify-content: space-between;
  758. align-items: center;
  759. margin-bottom: 20rpx;
  760. width:95%;
  761. margin-left: 20rpx;
  762. }
  763. .data-row_c6_0 {
  764. margin-bottom: 20rpx;
  765. width:95%;
  766. margin-left: 20rpx;
  767. border-top-left-radius: 20rpx;
  768. border-top-right-radius: 20rpx;
  769. background-color:rgba(221, 222, 255, 0.2);
  770. padding:15rpx;
  771. }
  772. .data-row_c6_1 {
  773. display: flex;
  774. justify-content: space-between;
  775. align-items: center;
  776. }
  777. .data-row_c6_2 {
  778. display: flex;
  779. justify-content: space-between;
  780. align-items: center;
  781. margin-top:15rpx;
  782. }
  783. .data-item_c6 {
  784. flex: 1; /* 保证左右两边等宽或按比例分配空间 */
  785. }
  786. .data-item_c6.left_c60 {
  787. display: flex;
  788. justify-content: flex-start;
  789. align-items: center; /* 如果需要垂直居中对齐 */
  790. text-align: left;
  791. color:white;
  792. font-size: 38rpx;
  793. }
  794. .data-item_c6.left_c6 {
  795. display: flex;
  796. justify-content: flex-start;
  797. align-items: center; /* 如果需要垂直居中对齐 */
  798. text-align: left;
  799. color:rgba(0, 0, 0, 0.6);
  800. }
  801. .data-item_c6.left_c61 {
  802. display: flex;
  803. justify-content: flex-start;
  804. align-items: center; /* 如果需要垂直居中对齐 */
  805. text-align: left;
  806. color:#000;
  807. /* color:rgba(0, 0, 0, 0.6); */
  808. font-size: 38rpx;
  809. font-weight: 525;
  810. }
  811. .data-item_c6.left_c62 {
  812. display: flex;
  813. justify-content: flex-start;
  814. align-items: center; /* 如果需要垂直居中对齐 */
  815. text-align: left;
  816. color:#000;
  817. }
  818. .data-item_c6.left_c62_1 {
  819. display: flex;
  820. justify-content: flex-start;
  821. align-items: center; /* 如果需要垂直居中对齐 */
  822. text-align: left;
  823. font-size:23rpx;
  824. color:#ff0000;
  825. }
  826. .data-item_c6.right_c6 {
  827. display: flex;
  828. justify-content: flex-end; /* 子元素靠右对齐 */
  829. align-items: center; /* 如果需要垂直居中对齐 */
  830. text-align: right;
  831. color:rgba(0, 0, 0, 0.6);
  832. }
  833. .separator_c6 {
  834. width: 100%;
  835. height: 2rpx;
  836. background-color: #ccc; /* 分割线的颜色 */
  837. margin-bottom: 20rpx;
  838. }
  839. .echarts-container_c6 {
  840. width: 100%; /* 可以根据需要调整 */
  841. height: 300rpx; /* 可以根据需要调整,或者设置为百分比 */
  842. display: flex;
  843. justify-content: center;
  844. align-items: center; /* 如果需要垂直居中对齐 */
  845. }
  846. /* ec-canvas 组件的样式可以根据需要进行调整 */
  847. ec-canvas_c6 {
  848. width: 92%;
  849. height: 100%;
  850. margin-left:50rpx;
  851. }
  852. .container_4_1 {
  853. display: flex;
  854. align-items: center; /* 垂直居中 */
  855. justify-content: left; /* 水平居中(如果需要整个容器内的内容居中)*/
  856. padding-top:10rpx;
  857. /* 如果只需要image和text水平居中,并且它们占据整个容器的宽度,可以删除justify-content并设置flex-direction: row*/
  858. }
  859. .image_4_1 {
  860. width: 50rpx; /* 设置图片的宽度 */
  861. height: 50rpx; /* 设置图片的高度 */
  862. margin-right: 20rpx; /* 图片和文本之间的间距 */
  863. }
  864. .text_4_1 {
  865. /* 这里可以设置文本的样式,如字体大小、颜色等 */
  866. font-size: 50rpx;
  867. color: #ffffff;
  868. }
  869. .picker-view {
  870. margin-top: 12rpx;
  871. }
  872. .loading-container {
  873. position: fixed;
  874. top: 50%;
  875. left: 50%;
  876. transform: translate(-50%, -50%);
  877. padding: 10px;
  878. background-color: #00ffff;
  879. width: 350rpx;
  880. color: #909090;
  881. border-radius: 4px;
  882. z-index: 9999; /* 确保它显示在其他内容之上 */
  883. }
  884. .loading-text {
  885. /* 其他样式 */
  886. width:300rpx;
  887. white-space: nowrap;
  888. }
  889. .circle-container-yh {
  890. display: flex;
  891. align-items: center;
  892. justify-content: center; /* 让左右文本分布在图片两侧 */
  893. width: 100%; /* 根据需要调整,确保足够宽以容纳图片和文本 */
  894. }
  895. .circle-image-yh {
  896. width: 200rpx; /* 假设圆环图片宽度 */
  897. height: 200rpx; /* 假设圆环图片高度 */
  898. }
  899. .text-container-yh {
  900. display: flex;
  901. flex-direction: column; /* 文本内容垂直排列 */
  902. align-items: flex-start; /* 文本内容从顶部开始排列 */
  903. align-items: left;
  904. }
  905. .left-text-yh {
  906. margin-left:15rpx;
  907. }
  908. .left-text-yh, .right-text-yh {
  909. /* 根据需要添加样式,如内边距、字体大小等 */
  910. display: flex;
  911. align-items: center;
  912. }
  913. .icon-yh {
  914. width: 30rpx; /* 假设小图片的宽度 */
  915. height: 30rpx; /* 假设小图片的高度 */
  916. margin-right: 10rpx; /* 小图片与文字的间距 */
  917. }
  918. .top-text-yh {
  919. /* 上方文字的样式 */
  920. display: flex;
  921. justify-content: space-between; /* 让左右文本分布在水平方向上 */
  922. align-items: center;
  923. margin-top: 20rpx; /* 与圆环图片的间距 */
  924. }
  925. .text-row-yh {
  926. display: flex;
  927. align-items: center;
  928. margin-bottom: 10rpx; /* 行与行之间的间距 */
  929. }
  930. .centered-text-yh {
  931. position: absolute;
  932. top: 85rpx; /* 垂直居中 */
  933. left: 0;
  934. right: 0;
  935. transform: translateY(-50%); /* 垂直居中 */
  936. text-align: center; /* 水平居中 */
  937. }
  938. .text-line-yh {
  939. display: block;
  940. margin-bottom: 20rpx; /* 行间距 */
  941. }
  942. .text-line-yh-1 {
  943. color: white; /* 第一行文字颜色 */
  944. font-size: 40rpx; /* 第一行文字大小 */
  945. }
  946. .text-line-yh-2 {
  947. color: #99ff62; /* 第二行文字颜色 */
  948. font-size: 120rpx; /* 第二行文字大小 */
  949. }
  950. .text-line-yh-3 {
  951. color: white; /* 第三行文字颜色 */
  952. font-size: 32rpx; /* 第三行文字大小 */
  953. }
  954. .text-content-yh{
  955. color: #d4d4d4; /* 第三行文字颜色 */
  956. font-size: 28rpx; /* 第三行文字大小 */
  957. }
  958. .text-content-yh_1{
  959. color: #000000; /* 第三行文字颜色 */
  960. font-size: 28rpx; /* 第三行文字大小 */
  961. }
  962. /* 蓝色 */
  963. .blue-dot-up {
  964. width: 20rpx;
  965. height: 20rpx;
  966. background-color: #5555ff;
  967. border-radius: 50%;
  968. display: inline-block;
  969. margin-right:10rpx;
  970. margin-top:16rpx;
  971. }
  972. /* 紫色 */
  973. .purple-dot-up {
  974. width: 20rpx;
  975. height: 20rpx;
  976. background-color: #9d00f1;
  977. border-radius: 50%;
  978. display: inline-block;
  979. margin-right:10rpx;
  980. margin-top:16rpx;
  981. }
  982. /* 绿色 */
  983. .green-dot-up {
  984. width: 20rpx;
  985. height: 20rpx;
  986. background-color: #55ff7f;
  987. border-radius: 50%;
  988. display: inline-block;
  989. margin-right:10rpx;
  990. margin-top:16rpx;
  991. }
  992. /* 橘色 */
  993. .organize-dot-up {
  994. width: 20rpx;
  995. height: 20rpx;
  996. background-color: #ffaa00;
  997. border-radius: 50%;
  998. display: inline-block;
  999. margin-right:10rpx;
  1000. margin-top:16rpx;
  1001. }
  1002. /* 蓝色 */
  1003. .blue-dot {
  1004. width: 20rpx;
  1005. height: 20rpx;
  1006. background-color: #5555ff;
  1007. border-radius: 50%;
  1008. display: inline-block;
  1009. margin-right:10rpx;
  1010. }
  1011. /* 紫色 */
  1012. .purple-dot {
  1013. width: 20rpx;
  1014. height: 20rpx;
  1015. background-color: #9d00f1;
  1016. border-radius: 50%;
  1017. display: inline-block;
  1018. margin-right:10rpx;
  1019. }
  1020. /* 绿色 */
  1021. .green-dot {
  1022. width: 20rpx;
  1023. height: 20rpx;
  1024. background-color: #55ff7f;
  1025. border-radius: 50%;
  1026. display: inline-block;
  1027. margin-right:10rpx;
  1028. }
  1029. /* 橘色 */
  1030. .organize-dot {
  1031. width: 20rpx;
  1032. height: 20rpx;
  1033. background-color: #ffaa00;
  1034. border-radius: 50%;
  1035. display: inline-block;
  1036. margin-right:10rpx;
  1037. }
  1038. .echarts-container_c000 {
  1039. width: 300rpx; /* 可以根据需要调整 */
  1040. height: 300rpx; /* 可以根据需要调整,或者设置为百分比 */
  1041. display: flex;
  1042. justify-content: center;
  1043. align-items: center; /* 如果需要垂直居中对齐 */
  1044. margin-left:150rpx;
  1045. }
  1046. .echarts-container_c00 {
  1047. width: 300rpx; /* 可以根据需要调整 */
  1048. height: 300rpx; /* 可以根据需要调整,或者设置为百分比 */
  1049. /* display: flex;
  1050. justify-content: center;
  1051. align-items: center; */
  1052. /* z-index: -1; */
  1053. }
  1054. .container_00 {
  1055. display: flex;
  1056. flex-direction: column;
  1057. align-items: flex-start;
  1058. /* padding: 40rpx; */
  1059. border-radius: 5%;
  1060. width:95%;
  1061. margin-top:100rpx;
  1062. background-color: rgba(255, 255, 255, 1);
  1063. height:500rpx;
  1064. }
  1065. .separator_c00 {
  1066. width: 90%;
  1067. height: 1rpx;
  1068. background-color: #ebebeb; /* 分割线的颜色为白色 */
  1069. margin-bottom: 15rpx;
  1070. }
  1071. .header_c00 {
  1072. display: flex;
  1073. justify-content: flex-start;
  1074. align-items: center;
  1075. margin: 20rpx 0rpx 20rpx 20rpx;
  1076. width:92%;
  1077. }
  1078. .header-image_c00 {
  1079. width: 100rpx; /* 根据需要调整图片大小 */
  1080. height: 100rpx; /* 根据需要调整图片大小 */
  1081. margin-right: 20rpx;
  1082. }
  1083. .header-title_c00 {
  1084. font-size: 38rpx; /* 标题字体大小 */
  1085. color:white;
  1086. }
  1087. .data-row_c00 {
  1088. display: flex;
  1089. justify-content: space-between;
  1090. align-items: center;
  1091. margin-bottom: 20rpx;
  1092. margin-left: 20rpx;
  1093. width:92%;
  1094. padding: 20rpx 0rpx;
  1095. }
  1096. .data-item_c00 {
  1097. display: flex;
  1098. align-items: center;
  1099. }
  1100. .data-item_c00.left_c00 {
  1101. display: flex;
  1102. justify-content: flex-start; /* 子元素靠右对齐 */
  1103. align-items: center; /* 如果需要垂直居中对齐 */
  1104. }
  1105. .data-item_c00.right_c00 {
  1106. display: flex;
  1107. justify-content: flex-end; /* 子元素靠右对齐 */
  1108. align-items: center; /* 如果需要垂直居中对齐 */
  1109. }
  1110. .data-image_c00 {
  1111. width: 45rpx; /* 根据需要调整图片大小 */
  1112. height: 45rpx; /* 根据需要调整图片大小 */
  1113. margin-left: 12rpx; /* 图片和文本之间的间距 */
  1114. }
  1115. .data-image_c00_0 {
  1116. width: 45rpx; /* 根据需要调整图片大小 */
  1117. height: 45rpx; /* 根据需要调整图片大小 */
  1118. }
  1119. .data-image_c00_01 {
  1120. width: 20rpx; /* 根据需要调整图片大小 */
  1121. height: 20rpx; /* 根据需要调整图片大小 */
  1122. margin-left:5rpx;
  1123. }
  1124. .data-text_c00_0 {
  1125. /* 文本样式可以根据需要调整 */
  1126. color: rgba(57, 57, 57, 1.0);
  1127. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1128. font-size:24rpx;
  1129. /* width:40rpx; */
  1130. margin-left:5rpx;
  1131. /* justify-content: center;
  1132. align-items: center; */
  1133. border-top-right-radius: 20rpx;
  1134. border-bottom-right-radius: 20rpx;
  1135. background-color: rgba(255, 255, 255, 1);
  1136. }
  1137. .data-text_c00 {
  1138. /* 文本样式可以根据需要调整 */
  1139. color: #000;
  1140. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1141. font-size:30rpx;
  1142. margin-left:5rpx;
  1143. }
  1144. .data-text_c002 {
  1145. /* 文本样式可以根据需要调整 */
  1146. color: #000;
  1147. font-family: 'Microsoft YaHei', 'Heiti SC', 'Heiti TC', sans-serif;
  1148. font-size:28rpx;
  1149. font-weight:600;
  1150. }
  1151. .data-text_c001 {
  1152. /* 文本样式可以根据需要调整 */
  1153. margin-left:10rpx;
  1154. font-size: 20rpx;
  1155. color:rgba(255, 255, 255, 0.6);
  1156. }
  1157. .block-element {
  1158. display: block;
  1159. }
  1160. .hidden-element {
  1161. display: none;
  1162. }
  1163. .picker-arrow {
  1164. display: inline-block;
  1165. width: 0;
  1166. height: 0;
  1167. border-left: 10rpx solid transparent;
  1168. border-right: 10rpx solid transparent;
  1169. border-top: 10px solid rgba(161, 161, 161, 1.0);
  1170. margin-left: 2px;
  1171. margin-top: 10px;
  1172. margin-right: 10rpx;
  1173. }
  1174. .picker_out {
  1175. display: flex;
  1176. justify-content: space-between;
  1177. background-color: transparent; /* 移除默认背景 */
  1178. border: none; /* 移除默认边框 */
  1179. border-radius: 20rpx;
  1180. background-color: rgba(255, 255, 255, 1);
  1181. width: 58%;
  1182. margin-left: 15rpx;
  1183. }
  1184. .picker-row_view{
  1185. display: flex;
  1186. justify-content: left;
  1187. background-color: transparent; /* 移除默认背景 */
  1188. align-items: center;
  1189. width: 42%;
  1190. background-color: rgba(255, 255, 255, 1);
  1191. border-top-right-radius: 20rpx;
  1192. border-bottom-right-radius: 20rpx;
  1193. /* height:50rpx; */
  1194. }