index.wxss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. page {
  2. height: 100%;
  3. }
  4. .mini_mask {
  5. width: 100%;
  6. z-index: 100;
  7. position: absolute;
  8. }
  9. .mini_mask .stepmask {
  10. padding: 0 16rpx;
  11. background: rgba(0, 0, 0, 0);
  12. position: absolute;
  13. border-radius: 4px;
  14. box-shadow: 0 0 5px 800px rgba(0, 0, 0, 0.2);
  15. }
  16. .mini_mask .step_one {
  17. height: 310rpx;
  18. width: 100%;
  19. top: 510rpx;
  20. left: 0;
  21. }
  22. .mini_mask .step_one .one_contant {
  23. position: absolute;
  24. width: 201px;
  25. height: 40px;
  26. top: 340rpx;
  27. background: #04B49C;
  28. box-shadow: 0px 1px 16px 0px rgba(227, 227, 227, 0.5);
  29. border-radius: 6px;
  30. color: #FFFFFF;
  31. font-size: 14px;
  32. }
  33. .mini_mask .step_one .one_contant::before {
  34. content: '';
  35. width: 17px;
  36. height: 17px;
  37. position: absolute;
  38. top: -7px;
  39. left: 50rpx;
  40. background: #04B49C;
  41. transform: rotate(45deg);
  42. border-radius: 5px;
  43. }
  44. .mini_mask .step_two {
  45. height: 820rpx;
  46. width: 100%;
  47. left: 0;
  48. top: 820rpx;
  49. }
  50. .mini_mask .step_two .two_contant {
  51. position: absolute;
  52. width: 341px;
  53. height: 40px;
  54. top: -100rpx;
  55. background: #04B49C;
  56. box-shadow: 0px 1px 16px 0px rgba(227, 227, 227, 0.5);
  57. border-radius: 6px;
  58. color: #FFFFFF;
  59. font-size: 14px;
  60. }
  61. .mini_mask .step_two .two_contant::before {
  62. content: '';
  63. width: 16px;
  64. height: 16px;
  65. position: absolute;
  66. top: 29px;
  67. left: 50rpx;
  68. background: #04B49C;
  69. transform: rotate(45deg);
  70. border-radius: 5px;
  71. }
  72. .header_custom {
  73. float: left;
  74. width: 100%;
  75. }
  76. .header-title {
  77. display: flex;
  78. align-items: center;
  79. flex-direction: row;
  80. padding: 0 34rpx;
  81. width: 100%;
  82. justify-content: space-between;
  83. }
  84. .header-title .mode_box {
  85. margin-right: 185rpx;
  86. height: 64rpx;
  87. display: flex;
  88. align-items: center;
  89. flex-direction: row;
  90. background: rgba(0, 0, 0, 0.15);
  91. border-radius: 25px;
  92. border: 1px solid rgba(255, 255, 255, 0.25);
  93. color: #ffffff;
  94. padding: 0 28rpx;
  95. }
  96. .header-title .mode_box image {
  97. width: 32rpx;
  98. height: 32rpx;
  99. }
  100. .header-title .mode_box .projectname {
  101. margin-left: 12rpx;
  102. transition: all 1s ease;
  103. }
  104. .adjust_main {
  105. width: 100%;
  106. background: #FFFFFF;
  107. }
  108. .adjust_main .space_bg {
  109. width: 100%;
  110. height: 500rpx;
  111. overflow: hidden;
  112. }
  113. .adjust_main .space_bg image {
  114. width: 100%;
  115. height: 100%;
  116. }
  117. .adjust_main .space_msg {
  118. height: 154rpx;
  119. padding: 0 32rpx;
  120. display: flex;
  121. flex-direction: row;
  122. justify-content: space-between;
  123. align-items: center;
  124. }
  125. .adjust_main .space_msg .msg_left .spacename {
  126. height: 56rpx;
  127. font-size: 40rpx;
  128. font-weight: 400;
  129. color: #2B3036;
  130. line-height: 56rpx;
  131. }
  132. .adjust_main .space_msg .msg_left .spacestate {
  133. font-size: 30rpx;
  134. color: #8D9399;
  135. line-height: 42rpx;
  136. margin-top: 8rpx;
  137. justify-content: flex-start;
  138. }
  139. .adjust_main .space_msg .msg_left .spacestate > view {
  140. margin-left: 18rpx;
  141. width: 34rpx;
  142. height: 34rpx;
  143. }
  144. .adjust_main .space_msg .msg_right text {
  145. font-size: 46rpx;
  146. color: #2B3036;
  147. }
  148. .adjust_main .space_paramelist {
  149. margin: 0 24rpx;
  150. height: 140rpx;
  151. background: #F8F9FA;
  152. border-radius: 4px;
  153. }
  154. .adjust_main .space_paramelist .parame_item {
  155. width: 25%;
  156. }
  157. .adjust_main .space_paramelist .parame_item .icon_name {
  158. color: #8D9399;
  159. font-size: 24rpx;
  160. }
  161. .adjust_main .space_paramelist .parame_item .icon_name image {
  162. width: 32rpx;
  163. height: 32rpx;
  164. margin-right: 8rpx;
  165. }
  166. .adjust_main .space_paramelist .parame_item .parame_num {
  167. color: #646A73;
  168. font-size: 24rpx;
  169. }
  170. .adjust_main .space_paramelist .parame_item .parame_num text {
  171. font-size: 32rpx;
  172. }
  173. .adjust_main .space_btns {
  174. display: flex;
  175. align-items: center;
  176. justify-content: space-around;
  177. margin-top: 32rpx;
  178. }
  179. .adjust_main .space_btns button {
  180. margin: 0;
  181. width: auto;
  182. display: inline-block;
  183. font-size: 26rpx;
  184. height: 76rpx;
  185. display: flex;
  186. padding-left: 0;
  187. padding-right: 0;
  188. text-align: center;
  189. flex-direction: row;
  190. align-items: center;
  191. justify-content: center;
  192. border-radius: 38rpx;
  193. }
  194. .adjust_main .space_btns .btns_top {
  195. width: 162rpx;
  196. color: #8D9399;
  197. border: 1px solid #EFF0F1;
  198. }
  199. .adjust_main .space_btns .btns_top_active {
  200. background: #EAFAF8;
  201. color: #04B49C;
  202. border: 0px solid #EFF0F1;
  203. }
  204. .adjust_main .space_btns .btns_adjust {
  205. width: 460rpx;
  206. color: #ffffff;
  207. background-color: #04B49C;
  208. border-radius: 38rpx;
  209. }
  210. .envstate_list {
  211. margin: 14rpx 32rpx 0;
  212. padding: 32rpx 24rpx;
  213. background: #FFFFFF;
  214. box-shadow: 0px 6px 20px 0px rgba(43, 48, 54, 0.1);
  215. border-radius: 4px;
  216. }
  217. .envstate_list .list_title {
  218. justify-content: flex-start;
  219. }
  220. .envstate_list .list_title image {
  221. width: 48rpx;
  222. height: 48rpx;
  223. }
  224. .envstate_list .list_title text {
  225. font-size: 34rpx;
  226. color: rgba(0, 0, 0, 0.9);
  227. line-height: 24px;
  228. margin-left: 16rpx;
  229. }
  230. .envstate_list .list_body {
  231. display: flex;
  232. flex-wrap: wrap;
  233. justify-content: space-between;
  234. margin-top: 32rpx;
  235. }
  236. .envstate_list .list_body > view {
  237. width: 48%;
  238. height: 104rpx;
  239. background: #F5F6F7;
  240. border-radius: 4px;
  241. font-size: 28rpx;
  242. display: flex;
  243. align-items: center;
  244. justify-content: center;
  245. margin-bottom: 12rpx;
  246. }
  247. .envstate_list .list_body > view image {
  248. width: 56rpx;
  249. height: 56rpx;
  250. margin-right: 24rpx;
  251. }
  252. .envstate_list .list_body > .typelistactive {
  253. background-color: #EAFAF8;
  254. }
  255. .closedown {
  256. margin: 15rpx 32rpx 64rpx;
  257. height: 80rpx;
  258. display: flex;
  259. justify-content: center;
  260. align-items: center;
  261. background: #FFFFFF;
  262. border-radius: 20px;
  263. border: 1px solid #EFF0F1;
  264. color: #04B49C;
  265. }
  266. .closedown image {
  267. width: 24rpx;
  268. height: 24rpx;
  269. margin-right: 10rpx;
  270. }
  271. .uptime {
  272. position: absolute;
  273. bottom: 20px;
  274. left: 50%;
  275. width: 100%;
  276. transform: translate(-50%, 0);
  277. font-size: 14px;
  278. color: #8D9399;
  279. line-height: 19px;
  280. }
  281. .profession_box {
  282. margin: 0 32rpx;
  283. box-shadow: 0px 6px 20px 0px rgba(43, 48, 54, 0.1);
  284. border-radius: 4px;
  285. /* 修改标签页样式 */
  286. }
  287. .profession_box .van-tabs__wrap {
  288. margin-bottom: 24rpx;
  289. height: 100rpx!important;
  290. }
  291. .profession_box .van-tabs__nav--card {
  292. height: 100rpx!important;
  293. overflow: hidden;
  294. border-radius: 8rpx!important;
  295. /* border:1px solid rgba(25,27,38,0.1)!important; */
  296. }
  297. .profession_box .van-ellipsis {
  298. line-height: 100rpx!important;
  299. }
  300. .profession_box .van-tab {
  301. height: 100rpx!important;
  302. }
  303. .profession_box .tab-class {
  304. font-size: 17px;
  305. color: #373C43;
  306. }
  307. .profession_box .tab-active-class {
  308. font-size: 17px;
  309. font-weight: 500;
  310. color: #04B49C !important;
  311. }
  312. .profession_box .van-radio {
  313. margin-bottom: 38rpx;
  314. }
  315. .profession_box .van-radio__label {
  316. font-size: 15px;
  317. color: #8D9399;
  318. line-height: 21px;
  319. }
  320. .profession_box .chartlenged {
  321. margin-top: 32rpx;
  322. justify-content: flex-end;
  323. }
  324. .profession_box .chartlenged > view {
  325. margin-left: 24rpx;
  326. font-size: 26rpx;
  327. color: #8D9399;
  328. line-height: 14px;
  329. }
  330. .profession_box .chartlenged > view image {
  331. width: 13px;
  332. height: 5px;
  333. margin-right: 8rpx;
  334. }
  335. .profession_box .chartlenged > view > view {
  336. width: 20rpx;
  337. height: 20rpx;
  338. margin-right: 8rpx;
  339. background: #B2E6F2;
  340. }
  341. .profession_box .chartlenged > view .circle {
  342. background: #04B49C;
  343. border-radius: 50%;
  344. }
  345. .profession_box .chartlenged .tips {
  346. width: 40rpx;
  347. height: 40rpx;
  348. border-radius: 50%;
  349. background: #EAFAF8;
  350. color: #04B49C;
  351. }
  352. .profession_box .tabone {
  353. margin: 0 24rpx;
  354. }
  355. .profession_box .tabone .hopetmp {
  356. justify-content: space-between;
  357. }
  358. .profession_box .tabone .hopetmp .hopenum {
  359. font-size: 28rpx;
  360. font-weight: bold;
  361. color: #04B49C;
  362. }
  363. .profession_box .tabone .hopetmp .hopenum .hopetxt {
  364. font-size: 34rpx;
  365. margin-right: 16rpx;
  366. color: #000000;
  367. font-weight: normal;
  368. }
  369. .profession_box .tabone .hopetmp .hopenum text {
  370. font-size: 36rpx;
  371. }
  372. .profession_box .tabone .hopetmp .operationbtn {
  373. float: right;
  374. width: 60px;
  375. height: 40px;
  376. color: #2B3036;
  377. font-weight: bold;
  378. background: #F8F9FA;
  379. border-radius: 4px 0px 0px 4px;
  380. }
  381. .profession_box .tabone .hopetmp .minusbtn {
  382. margin-right: 26rpx;
  383. }
  384. .profession_box .tabone .choose_txt {
  385. margin: 44rpx 0 34rpx;
  386. font-size: 34rpx;
  387. }
  388. .profession_box .tabone .choose_box {
  389. padding: 38rpx 24rpx 0;
  390. overflow: hidden;
  391. background: #F8F9FA;
  392. border-radius: 4px;
  393. }
  394. .profession_box .tabone .profession_chart {
  395. height: 360rpx;
  396. width: 100%;
  397. }
  398. .profession_box .tabone .profession_chart .nodate {
  399. height: 360rpx;
  400. color: var(--nodateColor);
  401. font-size: 14px;
  402. }
  403. .profession_box .submit {
  404. padding: 40rpx 0;
  405. background: #04B49C;
  406. color: #ffffff;
  407. }
  408. .profession_box .tabtwo {
  409. margin: 0 24rpx;
  410. }
  411. .profession_box .tabtwo .plantxt {
  412. font-size: 30rpx;
  413. color: #8D9399;
  414. line-height: 21px;
  415. }
  416. .profession_box .tabtwo .chartcontent {
  417. height: 250px;
  418. position: relative;
  419. box-sizing: border-box;
  420. margin: 36rpx auto 0;
  421. }
  422. .profession_box .tabtwo .chartcontent .charty {
  423. position: absolute;
  424. left: -27px;
  425. height: 100%;
  426. justify-content: space-between;
  427. }
  428. .profession_box .tabtwo .chartcontent .chartx {
  429. position: absolute;
  430. bottom: -25px;
  431. width: 100%;
  432. font-size: 12px;
  433. color: #C3C6CB;
  434. display: flex;
  435. flex-direction: row;
  436. justify-content: space-around;
  437. }
  438. .profession_box .tabtwo .chartcontent .chartmain {
  439. height: 100%;
  440. position: relative;
  441. display: flex;
  442. flex-direction: row;
  443. justify-content: center;
  444. justify-content: space-between;
  445. }
  446. .profession_box .tabtwo .chartcontent .chartmain:after {
  447. content: "";
  448. width: 80px;
  449. }
  450. .profession_box .tabtwo .chartcontent .chartmain::before {
  451. content: "";
  452. width: 80px;
  453. }
  454. .profession_box .tabtwo .chartcontent .chartmain .mian_item {
  455. min-width: 27px;
  456. max-width: 27px;
  457. margin-right: 4px;
  458. height: 90%;
  459. position: relative;
  460. }
  461. .profession_box .tabtwo .chartcontent .chartmain .mian_item .chartbg {
  462. height: 100%;
  463. width: 100%;
  464. background: linear-gradient(180deg, #F5F6F7 0%, #F8F9FA 100%);
  465. }
  466. .profession_box .tabtwo .chartcontent .chartmain .mian_item .chartbg .chartrange {
  467. width: 18px;
  468. background: #B2E6F2;
  469. position: relative;
  470. }
  471. .profession_box .tabtwo .chartcontent .chartmain .mian_item .chartbg .chartrange .chartdot {
  472. width: 7px;
  473. height: 7px;
  474. background: #04B49C;
  475. border-radius: 50%;
  476. }
  477. .profession_box .tabtwo .chartcontent .chartmain .mian_item .chartbg .chartrange .abdot {
  478. position: absolute;
  479. top: -12px;
  480. left: -3px;
  481. font-size: 13px;
  482. }
  483. .profession_box .tabtwo .chartcontent .chartmain .mian_item .item_chartx {
  484. position: absolute;
  485. bottom: -18px;
  486. font-size: 10px;
  487. left: 0px;
  488. }
  489. .feedback_box {
  490. margin: 64rpx 0 0;
  491. }
  492. .feedback_box .feedimgbox .lottie {
  493. width: 40rpx;
  494. height: 40rpx;
  495. }
  496. .feedback_box .feedimgbox .feedtext_title {
  497. font-size: 34rpx;
  498. font-weight: 500;
  499. color: #000000;
  500. margin-bottom: 16rpx;
  501. }
  502. .feedback_box .feedimgbox .feedtext_box .feedtext_desc {
  503. font-size: 30rpx;
  504. color: #2B3036;
  505. }
  506. .feedback_box .noticbox {
  507. width: 100%;
  508. height: 65rpx;
  509. font-size: 28rpx;
  510. }
  511. .feedback_box .noticbox .noticbox_text {
  512. text-align: center;
  513. }
  514. .feedback_box .noticbox > swiper {
  515. height: 45rpx;
  516. }
  517. .feedback_box .envpanel {
  518. justify-content: space-around;
  519. margin: 20rpx 32rpx 0;
  520. height: 224rpx;
  521. background: #F8F9FA;
  522. border-radius: 4px;
  523. }
  524. .feedback_box .envpanel .panel_left .left_txt {
  525. font-size: 34rpx;
  526. color: #646A73;
  527. line-height: 24px;
  528. }
  529. @keyframes rotate {
  530. 0% {
  531. transform: rotate(0);
  532. }
  533. 100% {
  534. transform: rotate(360deg);
  535. }
  536. }
  537. .feedback_box .envpanel .panel_left .rotate {
  538. animation: rotate 1.5s linear infinite;
  539. /*开始动画后无限循环,用来控制rotate*/
  540. }
  541. .feedback_box .envpanel .panel_left .rotate_slow {
  542. animation: rotate 2s linear infinite;
  543. }
  544. .feedback_box .envpanel .panel_left > view {
  545. margin-top: 12px;
  546. text-align: center;
  547. font-size: 28rpx;
  548. }
  549. .feedback_box .envpanel .panel_left > view image {
  550. width: 68rpx;
  551. height: 68rpx;
  552. }
  553. .feedback_box .envpanel .panel_left .left_num {
  554. font-size: 56rpx;
  555. color: #2B3036;
  556. line-height: 28px;
  557. }
  558. .feedback_box .envpanel .panel_center image {
  559. width: 32rpx;
  560. height: 28rpx;
  561. }
  562. .feedback_box .feed_tips {
  563. padding-bottom: 12rpx;
  564. }
  565. .feedback_box .feed_tips > text:nth-child(1) {
  566. font-size: 17px;
  567. font-weight: 500;
  568. color: #000000;
  569. margin-bottom: 16rpx;
  570. }
  571. .feedback_box .feed_tips > text:nth-child(2) {
  572. font-size: 15px;
  573. color: #2B3036;
  574. }
  575. .feedback_box .iknow {
  576. color: #ffffff;
  577. background: #04B49C;
  578. }
  579. .seconddetail {
  580. padding: 25rpx 32rpx 0;
  581. }
  582. .seconddetail .secondtxt {
  583. font-size: 14px;
  584. margin-bottom: 16rpx;
  585. }
  586. .seconddetail .lottie {
  587. width: 50rpx;
  588. height: 50rpx;
  589. }
  590. .seconddetail .secondtxt_title {
  591. font-size: 20px;
  592. margin-bottom: 22rpx;
  593. }
  594. .seconddetail .custom_button {
  595. box-sizing: content-box;
  596. padding: 24rpx 32rpx;
  597. height: 40rpx;
  598. display: flex;
  599. margin-top: 54rpx;
  600. justify-content: center;
  601. text-align: center;
  602. align-items: center;
  603. background-color: #5575FF;
  604. color: #ffffff;
  605. font-size: 16px;
  606. border-radius: 40rpx;
  607. }