extra.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. .outter-controller{
  2. position:fixed;
  3. right:-50px;
  4. top:50%;
  5. height:140px;
  6. width:50px;
  7. border-radius:10px 0 0 10px;
  8. margin-top:-70px;
  9. padding:13px 0;
  10. background: -webkit-linear-gradient(#01417f,#021e46);
  11. background: -o-linear-gradient(#01417f,#021e46);
  12. background: -moz-linear-gradient(#01417f,#021e46);
  13. background: linear-gradient(#01417f,#021e46);
  14. display:flex;
  15. flex-direction:column;
  16. justify-content:space-around;
  17. align-items:center;
  18. cursor:pointer;
  19. transition: right 0.5s;
  20. -moz-transition: right 0.5s;; /* Firefox 4 */
  21. -webkit-transition: right 0.5s;; /* Safari 和 Chrome */
  22. -o-transition: right 0.5s;; /* Opera */
  23. }
  24. .tit{
  25. position:absolute;
  26. left:-20px;
  27. width:20px;
  28. height:100%;
  29. top:0;
  30. }
  31. .extra-icon img{
  32. width:35px;
  33. }
  34. .extra-container{
  35. position: fixed;
  36. left: 0;
  37. top: 0;
  38. width: 100%;
  39. height: 100%;
  40. background-color: rgba(0,0,0,0.3);
  41. overflow: hidden;
  42. z-index: 999;
  43. display: none;
  44. }
  45. #lightcontroller,#foodLinecontroller{
  46. position: absolute;
  47. width: 1200px;
  48. height: 850px;
  49. left: 50%;
  50. top: 70px;
  51. background-color: #021429;
  52. border-radius: 10px;
  53. margin-left: -600px;
  54. box-shadow: 0px -10px 5px 0px rgba(255,255,255,0.1), -10px 0px 5px 0px rgba(255,255,255,0.1), 10px 0px 10px 0px rgba(255,255,255,0.1), 0px 10px 10px 0px rgba(255,255,255,0.1);
  55. }
  56. .open-box-head {
  57. height: 50px;
  58. line-height: 50px;
  59. width: 100%;
  60. text-align: center;
  61. position: relative;
  62. color: #ccf5f9;
  63. font-size: 22px;
  64. letter-spacing: 0.1em;
  65. }
  66. .open-box-head:after {
  67. content: '';
  68. position: absolute;
  69. bottom: 0px;
  70. left: 5%;
  71. height: 2px;
  72. width: 90%;
  73. background: linear-gradient(to right, rgba(11,82,224,0), #0b52e0, rgba(11,82,224,0));
  74. }
  75. .open-box-body{
  76. display:flex;
  77. width:100%;
  78. height:calc(100% - 50px)
  79. }
  80. .lightbuild-choose,.foodLinebuild-choose {
  81. width: 240px;
  82. position: relative;
  83. display: flex;
  84. flex-direction: column;
  85. align-items: start;
  86. justify-content: flex-start;
  87. color: #fff;
  88. padding-left: 30px;
  89. height: 100%;
  90. border-right: 2px solid #335bcc;
  91. }
  92. .areabuild-name.active {
  93. color: #335bcc;
  94. }
  95. .areabuild-name {
  96. font-size: 22px;
  97. height: 50px;
  98. line-height: 50px;
  99. cursor: pointer;
  100. width: 100%;
  101. }
  102. .light-container,.foodLine-container{
  103. width:calc(100% - 240px);
  104. height:100%;
  105. }
  106. .container-head-info{
  107. min-width:300px;
  108. margin-left:20px;
  109. margin-top:10px;
  110. border-radius:15px 0 0 15px;
  111. padding-left:20px;
  112. background:linear-gradient(to right, rgba(255,2,2,0.8), rgba(255,161,161,0.3));
  113. color:#fff;
  114. height:30px;
  115. line-height:30px;
  116. }
  117. .light-list,.foodLine-list{
  118. width:100%;
  119. display:none;
  120. flex-wrap:wrap;
  121. justify-content:space-between;
  122. padding:0 20px 20px;
  123. }
  124. .light-list.active,.foodLine-list.active{
  125. display:flex;
  126. }
  127. .light-box,.foodLine-box{
  128. width:45%;
  129. height:420px;
  130. margin-top:10px;
  131. }
  132. .light-box{
  133. height:220px;
  134. }
  135. /* .light-box{
  136. height:310px;
  137. } */
  138. .light-head,.foodLine-head{
  139. width:100%;
  140. height:30px;
  141. }
  142. .light-name,.foodLine-name{
  143. height: 100%;
  144. width: 87px;
  145. font-size: 1em;
  146. display: flex;
  147. align-items: center;
  148. justify-content: center;
  149. color:#fff;
  150. position: relative;
  151. background: -webkit-linear-gradient(#01417f,#021e46);
  152. background: -o-linear-gradient(#01417f,#021e46);
  153. background: -moz-linear-gradient(#01417f,#021e46);
  154. background: linear-gradient(#01417f,#021e46);
  155. }
  156. .light-name:before,.foodLine-name:before {
  157. content: '';
  158. position: absolute;
  159. top: 0;
  160. left: 0;
  161. width: 0;
  162. height: 0;
  163. border-top: 5px solid #010a19;
  164. border-right: 5px solid transparent;
  165. }
  166. .light-name:after,.foodLine-name:after {
  167. content: '';
  168. position: absolute;
  169. top: 0;
  170. right: 0;
  171. width: 0;
  172. height: 0;
  173. border-top: 5px solid #010a19;
  174. border-left: 5px solid transparent;
  175. }
  176. .light-content,.foodLine-content{
  177. width:100%;
  178. height:calc(100% - 30px);
  179. background: #021e46;
  180. border-radius:0 10px 10px 10px;
  181. padding:10px;
  182. }
  183. .relation-romms{
  184. width:100%;
  185. font-size:14px;
  186. color:#fff;
  187. margin-bottom:10px;
  188. }
  189. .foodLineStatus{
  190. color:#fff;
  191. font-size:14px;
  192. margin-bottom:10px;
  193. }
  194. .auto-mode{
  195. color:#2196f3;
  196. margin-right:10px;
  197. }
  198. .handle-mode{
  199. color:#8bc34a;
  200. margin-right:10px;
  201. }
  202. .foodLine-stop{
  203. color:#f44336;
  204. margin-right:10px;
  205. }
  206. .foodLine-run{
  207. color:#4caf50;
  208. margin-right:10px;
  209. }
  210. .foodLine-error{
  211. color:#ff9800;
  212. margin-right:10px;
  213. }
  214. .foodLine-full{
  215. color:#00bcd4
  216. }
  217. .foodLine-null{
  218. color:#9e9e9e
  219. }
  220. .light-awayset,.foodLine-awayset{
  221. font-size:14px;
  222. color:#fff;
  223. margin-bottom:10px;
  224. }
  225. .foodLineright-item{
  226. margin-left:30px;
  227. }
  228. .foodLineright-item>input {
  229. width: 60px;
  230. text-align: center;
  231. height: 20px;
  232. border: 1px solid #335bcc;
  233. border-radius: 4px;
  234. outline: none;
  235. background-color: transparent;
  236. color: #fff;
  237. margin-right:5px;
  238. }
  239. .timer-table{
  240. width:100%;
  241. position:relative;
  242. }
  243. .clear-btn{
  244. padding:3px 10px;
  245. background-color:#607d8b;
  246. color:#fff;
  247. font-size:14px;
  248. right:20px;
  249. top:56px;
  250. position:absolute;
  251. border-radius:5px;
  252. cursor:pointer;
  253. }
  254. .clear-btn:hover{
  255. background-color:#3e5967
  256. }
  257. .timer-name{
  258. color:#fff;
  259. font-size:14px;
  260. }
  261. .timer-dataTable td>input{
  262. width: 120px;
  263. text-align: center;
  264. height: 24px;
  265. border: 1px solid #335bcc;
  266. border-radius: 4px;
  267. outline: none;
  268. background-color: transparent;
  269. color: #fff;
  270. margin:0 10px;
  271. }
  272. .timer-dataTable tr td {
  273. border: 1px solid #0b52e0;
  274. height: 30px;
  275. line-height: 30px;
  276. text-align: center;
  277. color:#fff
  278. }
  279. .timer-dataTable tr td:first-child{
  280. width:30px;
  281. }
  282. .lightsave-btns,.foodLinesave-btns{
  283. width:100%;
  284. display:flex;
  285. justify-content:center;
  286. margin-top:15px;
  287. }
  288. .btn-savesert{
  289. padding:3px 10px;
  290. background-color:#2196f3;
  291. color:#fff;
  292. font-size:14px;
  293. border-radius:5px;
  294. cursor:pointer;
  295. }
  296. .btn-savesert:hover{
  297. background-color:#1a75bd
  298. }