index.scss 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. .screen-container {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. .screen-title-container {
  6. position: absolute;
  7. left: 0;
  8. top: 0;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. width: 100%;
  13. height: 60px;
  14. background: url("./img/screen-title-bg.png") 100% 100% no-repeat;
  15. background-size: 100% 100%;
  16. .title-content {
  17. font-family: AlimamaShuHeiTi-Bold;
  18. font-weight: 700;
  19. font-size: 20px;
  20. color: transparent;
  21. letter-spacing: 3px;
  22. text-align: center;
  23. background-image: linear-gradient(to bottom, #fefefe 60%, #4E86AA);
  24. -webkit-background-clip: text;
  25. margin-bottom: 20px;
  26. }
  27. }
  28. .screen-left-container {
  29. padding: 10px 15px;
  30. box-sizing: border-box;
  31. background: rgba(1, 11, 33, 0.91);
  32. border-radius: 6px;
  33. position: absolute;
  34. left: 1vw;
  35. width: 23vw;
  36. max-height: calc(100vh - 80px);
  37. top: 60px;
  38. > :not(:first-child) {
  39. margin-top: 20px;
  40. }
  41. .container-title {
  42. display: flex;
  43. justify-content: left;
  44. align-items: center;
  45. color: #fefefe;
  46. font-family: AlimamaShuHeiTi-Bold;
  47. width: 100%;
  48. height: 30px;
  49. font-size: 14px;
  50. background: url("./img/block-header-bg.png") 100% 100% no-repeat;
  51. background-size: 100% 100%;
  52. }
  53. .control-content {
  54. > :not(:first-child) {
  55. margin-top: 5px;
  56. }
  57. .ctl-item {
  58. font-size: 12px;
  59. ::v-deep {
  60. .el-input__inner {
  61. background: transparent;
  62. border: 1px solid #4EBBCD;
  63. border-radius: 4px;
  64. font-size: 12px;
  65. color: #fefefe;
  66. }
  67. .el-input-group__append {
  68. background-image: linear-gradient(180deg, #3AA8E9 0%, #4E7ACD 100%);
  69. border: none;
  70. color: #fefefe;
  71. }
  72. .vue-treeselect__control {
  73. background: transparent;
  74. border: 1px solid #4EBBCD;
  75. .vue-treeselect__single-value {
  76. color: #fefefe;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. .machine-list {
  83. box-shadow: inset 0 0 2px 1px #31b9fd66;
  84. padding: 10px 10px 20px 10px;
  85. box-sizing: border-box;
  86. > div:not(:first-child) {
  87. margin-top: 10px;
  88. }
  89. .list-container-title {
  90. font-family: PingFangSC-SNaNpxibold;
  91. font-weight: 600;
  92. font-size: 14px;
  93. color: #98CDFB;
  94. letter-spacing: 0;
  95. }
  96. .content-list {
  97. min-height: 250px;
  98. max-height: 65vh;
  99. overflow: hidden;
  100. overflow-y: scroll;
  101. color: #fefefe;
  102. display: flex;
  103. flex-direction: column;
  104. align-items: flex-start;
  105. justify-content: flex-start;
  106. .list-item {
  107. width: 100%;
  108. height: 25px;
  109. font-size: 12px;
  110. display: flex;
  111. justify-content: flex-start;
  112. align-items: center;
  113. padding: 0 5px;
  114. box-sizing: border-box;
  115. letter-spacing: 1px;
  116. cursor: pointer;
  117. &.selected-item {
  118. border: 1px solid #4EBBCD;
  119. border-radius: 4px;
  120. }
  121. .machine-status {
  122. display: inline-block;
  123. width: 10px;
  124. height: 10px;
  125. border-radius: 100%;
  126. margin-right: 10px;
  127. }
  128. &:nth-child(odd) {
  129. background: #012748;
  130. }
  131. }
  132. .no-more {
  133. color: #707070C5;
  134. font-size: 10px;
  135. width: 100%;
  136. text-align: center;
  137. }
  138. &::-webkit-scrollbar {
  139. display: none;
  140. }
  141. }
  142. }
  143. }
  144. .screen-right-container {
  145. position: absolute;
  146. right: 1vw;
  147. width: 23vw;
  148. top: 60px;
  149. > :not(:first-child) {
  150. margin-top: 20px;
  151. }
  152. .pile-status-legend {
  153. position: absolute;
  154. right: 23vw;
  155. width: 8vw;
  156. top: 0;
  157. .legend-item {
  158. display: flex;
  159. align-items: center;
  160. justify-content: flex-start;
  161. color: #fefefe;
  162. font-family: AlimamaShuHeiTi-Bold;
  163. text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  164. &:not(:first-child) {
  165. margin-top: 5px;
  166. }
  167. i {
  168. display: inline-block;
  169. width: 14px;
  170. height: 14px;
  171. border-radius: 14px;
  172. margin-right: 10px;
  173. border: 1px solid #4EBBCD;
  174. }
  175. }
  176. }
  177. }
  178. .online-summery {
  179. width: 100%;
  180. height: 100px;
  181. display: flex;
  182. justify-content: center;
  183. align-items: center;
  184. .machine-pie-chart {
  185. height: 100px;
  186. width: 100px;
  187. background: url("./img/pie-bg.png") 100% 100% no-repeat;
  188. background-size: 100% 100%;
  189. }
  190. .machine-pie-legend {
  191. color: #fefefe;
  192. width: calc(80% - 100px);
  193. .legend-item {
  194. height: 40px;
  195. width: 100%;
  196. display: flex;
  197. justify-content: space-evenly;
  198. align-items: center;
  199. > i {
  200. display: inline-block;
  201. width: 10px;
  202. height: 10px;
  203. }
  204. }
  205. }
  206. }
  207. .online-list {
  208. width: 100%;
  209. height: 120px;
  210. overflow-y: scroll;
  211. &::-webkit-scrollbar {
  212. display: none;
  213. }
  214. > :not(:first-child) {
  215. margin-top: 10px;
  216. }
  217. .list-item {
  218. box-sizing: border-box;
  219. padding: 0 10px;
  220. color: #fefefe;
  221. width: 100%;
  222. height: 30px;
  223. box-shadow: inset 0 0 1px 1px #31b9fd66;
  224. display: flex;
  225. justify-content: space-between;
  226. align-items: center;
  227. }
  228. }
  229. .offset-status {
  230. width: 100%;
  231. height: 200px;
  232. display: flex;
  233. justify-content: flex-start;
  234. align-items: center;
  235. flex-direction: column;
  236. > :not(:first-child) {
  237. margin-top: 10px;
  238. }
  239. .offset-title {
  240. height: 20px;
  241. font-weight: 600;
  242. font-size: 15px;
  243. color: #98CDFB;
  244. letter-spacing: 0;
  245. display: flex;
  246. flex-direction: column;
  247. justify-content: center;
  248. align-items: center;
  249. .verticality-tolerance {
  250. font-size: 12px;
  251. &.warning {
  252. .value {
  253. color: #FF0000;
  254. }
  255. }
  256. }
  257. }
  258. .offset-item {
  259. width: 140px;
  260. height: 140px;
  261. background: url("./img/target.svg") 100% 100% no-repeat;
  262. background-size: 100% 100%;
  263. position: relative;
  264. .deviation-point {
  265. display: inline-block;
  266. width: 10px;
  267. height: 10px;
  268. border-radius: 10px;
  269. position: absolute;
  270. background-color: #13ce66;
  271. top: 50%;
  272. left: 50%;
  273. transform: translate(-50%, -50%);
  274. }
  275. .label {
  276. position: absolute;
  277. color: #fefefe;
  278. width: 65px;
  279. display: flex;
  280. flex-direction: column;
  281. justify-content: flex-start;
  282. align-items: flex-start;
  283. font-size: 12px;
  284. &.tilt-angle {
  285. left: 100%;
  286. top: 50%;
  287. transform: translate(0%, -50%);
  288. }
  289. &.forward-tilt-angle {
  290. top: 100%;
  291. left: 50%;
  292. transform: translate(-50%, 0%);
  293. }
  294. }
  295. }
  296. }
  297. }
  298. .screen-dialog {
  299. ::v-deep {
  300. .el-dialog {
  301. background: #02102C;
  302. border: solid 2px rgba(49, 185, 253, 0.8);
  303. box-sizing: border-box;
  304. border-radius: 4px;
  305. width: fit-content;
  306. }
  307. .el-dialog__header {
  308. padding: 10px;
  309. display: flex;
  310. justify-content: space-between;
  311. align-items: center;
  312. .el-dialog__headerbtn {
  313. position: unset;
  314. .el-dialog__close {
  315. color: #fefefe;
  316. font-size: 20px;
  317. }
  318. }
  319. }
  320. .el-dialog__title {
  321. font-family: PingFangSC-Medium;
  322. font-weight: 500;
  323. font-size: 13px;
  324. letter-spacing: 1px;
  325. color: #FFFFFF;
  326. }
  327. .el-dialog__body {
  328. box-sizing: border-box;
  329. padding: 20px;
  330. }
  331. }
  332. .dialog-content {
  333. width: 45vw;
  334. ::v-deep {
  335. .el-descriptions__body {
  336. background: transparent;
  337. color: #BCC8DD;
  338. .el-descriptions-item__container .el-descriptions-item__content {
  339. justify-content: flex-end;
  340. margin-right: 10px;
  341. font-family: Helvetica-BoldOblique;
  342. font-weight: BoldOblique;
  343. color: #4FDFFF;
  344. }
  345. }
  346. }
  347. .machine-realtime-container {
  348. width: 100%;
  349. height: 250px;
  350. display: flex;
  351. justify-content: flex-start;
  352. align-items: center;
  353. flex-direction: column;
  354. > :not(:first-child) {
  355. margin-top: 10px;
  356. }
  357. .realtime-title {
  358. height: 20px;
  359. width: 100%;
  360. color: #98CDFB;
  361. font-weight: 600;
  362. letter-spacing: 0;
  363. display: flex;
  364. justify-content: flex-start;
  365. align-items: center;
  366. }
  367. .realtime-chart {
  368. flex: 1;
  369. width: 100%;
  370. }
  371. }
  372. }
  373. }