index.less 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. page{
  2. overflow-x: hidden;
  3. display: flex;
  4. height: 100%;
  5. width: 100%;
  6. flex-direction: column;
  7. }
  8. // .pagecontainer{
  9. // position: absolute;
  10. // width: 686rpx;
  11. // // height: 379rpx;
  12. // background: #FFFFFF;
  13. // border-radius: 8px;
  14. // position: absolute;
  15. // top: 50%;
  16. // left: 50%;
  17. // transform: translate(-50%,-50%);
  18. // z-index:999
  19. // }
  20. .header-title{
  21. // padding:0 34rpx;
  22. padding:0 26rpx;
  23. width: 100%;
  24. display: flex;
  25. flex-direction: row;
  26. align-items: center;
  27. background: rgba(255, 255, 255, 0.6);
  28. }
  29. .mini_mask{
  30. width: 100%;
  31. z-index: 100;
  32. position: absolute;
  33. // overflow: hidden;
  34. .stepmask{
  35. padding:0 16rpx;
  36. background:rgba(0, 0, 0, 0);
  37. position: absolute;
  38. border-radius: 4px;
  39. box-shadow:0 0 5px 800px rgba(0,0,0,0.2);
  40. }
  41. .step_one{
  42. height: 130rpx;
  43. width: 450rpx;
  44. top: 43rpx;
  45. left: 0;
  46. .one_contant{
  47. position: absolute;
  48. width: 201px;
  49. height: 40px;
  50. top: 170rpx;
  51. background: #04B49C;
  52. box-shadow: 0px 1px 16px 0px rgba(227, 227, 227, 0.5);
  53. border-radius: 6px;
  54. color: #FFFFFF;
  55. font-size: 14px;
  56. &::before{
  57. content: '';
  58. width: 17px;
  59. height: 17px;
  60. position: absolute;
  61. top:-7px;
  62. left: 50rpx;
  63. background:#04B49C;
  64. transform: rotate(45deg);
  65. // border-top: 10px solid transparent;
  66. // border-left: 10px solid black;
  67. // border-bottom: 10px solid transparent;
  68. border-radius: 5px;
  69. }
  70. }
  71. }
  72. }
  73. .user-img{
  74. width: 64rpx;
  75. height: 64rpx;
  76. margin-right: 24rpx;
  77. border-radius: 50%;
  78. overflow: hidden;
  79. justify-content: center;
  80. }
  81. .delete_icon{
  82. height: 339px;
  83. display: flex;
  84. align-items: center;
  85. padding-left: 16px;
  86. .delete_box{
  87. width: 44px;
  88. height: 44px;
  89. background: #FEF2F1;
  90. border-radius: 50%;
  91. image{
  92. width: 32rpx;
  93. height: 32rpx;
  94. }
  95. }
  96. }
  97. .home-icon{
  98. .projectname{
  99. font-size: 16px;
  100. color: #1F2329;
  101. image{
  102. width: 20rpx;
  103. height: 10rpx;
  104. margin-left: 16rpx;
  105. }
  106. }
  107. .daytmp{
  108. justify-content: start;
  109. font-size: 13px;
  110. color: #646A73;
  111. image{
  112. height: 32rpx;
  113. width: 32rpx;
  114. }
  115. }
  116. }
  117. .contant_box{
  118. background: #f9fafa;
  119. height: 100%;
  120. width: 100%;
  121. .spacelist_box{
  122. margin:20rpx 32rpx 0;
  123. .space_item{
  124. width: 100%;
  125. // height: 840rpx;
  126. padding-bottom: 40rpx;
  127. background: #FFFFFF;
  128. box-shadow: 0px 4px 3px 0px rgba(43, 48, 54, 0.1);
  129. border-radius: 8px;
  130. margin-bottom: 40rpx;
  131. &>view{
  132. text-align: left;
  133. }
  134. .space_bg{
  135. width: 100%;
  136. height: 398rpx;
  137. border-radius: 8px 8px 0 0;
  138. overflow: hidden;
  139. image{
  140. width: 100%;
  141. height: 100%;
  142. }
  143. }
  144. .space_msg{
  145. height: 154rpx;
  146. padding: 0 32rpx;
  147. display: flex;
  148. flex-direction: row;
  149. justify-content: space-between;
  150. align-items: center;
  151. .msg_left{
  152. .spacename{
  153. height: 56rpx;
  154. font-size: 40rpx;
  155. font-weight: 400;
  156. color: #2B3036;
  157. line-height: 56rpx;
  158. vertical-align: middle;
  159. }
  160. .peoplestate{
  161. display: inline-block;
  162. box-sizing: border-box;
  163. padding: 1px 7px;
  164. margin-left: 10px;
  165. background: #34c724;
  166. vertical-align: middle;
  167. color: #ffffff;
  168. border-radius: 12px;
  169. font-size: 20rpx;
  170. }
  171. .activepeople{
  172. background: #f54e45;
  173. }
  174. .spacestate{
  175. font-size: 30rpx;
  176. color: #8D9399;
  177. line-height: 42rpx;
  178. margin-top: 8rpx;
  179. justify-content:flex-start;
  180. &>view{
  181. margin-left: 18rpx;
  182. width: 46rpx;
  183. height: 46rpx;
  184. }
  185. }
  186. }
  187. .msg_right{
  188. display: flex;
  189. align-items: center;
  190. text{
  191. font-size: 46rpx;
  192. color: #2B3036;
  193. }
  194. }
  195. }
  196. .space_paramelist{
  197. margin: 0 24rpx;
  198. // height: 140rpx;
  199. background: #F8F9FA;
  200. border-radius: 4px;
  201. .parame_item{
  202. max-width: 25%;
  203. min-width: 25%;
  204. padding:32rpx 0rpx 32rpx 0rpx;
  205. display: flex;
  206. justify-content: flex-start;
  207. align-items: flex-start;
  208. .icon_name{
  209. justify-content: flex-start;
  210. image{
  211. width: 32rpx;
  212. height: 32rpx;
  213. margin-right: 8rpx;
  214. }
  215. color: #8D9399;
  216. font-size: 24rpx;
  217. }
  218. .parame_num{
  219. color: #646A73;
  220. font-size: 24rpx;
  221. font-weight: bold;
  222. float: left;
  223. text{
  224. font-size: 32rpx;
  225. }
  226. }
  227. .parame_tag{
  228. margin:8rpx 0;
  229. padding: 4rpx 14rpx;
  230. color: #ffffff;
  231. border-radius: 24rpx;
  232. // height: 30rpx;
  233. font-size: 18rpx;
  234. display: flex;
  235. justify-content: center;
  236. align-items: center;
  237. min-width: 72rpx;
  238. }
  239. .taghumiditybg0{
  240. background:var(--envredColor);
  241. color:var(--envredtxtColor);
  242. }
  243. .taghumiditybg1{
  244. background:var(--envgreenColor);
  245. color:var(--envgreentxtColor);
  246. }
  247. .taghumiditybg2{
  248. background:var(--envblueColor);
  249. color:var(--envbluetxtColor);
  250. }
  251. .tagpm25bg0{
  252. background:var(--envgreenColor);
  253. color:var(--envgreentxtColor);
  254. }
  255. .tagpm25bg1{
  256. background:var(--envyellowColor);
  257. color:var(--envyellowtxtColor);
  258. }
  259. .tagpm25bg2{
  260. background:var(--envredColor);
  261. color:var(--envredtxtColor);
  262. }
  263. .tagco2bg0{
  264. background:var(--envgreenColor);
  265. color:var(--envgreentxtColor);
  266. }
  267. .tagco2bg1{
  268. background:var(--envyellowColor);
  269. color:var(--envyellowtxtColor);
  270. }
  271. .tagco2bg2{
  272. background:var(--envredColor);
  273. color:var(--envredtxtColor);
  274. }
  275. .taghchobg0{
  276. background:var(--envgreenColor);
  277. color:var(--envgreentxtColor);
  278. }
  279. .taghchobg1{
  280. background:var(--envyellowColor);
  281. color:var(--envyellowtxtColor);
  282. }
  283. .taghchobg2{
  284. background:var(--envredColor);
  285. color:var(--envredtxtColor);
  286. }
  287. .novalue{
  288. min-height:16px;
  289. font-weight: bold;
  290. background:var(--nodateColor);
  291. color:var(--nodatetxtColor);
  292. }
  293. }
  294. .parame_item:nth-child(1){
  295. padding:32rpx 0rpx 32rpx 24rpx;
  296. }
  297. .parame_item:nth-child(4){
  298. padding:32rpx 24rpx 32rpx 0rpx;
  299. }
  300. }
  301. .space_btns{
  302. display: flex;
  303. align-items: center;
  304. justify-content: space-around;
  305. margin-top: 32rpx;
  306. button{
  307. margin: 0;
  308. width: auto;
  309. display: inline-block;
  310. font-size: 26rpx;
  311. height: 76rpx;
  312. display: flex;
  313. padding-left: 0;
  314. padding-right: 0;
  315. text-align: center;
  316. flex-direction: row;
  317. align-items: center;
  318. justify-content: center;
  319. border-radius: 38rpx;
  320. }
  321. .btns_top{
  322. width: 162rpx;
  323. color: #8D9399;
  324. // border: 1px solid #EFF0F1;
  325. border: 1px solid transparent;
  326. }
  327. .btns_top_active{
  328. background: #EAFAF8;
  329. color: #04B49C;
  330. border: 0px solid #EFF0F1;
  331. }
  332. .btns_adjust{
  333. width: 460rpx;
  334. color: #ffffff;
  335. background-color: #04B49C;
  336. border-radius: 38rpx;
  337. }
  338. }
  339. }
  340. }
  341. .nospace{
  342. width: 100%;
  343. max-width: 343px;
  344. margin:0 auto;
  345. height: 339px;
  346. border-radius: 8px;
  347. border: 1px dashed #DDDDDD;
  348. justify-content: space-between;
  349. .nospace_center{
  350. margin-top: 216rpx;
  351. .nospace_img{
  352. width: 120rpx;
  353. height: 116rpx;
  354. }
  355. text{
  356. font-size: 30rpx;
  357. color: #000000;
  358. line-height: 48rpx;
  359. }
  360. }
  361. .nospace_msg{
  362. .nospace_down{
  363. width: 32rpx;
  364. height: 28rpx;
  365. margin: 16rpx 0 24rpx;
  366. }
  367. text{
  368. font-size: 24rpx;
  369. color: #C3C6CB;
  370. line-height: 40rpx;
  371. }
  372. }
  373. }
  374. .scannospace{
  375. width: 100%;
  376. max-width: 343px;
  377. margin: 0 auto;
  378. height: 254px;
  379. margin-top: 40rpx;
  380. background: #FFFFFF;
  381. box-shadow: 0px 6px 20px 0px rgba(43, 48, 54, 0.1);
  382. border-radius: 4px;
  383. .scan_box{
  384. width: 198rpx;
  385. height: 198rpx;
  386. background: #F0F8FF;
  387. border-radius: 4px;
  388. image{
  389. width: 78rpx;
  390. height: 78rpx;
  391. }
  392. }
  393. .scan_name{
  394. margin-top: 24rpx;
  395. font-size: 36rpx;
  396. color: #2B3036;
  397. line-height: 56rpx;
  398. }
  399. .scan_scr{
  400. font-size: 24rpx;
  401. color: #8D9399;
  402. line-height: 36rpx;
  403. }
  404. }
  405. .placeholder-view{
  406. width: 100%;
  407. height: 202rpx;
  408. // height: 156rpx;
  409. }
  410. }
  411. .faillogin{
  412. background: #ffffff;
  413. }
  414. .footer_box{
  415. position:fixed;
  416. bottom: 0;
  417. width: 100%;
  418. padding: 26rpx 32rpx 68rpx;
  419. box-sizing: border-box;
  420. // height: 78px;
  421. background: #ffffff;
  422. display: flex;
  423. justify-content: space-around;
  424. flex-direction: row;
  425. box-shadow: 0px 6px 20px 0px rgba(43, 48, 54, 0.1);
  426. border-radius: 0px 0px 4px 4px;
  427. border-top:1px solid #F5F6F7;
  428. }
  429. .footer_box_active{
  430. border-top:1px solid #c7c8c8;
  431. }
  432. .footer_box_pop{
  433. position: absolute;
  434. width: 100%;
  435. height: 100%;
  436. top: 0;
  437. left: 0;
  438. background: #000000;
  439. opacity: 0.2;
  440. }
  441. .spacedetail{
  442. display: flex;
  443. flex-direction: row;
  444. align-items: center;
  445. }
  446. .footer_box{
  447. z-index:100;
  448. .item_title{
  449. font-size: 18px;
  450. line-height: 28px;
  451. }
  452. .item_des{
  453. color: #8D9399;
  454. font-size: 12px;
  455. }
  456. .item_img{
  457. width: 106rpx;
  458. height: 106rpx;
  459. background: #F0F8FF;
  460. border-radius: 4px;
  461. margin-right: 24rpx;
  462. display: flex;
  463. justify-content: center;
  464. align-items: center;
  465. cover-image{
  466. width: 48rpx;
  467. height: 48rpx;
  468. }
  469. }
  470. }