运维小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. /* */
  2. .navigation-container {
  3. position: fixed;
  4. width: 100%;
  5. z-index: 99;
  6. background-color: #89bfea;
  7. }
  8. .navigation-bar {
  9. position: relative;
  10. width: 100%;
  11. display: flex;
  12. align-items: center;
  13. /* justify-content: center; */
  14. font-size: 36rpx;
  15. padding-left: 40rpx;
  16. flex-direction: row;
  17. color: #fff;
  18. }
  19. .title_1{
  20. font-weight: 500;
  21. font-size: 28rpx;
  22. display: flex;
  23. align-items: center;
  24. }
  25. .title_image{
  26. width: 24rpx;
  27. height: 24rpx;
  28. margin-left: 10rpx;
  29. transition: transform 3s ease; /* 添加过渡效果 */
  30. }
  31. .title_2{
  32. font-size: 28rpx;
  33. margin-top: 30rpx;
  34. }
  35. .nav-title {
  36. height: 100%;
  37. display: flex;
  38. align-items: center;
  39. margin-left: 20rpx;
  40. box-sizing: border-box;
  41. }
  42. .nav-search {
  43. position: absolute;
  44. display: flex;
  45. justify-content: flex-end;
  46. align-items: center;
  47. }
  48. /* // */
  49. .container {
  50. width: 100%;
  51. min-height: 100%;
  52. display: flex;
  53. align-items: center;
  54. /* 007544 */
  55. background: linear-gradient(to bottom, #0F80DC -40%, #F0F5F5 40%, #F0F5F5 100%);
  56. /* background: linear-gradient(to bottom, #007544 -40%, #F0F5F5 40%,#F0F5F5 100%); */
  57. }
  58. .home{
  59. width: 100%;
  60. padding: 20rpx 20rpx;
  61. box-sizing: border-box;
  62. }
  63. .statistics{
  64. width: 100%;
  65. padding: 0rpx 40rpx;
  66. box-sizing: border-box;
  67. }
  68. .statistics_top{
  69. display: flex;
  70. justify-content: space-between;
  71. }
  72. .statistics_1{
  73. display: flex;
  74. flex-direction: column;
  75. justify-content: center;
  76. align-items: center;
  77. }
  78. .statistics_digit{
  79. font-size: 48rpx;
  80. }
  81. .statistics_title{
  82. margin-top: 10rpx;
  83. }
  84. .vajra{
  85. width: 100%;
  86. padding: 16rpx;
  87. display: flex;
  88. align-items: center;
  89. justify-content: space-between;
  90. background-color: #fff;
  91. box-sizing: border-box;
  92. border-radius: 20rpx;
  93. margin-top: 60rpx;
  94. }
  95. .vajra_role{
  96. width: 22%;
  97. padding: 20rpx 0rpx;
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: center;
  101. align-items: center;
  102. border-radius: 10rpx;
  103. /* background-color: #ffffff; */
  104. }
  105. .vajra_rights{
  106. width: 22%;
  107. padding: 20rpx 0rpx;
  108. display: flex;
  109. flex-direction: column;
  110. justify-content: center;
  111. align-items: center;
  112. border-radius: 10rpx;
  113. /* background-color: #ffffff; */
  114. }
  115. .vajra_apply{
  116. width: 22%;
  117. padding: 20rpx 0rpx;
  118. display: flex;
  119. flex-direction: column;
  120. justify-content: center;
  121. align-items: center;
  122. border-radius: 10rpx;
  123. /* background-color: #ffffff; */
  124. }
  125. .role{
  126. width: 120rpx;
  127. height: 120rpx;
  128. margin-bottom: 20rpx;
  129. border-radius: 16rpx;
  130. box-sizing: border-box;
  131. }
  132. .role_botton{
  133. width: 60rpx;
  134. height: 60rpx;
  135. box-sizing: border-box;
  136. }
  137. .vajra_share{
  138. width: 22%;
  139. /* padding: 20rpx 0rpx; */
  140. display: flex;
  141. flex-direction: column;
  142. justify-content: center;
  143. align-items: center;
  144. border-radius: 10rpx;
  145. background-color: #ffffff;
  146. }
  147. .role_botton{
  148. width: 60rpx;
  149. height: 60rpx;
  150. box-sizing: border-box;
  151. }
  152. button{
  153. padding: 0rpx;
  154. margin: 0rpx;
  155. width: 100%;
  156. height: 148rpx;
  157. padding-top: 20rpx;
  158. display: flex;
  159. flex-direction: column;
  160. align-items: center;
  161. font-size: 28rpx;
  162. /* line-height: 130rpx; */
  163. border:0rpx #f5f5f5 solid;
  164. background-color: rgba(0, 0, 0, 0);
  165. }
  166. wx-button:after {
  167. display: flex;
  168. flex-direction: column;
  169. width: 100%;
  170. height: 148rpx;
  171. padding: 20rpx 0rpx;
  172. font-size: 28rpx;
  173. /* line-height: 130rpx; */
  174. border:0rpx #f5f5f5 solid;
  175. background-color: rgba(0, 0, 0, 0);
  176. }
  177. .examine{
  178. margin-top: 40rpx;
  179. font-size: 32rpx;
  180. }
  181. .examine_box{
  182. width: 100%;
  183. background-color: #fff;
  184. padding: 30rpx 0rpx;
  185. margin-top: 20rpx;
  186. border-radius: 10rpx;
  187. box-sizing: border-box;
  188. }
  189. .examine_title{
  190. width: 100%;
  191. display: flex;
  192. align-items: center;
  193. padding: 0rpx 0rpx 0rpx 20rpx;
  194. box-sizing: border-box;
  195. }
  196. .examine_title0{
  197. width: 120rpx;
  198. height: 40rpx;
  199. font-size: 22rpx;
  200. display: flex;
  201. align-items: center;
  202. justify-content: center;
  203. border-radius: 30rpx;
  204. /* background-color: #0F80DC; */
  205. background-color: rgba(15, 128, 220, 0.2);
  206. color: #0F80DC;
  207. border: 1rpx solid #0F80DC;
  208. box-sizing: border-box;
  209. }
  210. .examine_title01{
  211. width: 120rpx;
  212. height: 40rpx;
  213. font-size: 22rpx;
  214. display: flex;
  215. align-items: center;
  216. justify-content: center;
  217. border-radius: 30rpx;
  218. /* background-color: #0F80DC; */
  219. color:#ee8d60;
  220. background-color: rgba(241, 120, 20, 0.2);
  221. border: 1rpx solid #f39b72;
  222. box-sizing: border-box;
  223. }
  224. .examine_title02{
  225. width: 120rpx;
  226. height: 40rpx;
  227. font-size: 22rpx;
  228. display: flex;
  229. align-items: center;
  230. justify-content: center;
  231. border-radius: 30rpx;
  232. /* background-color: #0F80DC; */
  233. color:#0F80DC;
  234. background-color: rgba(15, 128, 220, 0.2);
  235. /* color: #007544; */
  236. border: 1rpx solid #0F80DC;
  237. box-sizing: border-box;
  238. }
  239. .examine_title1{
  240. flex: 1;
  241. font-weight: 600;
  242. font-size: 32rpx;
  243. display: flex;
  244. align-items: center;
  245. padding: 0rpx 10rpx;
  246. overflow: hidden;
  247. display: -webkit-box;
  248. text-overflow: ellipsis;
  249. box-orient: vertical;
  250. -webkit-box-orient: vertical;
  251. -moz-box-orient: vertical;
  252. -o-box-orient: vertical;
  253. -ms-box-orient: vertical;
  254. line-clamp: 1; /* 超出2行显示省略号 */
  255. -webkit-line-clamp: 1; /* 超出2行显示省略号 */
  256. box-sizing: border-box;
  257. }
  258. .examine_title2{
  259. width: 100rpx;
  260. height: 40rpx;
  261. font-size: 22rpx;
  262. display: flex;
  263. align-items: center;
  264. justify-content: center;
  265. border-top-left-radius:100rpx;
  266. border-bottom-left-radius:100rpx;
  267. background-color: rgb(255, 0, 0,0.2);
  268. color: red;
  269. border: 1rpx solid red;
  270. border-right: 0rpx solid red;
  271. box-sizing: border-box;
  272. }
  273. .examine_content{
  274. flex: 1;
  275. font-size: 24rpx;
  276. padding: 20rpx 20rpx;
  277. margin: 20rpx 20rpx;
  278. color: #cccccc;
  279. background-color: #f9f9f9;
  280. border-radius: 8rpx;
  281. box-sizing: border-box;
  282. }
  283. .feedback{
  284. margin-top: 8rpx;
  285. }
  286. .examine_bottom{
  287. display: flex;
  288. }
  289. .examine_bottom{
  290. display: flex;
  291. align-items: center;
  292. justify-content: space-between;
  293. padding: 0rpx 20rpx;
  294. box-sizing: border-box;
  295. }
  296. .examine_button{
  297. width: 100%;
  298. padding: 0rpx 20rpx;
  299. margin-top: 30rpx;
  300. display: flex;
  301. align-items: center;
  302. justify-content: space-between;
  303. box-sizing: border-box;
  304. }
  305. .examine_buttonleft{
  306. width: 160rpx;
  307. height:60rpx;
  308. border-radius: 12rpx;
  309. display: flex;
  310. align-items: center;
  311. justify-content: center;
  312. background-color: #0F80DC;
  313. color: #fff;
  314. box-sizing: border-box;
  315. }
  316. .examine_buttonright{
  317. width:160rpx;
  318. height:60rpx;
  319. display: flex;
  320. align-items: center;
  321. justify-content: center;
  322. margin-left: 10rpx;
  323. border-radius: 12rpx;
  324. background-color: #0F80DC;
  325. color: #fff;
  326. box-sizing: border-box;
  327. }
  328. .examine_name{
  329. color: #cccccc;
  330. }
  331. .available{
  332. width: 100%;
  333. display: flex;
  334. align-items: center;
  335. justify-content: center;
  336. margin-top: 60rpx;
  337. }
  338. .picker{
  339. display: flex;
  340. align-items: center;
  341. }
  342. .chevron_down{
  343. margin-left: 10rpx;
  344. }
  345. .weather{
  346. width: 100rpx;
  347. height: 100rpx;
  348. }
  349. .weather_1{
  350. font-size: 28rpx;
  351. }
  352. .weather_2{
  353. margin: 0rpx 10rpx;
  354. }
  355. .realtime1{
  356. width: 100%;
  357. display: flex;
  358. padding: 0rpx 20rpx;
  359. box-sizing: border-box;
  360. }
  361. .realtime2{
  362. width: 100%;
  363. display: flex;
  364. padding: 0rpx 20rpx;
  365. box-sizing: border-box;
  366. }
  367. .data_box{
  368. width: 100%;
  369. border-radius: 20rpx;
  370. box-sizing: border-box;
  371. padding-bottom:20rpx;
  372. margin-top: 60rpx;
  373. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  374. }
  375. .titledata{
  376. display: flex;
  377. align-items: center;
  378. justify-content: space-between;
  379. padding: 16rpx 10rpx 20rpx 20rpx;
  380. box-sizing: border-box;
  381. }
  382. .realtime_left1{
  383. width: 50%;
  384. height: 120rpx;
  385. padding-bottom: 20rpx;
  386. display: flex;
  387. flex-direction: column;
  388. align-items: center;
  389. justify-content: center;
  390. font-size: 14px;
  391. border-right:1rpx solid #E1E0F4;
  392. }
  393. .realtime_text{
  394. font-size: 18px;
  395. margin-right: 4px;
  396. color: #00BA82;
  397. }
  398. .realtime_title{
  399. font-size: 14px;
  400. margin-top: 10rpx;
  401. color: #222;
  402. }
  403. .realtime_right1{
  404. width: 50%;
  405. height: 120rpx;
  406. padding-bottom: 20rpx;
  407. display: flex;
  408. flex-direction: column;
  409. align-items: center;
  410. justify-content: center;
  411. font-size: 14px;
  412. }
  413. .realtime_left2{
  414. width: 50%;
  415. height: 90rpx;
  416. display: flex;
  417. flex-direction: column;
  418. align-items: center;
  419. justify-content: center;
  420. font-size: 14px;
  421. border-top:1rpx solid #E1E0F4;
  422. }
  423. .realtime_right2{
  424. width: 50%;
  425. height: 90rpx;
  426. display: flex;
  427. flex-direction: column;
  428. align-items: center;
  429. justify-content: center;
  430. font-size: 14px;
  431. border-top:1rpx solid #E1E0F4;
  432. }
  433. .canvasArea1 {
  434. width: 100%;
  435. display: flex;
  436. flex-direction: column;
  437. margin-top: 10rpx;
  438. align-items: center;
  439. }
  440. .canvasArea canvas {
  441. width: 300rpx;
  442. height: 300rpx;
  443. }
  444. .data_box{
  445. width: 100%;
  446. border-radius: 20rpx;
  447. box-sizing: border-box;
  448. padding-bottom:20rpx;
  449. margin-top: 20rpx;
  450. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  451. }
  452. .data_box1{
  453. width: 100%;
  454. border-radius: 20rpx;
  455. box-sizing: border-box;
  456. padding-bottom:20rpx;
  457. }
  458. .titledata{
  459. display: flex;
  460. align-items: center;
  461. justify-content: space-between;
  462. padding: 16rpx 10rpx 10rpx 20rpx;
  463. box-sizing: border-box;
  464. }
  465. .realtime{
  466. width: 100%;
  467. display: flex;
  468. padding: 0px 20rpx;
  469. box-sizing: border-box;
  470. }
  471. .realtime_left{
  472. width: 50%;
  473. height: 120rpx;
  474. display: flex;
  475. flex-direction: column;
  476. align-items: center;
  477. justify-content: center;
  478. font-size: 14px;
  479. border-bottom:1rpx solid #E1E0F4;
  480. border-right:1rpx solid #E1E0F4;
  481. }
  482. .realtime_right{
  483. width: 50%;
  484. height: 120rpx;
  485. display: flex;
  486. flex-direction: column;
  487. align-items: center;
  488. justify-content: center;
  489. font-size: 14px;
  490. border-bottom:1rpx solid #E1E0F4;
  491. }
  492. .realtime1{
  493. width: 100%;
  494. display: flex;
  495. padding: 0rpx 20rpx;
  496. box-sizing: border-box;
  497. }
  498. .realtime2{
  499. width: 100%;
  500. display: flex;
  501. justify-content: space-between;
  502. padding: 0rpx 20rpx;
  503. padding-top: 20rpx;
  504. box-sizing: border-box;
  505. }
  506. .realtime_left1{
  507. width: 50%;
  508. height: 120rpx;
  509. display: flex;
  510. flex-direction: column;
  511. align-items: center;
  512. justify-content: center;
  513. font-size: 14px;
  514. border-right:1rpx solid #E1E0F4;
  515. }
  516. .realtime_left2{
  517. width: 48%;
  518. height: 100rpx;
  519. display: flex;
  520. align-items: center;
  521. justify-content: space-around;
  522. border-radius: 10rpx;
  523. font-size: 14px;
  524. background-color: #ffffff;
  525. }
  526. .realtime_right1{
  527. width: 50%;
  528. height: 120rpx;
  529. display: flex;
  530. flex-direction: column;
  531. align-items: center;
  532. justify-content: center;
  533. font-size: 14px;
  534. }
  535. .realtime_right2{
  536. width: 48%;
  537. height: 100rpx;
  538. display: flex;
  539. align-items: center;
  540. justify-content: center;
  541. font-size: 14px;
  542. background-color: #ffffff;
  543. justify-content: space-around;
  544. border-radius: 10rpx;
  545. }
  546. .realtime_text{
  547. font-size: 18px;
  548. margin-right: 4px;
  549. color: #00BA82;
  550. }
  551. .realtime_unit{
  552. font-size: 12px;
  553. color: #222;
  554. }
  555. .realtime_title{
  556. font-size: 14px;
  557. margin-top: 10rpx;
  558. color: #222;
  559. }
  560. .line{
  561. width: 100%;
  562. height: 100%;
  563. }
  564. #mychart_line {
  565. width: 100%;
  566. height: 100%;
  567. margin-top: 20rpx;
  568. }
  569. .equipment{
  570. width: 100%;
  571. display: flex;
  572. justify-content: space-between;
  573. padding: 0rpx 20rpx;
  574. box-sizing: border-box;
  575. margin-top: 40rpx;
  576. font-size: 28rpx;
  577. }
  578. .equipmenttext{
  579. font-size: 22rpx;
  580. color: #999999;
  581. }
  582. .details{
  583. font-weight: 400;
  584. font-size: 26rpx;
  585. color: #999999;
  586. display: flex;
  587. align-items: center;
  588. box-sizing: border-box;
  589. }
  590. .electric{
  591. width: 100%;
  592. padding: 0rpx 20rpx;
  593. box-sizing: border-box;
  594. margin-top: 40rpx;
  595. display: flex;
  596. justify-content: space-between;
  597. }
  598. .electric1{
  599. width: 48%;
  600. height: 400rpx;
  601. background-color: #ffffff;
  602. border-radius: 16rpx;
  603. padding: 20rpx 20rpx;
  604. box-sizing: border-box;
  605. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  606. }
  607. .electric_rong{
  608. display: flex;
  609. justify-content: space-between;
  610. align-items: center;
  611. }
  612. .electric_{
  613. color: #999999;
  614. }
  615. .pic_pic{
  616. width: 100%;
  617. height: 320rpx;
  618. }
  619. .cumulative1{
  620. display: flex;
  621. justify-content: space-between;
  622. align-items: center;
  623. }
  624. .cumulative11{
  625. font-size: 24rpx;
  626. color: #999999;
  627. }
  628. .cumulative2{
  629. display: flex;
  630. justify-content: space-between;
  631. align-items: center;
  632. margin-top: 20rpx;
  633. }
  634. .electric2{
  635. width: 48%;
  636. height: 400rpx;
  637. display: flex;
  638. flex-direction: column;
  639. justify-content: space-between;
  640. background-color: #ffffff;
  641. border-radius: 16rpx;
  642. padding: 0rpx 20rpx;
  643. box-sizing: border-box;
  644. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  645. }
  646. .electric21{
  647. width: 100%;
  648. height: 220rpx;
  649. padding: 20rpx 0rpx;
  650. display: flex;
  651. flex-direction: column;
  652. justify-content: space-between;
  653. box-sizing: border-box
  654. }
  655. .electric22{
  656. width: 100%;
  657. height: 160rpx;
  658. padding: 20rpx 0rpx;
  659. display: flex;
  660. flex-direction: column;
  661. justify-content: space-between;
  662. box-sizing: border-box;
  663. border-top:1rpx solid #E1E0F4;
  664. }
  665. .electric3{
  666. font-size: 22rpx;
  667. }
  668. .electric4{
  669. font-size: 22rpx;
  670. color: #999999;
  671. }
  672. .battery{
  673. font-size: 24rpx;
  674. color: #222222;
  675. }
  676. .batteryccc{
  677. font-size: 20rpx;
  678. color: #999999;
  679. }
  680. .battery_bottom{
  681. width: 100%;
  682. /* border-bottom: 1rpx solid #E1E0F4; */
  683. }
  684. .tag_type1 {
  685. font-size: 28rpx;
  686. color: #F0A26C;
  687. font-weight: 600;
  688. }
  689. .tag_type2 {
  690. font-size: 28rpx;
  691. color: #15DB9B;
  692. font-weight: 600;
  693. }
  694. .tag_type3 {
  695. font-size: 28rpx;
  696. color: #b0c4de;
  697. font-weight: 600;
  698. /* 蓝 */
  699. }