index.less 12 KB

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