hardware.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. .hardware-list{
  2. position: fixed;
  3. top: 10px;
  4. left: 10px;
  5. z-index: 999;
  6. color: #000;
  7. padding: 20px;
  8. width: 30%;
  9. min-Width:500px;
  10. }
  11. .hard-header{
  12. color: #fff;
  13. display: inline-block;
  14. font-size: 18px;
  15. font-weight: bold;
  16. width: 140px;
  17. padding: 10px 15px;
  18. background: #262729;
  19. cursor: pointer;
  20. }
  21. .hard-header >img{
  22. width: 12px;
  23. display: inline-block;
  24. margin-left: 10px;
  25. cursor: pointer;
  26. }
  27. .hard-body{
  28. background: #262729;
  29. width: 100%;
  30. padding: 20px;
  31. }
  32. .hardware-list a{
  33. color: inherit;
  34. }
  35. .plugin-action{
  36. color: #1890ff!important;
  37. cursor: pointer;
  38. }
  39. .plugin-action img{
  40. width: 24px;
  41. }
  42. #temperature{
  43. width: 360px;
  44. height: 400px;
  45. }
  46. .ac-con{
  47. background: #363F51;
  48. position: relative;
  49. width: 360px;
  50. color: #24E8CF;
  51. padding-top: 20px;
  52. padding-bottom: 10px;
  53. text-align: center;
  54. border-radius: 5px;
  55. min-height: 300px;
  56. }
  57. .ac-con .ac-body{
  58. width: 100%;
  59. height: 100%;
  60. padding: 0;
  61. }
  62. .ac-con .ac-switch{
  63. position: absolute;
  64. top: 50%;
  65. left: 50%;
  66. transform: translate(-50%,-50%);
  67. }
  68. #air-conditioner{
  69. width: 160px;
  70. height: 146px;
  71. margin: 0 auto;
  72. }
  73. .ac-title{
  74. text-align: center;
  75. margin-bottom: 10px;
  76. }
  77. .ac-con .ac-btn{
  78. color: #fff;
  79. background: #2EC2AE;
  80. display: inline-block;
  81. padding: 0 10px;
  82. line-height: 36px;
  83. height: 36px;
  84. border-radius: 5px;
  85. cursor: pointer;
  86. }
  87. .activeTxt{
  88. color: #006558!important;
  89. }
  90. .ac-left{
  91. position: absolute;
  92. top: 46px;
  93. left: 12px;
  94. }
  95. .ac-left li{
  96. margin: 16px 0;
  97. }
  98. .ac-left li:not(:first-of-type),.ac-left li:not(:last-of-type){
  99. cursor: pointer;
  100. }
  101. .ac-left li i{
  102. font-size: 24px;
  103. color: #fff;
  104. }
  105. .ac-left li .iconfengsu1{
  106. color: #2EC2AE;
  107. }
  108. .ac-left .active i{
  109. color: #2EC2AE;
  110. }
  111. .ac-left li .iconfengsu{
  112. font-size: 18px;
  113. }
  114. .ac-con .iconquxiao{
  115. position: absolute;
  116. top: 24px;
  117. right: 20px;
  118. color: #F5F5F5;
  119. font-size: 10px;
  120. cursor: pointer;
  121. }
  122. .ac-con .ac-close{
  123. position: absolute;
  124. top: 64px;
  125. right: 20px;
  126. color: #fff;
  127. font-size: 10px;
  128. cursor: pointer;
  129. min-width: 50px;
  130. }
  131. .btm-con{
  132. margin-top: -15px;
  133. }
  134. .btm-con > div{
  135. display: flex;
  136. align-items: center;
  137. justify-content: center;
  138. width: calc(100% - 24px);
  139. margin: 0 auto;
  140. }
  141. .btm-con >div .ac-btn{
  142. width: 50%;
  143. margin-top: 12px;
  144. }
  145. .btm-con >div .ac-btn:last-of-type{
  146. margin-left: 12px;
  147. }
  148. .btm-con >div:first-of-type span{
  149. color: #fff;
  150. display: inline-block;
  151. }
  152. .btm-con >div:first-of-type > span:last-of-type{
  153. margin-left: 12px;
  154. }
  155. .btm-con >div:first-of-type i{
  156. color: #2EC2AE;
  157. }
  158. .btm-con .minbtn .ac-btn{
  159. max-width: 100px;
  160. }
  161. .oper-con{
  162. border-top: 1px solid #BFBFBF;
  163. width: 100%;
  164. margin-top: 10px;
  165. padding-top: 10px;
  166. display: none;
  167. }
  168. .oper-con>div{
  169. justify-content: space-between;
  170. display: flex;
  171. margin: 0 12px;
  172. flex-wrap: wrap;
  173. }
  174. .oper-con>div>span{
  175. min-width: calc((100% - 40px) / 4);
  176. margin-bottom: 10px;
  177. }
  178. .air-con{
  179. border-top: 1px solid #BFBFBF;
  180. width: 100%;
  181. margin-top: 10px;
  182. padding-top: 10px;
  183. position: relative;
  184. display: none;
  185. }
  186. .air-con > .fixed{
  187. position: absolute;
  188. }
  189. .air-con > .up{
  190. top: 20px;
  191. left: 50%;
  192. transform: translateX(-50%) rotate(-90deg);
  193. }
  194. .air-con > .down{
  195. bottom: 10px;
  196. left: 50%;
  197. transform: translateX(-50%) rotate(90deg);
  198. }
  199. .air-con > .left{
  200. left: 50px;
  201. top: 50%;
  202. transform: translateY(-50%) rotate(180deg);
  203. }
  204. .air-con > .right{
  205. right: 50px;
  206. top: 50%;
  207. transform: translateY(-50%);
  208. }
  209. .air-con > div{
  210. padding: 60px;
  211. }
  212. .air-con > div > span{
  213. display: block!important;
  214. margin: 10px auto;
  215. max-width: 120px;
  216. }
  217. .m-con{
  218. width: 600px;
  219. }
  220. .m-con .iconquxiao{
  221. position: absolute;
  222. top: 24px;
  223. right: 15px;
  224. color: #F5F5F5;
  225. font-size: 10px;
  226. cursor: pointer;
  227. z-index: 999;
  228. }
  229. #monitor{
  230. width: 100%;
  231. background: #262729;
  232. }