DDJDetail.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. .alertBox {
  2. overflow: hidden;
  3. }
  4. .alertBox .left {
  5. float: left;
  6. width: 600px;
  7. background: #f0f2f5;
  8. padding-top: 15px;
  9. padding-bottom: 33px;
  10. box-sizing: border-box;
  11. }
  12. .alertBox .left .wrap {
  13. display: flex;
  14. flex-direction: row;
  15. width: 565px;
  16. margin: 0 auto;
  17. justify-content: flex-start;
  18. }
  19. .alertBox .left .wrap .items {
  20. width: 157px;
  21. height: 107px;
  22. background: #Fff;
  23. border-radius: 8px;
  24. margin-left: 5px;
  25. box-shadow: 1px 1px 10px #a39e9e;
  26. }
  27. .alertBox .left .wrap .items .itemnormal {
  28. background: url("../../../../Content/images/DeviceMonitor/normal.png") no-repeat;
  29. }
  30. .alertBox .left .wrap .items .itemwarn {
  31. background: url("../../../../Content/images/DeviceMonitor/warn.png") no-repeat;
  32. }
  33. .alertBox .left .wrap .items .itemerror {
  34. background: url("../../../../Content/images/DeviceMonitor/error.png") no-repeat;
  35. }
  36. .alertBox .left .wrap .items.error {
  37. border: 1px solid #d10707;
  38. }
  39. .alertBox .left .wrap .items.warn {
  40. border: 1px solid #ffab09;
  41. }
  42. .alertBox .left .wrap .items .head {
  43. display: flex;
  44. flex-direction: row;
  45. justify-content: space-between;
  46. align-items: center;
  47. padding: 12px 11px 10px 15px;
  48. }
  49. .alertBox .left .wrap .items .platform {
  50. display: flex;
  51. flex-direction: column;
  52. justify-content: center;
  53. align-items: flex-start;
  54. }
  55. .alertBox .left .wrap .items .platform label {
  56. font-family: DIN-Bold;
  57. font-size: 16px;
  58. }
  59. .alertBox .left .wrap .items .content {
  60. padding: 0 15px 0 15px;
  61. }
  62. .alertBox .left .floor {
  63. margin-top: 15px;
  64. margin-bottom: 14px;
  65. position: relative;
  66. }
  67. .alertBox .left .floor .cover {
  68. display: block;
  69. margin: 0 auto;
  70. }
  71. .alertBox .left .floor .mark {
  72. position: absolute;
  73. left: 0;
  74. top: 0;
  75. width: 23px;
  76. height: 30px;
  77. line-height: 24px;
  78. text-align: center;
  79. font-family: DIN-Bold;
  80. background-size: 100% 100%;
  81. }
  82. .alertBox .left .floor .mark.normal {
  83. color: #1ab700;
  84. background: url("../../../../Content/images/DeviceMonitor/normal2.png") no-repeat;
  85. }
  86. .alertBox .left .floor .mark.warn {
  87. color: #ffab09;
  88. background: url("../../../../Content/images/DeviceMonitor/warn2.png") no-repeat;
  89. }
  90. .alertBox .left .floor .mark.error {
  91. color: #d10707;
  92. background: url("../../../../Content/images/DeviceMonitor/error2.png") no-repeat;
  93. }
  94. .alertBox .right {
  95. float: left;
  96. width: 240px;
  97. background: #fefefe;
  98. padding: 10px 0px 0 8px;
  99. }
  100. .alertBox .right .title {
  101. display: flex;
  102. flex-direction: row;
  103. justify-content: flex-start;
  104. align-items: center;
  105. }
  106. .alertBox .right .title span {
  107. color: #2d2f33;
  108. font-size: 16px;
  109. font-weight: bold;
  110. margin-left: 10px;
  111. }
  112. .alertBox .right .device {
  113. margin-top: 18px;
  114. }
  115. .alertBox .right .device .device_Info {
  116. height: 32px;
  117. line-height: 32px;
  118. overflow: hidden;
  119. padding: 0 12px;
  120. }
  121. .alertBox .right .device .device_Info .name {
  122. font-size: 14px;
  123. color: #525866;
  124. min-width: 90px;
  125. float: left;
  126. }
  127. .alertBox .right .device .device_Info .inner {
  128. font-size: 14px;
  129. color: #525866;
  130. font-weight: bold;
  131. float: left;
  132. }
  133. .alertBox .right .device .device_Info.even {
  134. background: #f2f3f5;
  135. }
  136. .selected {
  137. color: red;
  138. }
  139. .highlight {
  140. background: yellow;
  141. }
  142. .main {
  143. position: relative;
  144. min-width: 1024px;
  145. max-width: 1920px;
  146. margin: 0 auto;
  147. height: 100%;
  148. padding: 0.5% 0.5%;
  149. box-box-sizing: border-box;
  150. display: flex;
  151. flex-direction: row;
  152. }
  153. .head {
  154. width: 100%;
  155. height: 60px;
  156. padding: 10px;
  157. box-sizing: border-box;
  158. display: flex;
  159. flex-direction: row;
  160. justify-content: space-between;
  161. align-items: center;
  162. border-bottom: 1px solid #e6e6e6;
  163. }
  164. .head .left {
  165. display: flex;
  166. flex-direction: row;
  167. justify-content: flex-start;
  168. align-items: center;
  169. }
  170. .head .left span {
  171. display: block;
  172. width: 70px;
  173. height: 30px;
  174. line-height: 30px;
  175. text-align: center;
  176. background: #d6d6d6;
  177. font-size: 16px;
  178. color: #333333;
  179. margin-right: 6px;
  180. border-radius: 5px;
  181. font-family: DIN-Bold;
  182. cursor: pointer;
  183. }
  184. .head .left span.active {
  185. background: #1890ff;
  186. color: #fff;
  187. }
  188. .head .right {
  189. display: flex;
  190. flex-direction: row;
  191. justify-content: flex-start;
  192. align-items: center;
  193. }
  194. .head .right .tipIcon {
  195. display: flex;
  196. flex-direction: row;
  197. justify-content: flex-start;
  198. align-items: center;
  199. margin-left: 20px;
  200. }
  201. .head .right .tipIcon span {
  202. color: #525866;
  203. font-size: 14px;
  204. margin-left: 5px;
  205. }
  206. .center {
  207. height: calc(100% - 60px);
  208. display: flex;
  209. box-sizing: border-box;
  210. flex-direction: row;
  211. justify-content: space-between;
  212. align-items: flex-start;
  213. }
  214. .center .left {
  215. position: relative;
  216. padding-left: 177px;
  217. padding-top: 20px;
  218. display: flex;
  219. box-sizing: border-box;
  220. flex-direction: row;
  221. justify-content: flex-start;
  222. align-items: flex-start;
  223. }
  224. .center .left .LineBox {
  225. padding-top: 57px;
  226. position: relative;
  227. }
  228. .center .left .LineBoxstu {
  229. position: absolute;
  230. left: 8px;
  231. top: 48px;
  232. }
  233. .center .left .itemBox {
  234. display: flex;
  235. box-sizing: border-box;
  236. flex-direction: column;
  237. justify-content: flex-start;
  238. align-items: flex-start;
  239. }
  240. .center .left .item {
  241. position: relative;
  242. top: 49px;
  243. left: 4px;
  244. line-height: 1;
  245. }
  246. .center .left .item .num {
  247. color: #09355e;
  248. position: absolute;
  249. left: 48px;
  250. top: 5px;
  251. font-size: 8px;
  252. font-family: DIN-Bold;
  253. }
  254. .center .left .item .num.nums {
  255. left: 45px;
  256. }
  257. .center .left .item .ddj {
  258. margin-left: 31px;
  259. display: block;
  260. }
  261. .center .left .item .round {
  262. position: absolute;
  263. width: 790px;
  264. height: 2px;
  265. left: -22px;
  266. bottom: 8px;
  267. }
  268. .center .right {
  269. height: 100%;
  270. width: 302px;
  271. box-sizing: border-box;
  272. padding: 26px 0 0 12px;
  273. border-left: 1px solid #bdcadb;
  274. }
  275. .center .right .rItem {
  276. margin-bottom: 20px;
  277. }
  278. .center .right .rItem .title {
  279. display: flex;
  280. flex-direction: row;
  281. justify-content: flex-start;
  282. align-items: center;
  283. margin-bottom: 10px;
  284. }
  285. .center .right .rItem .title span {
  286. font-size: 16px;
  287. color: #2d2f33;
  288. font-weight: bold;
  289. margin-left: 6px;
  290. }
  291. .center .right .rItem .tbale {
  292. border: 1px solid #bdcadb;
  293. width: 235px;
  294. margin-left: 12px;
  295. }
  296. .center .right .rItem .tbale .item {
  297. overflow: hidden;
  298. height: 42px;
  299. border-bottom: 1px solid #bdcadb;
  300. }
  301. .center .right .rItem .tbale .item span {
  302. display: block;
  303. float: left;
  304. width: 98px;
  305. height: 42px;
  306. line-height: 42px;
  307. background: #f8f9fb;
  308. font-size: 14px;
  309. color: #525866;
  310. text-align: center;
  311. border-right: 1px solid #bdcadb;
  312. }
  313. .center .right .rItem .tbale .item label {
  314. display: block;
  315. float: left;
  316. width: 135px;
  317. height: 42px;
  318. line-height: 42px;
  319. font-size: 14px;
  320. color: #525866;
  321. text-align: center;
  322. font-family: DIN-Bold;
  323. border-right: 1px solid #bdcadb;
  324. }
  325. .center .right .rItem .InfoItem {
  326. margin-bottom: 15px;
  327. margin-left: 12px;
  328. }
  329. .center .right .rItem .InfoItem .titleS {
  330. display: block;
  331. width: 48px;
  332. height: 20px;
  333. text-align: center;
  334. line-height: 20px;
  335. background: #fe2c2c;
  336. color: #fff;
  337. font-size: 12px;
  338. border-radius: 5px;
  339. margin-bottom: 4px;
  340. }
  341. .center .right .rItem .InfoItem .InfoBlock {
  342. display: flex;
  343. flex-direction: row;
  344. margin-bottom: 4px;
  345. }
  346. .center .right .rItem .InfoItem .InfoBlock span {
  347. color: #525866;
  348. font-size: 14px;
  349. display: block;
  350. min-width: 70px;
  351. }
  352. .center .right .rItem .InfoItem .InfoBlock label {
  353. color: #525866;
  354. font-size: 14px;
  355. font-weight: bold;
  356. }
  357. .Colum {
  358. display: flex;
  359. flex-direction: column;
  360. justify-content: flex-start;
  361. align-items: flex-start;
  362. margin-top: 38px;
  363. }
  364. .onOne {
  365. position: relative;
  366. border: 1px dashed #dbdbdb;
  367. background: #f9f9f9;
  368. margin-right: 4px;
  369. border-radius: 5px;
  370. }
  371. .onOne span {
  372. position: absolute;
  373. color: #09355e;
  374. font-size: 14px;
  375. left: 5px;
  376. top: 50%;
  377. transform: translateY(-50%);
  378. }
  379. .big {
  380. position: absolute;
  381. left: 4px;
  382. bottom: -112px;
  383. }
  384. .ddjnum {
  385. font-size: 18px;
  386. position: absolute;
  387. color: #fff;
  388. font-family: DIN-Bold;
  389. left: 65px;
  390. z-index: 9999;
  391. top: 24px;
  392. }
  393. .position {
  394. position: absolute;
  395. left: 216px;
  396. top: 60px;
  397. }
  398. .firstRow {
  399. position: absolute;
  400. left: 179px;
  401. top: 53px;
  402. color: #292c33;
  403. font-size: 12px;
  404. }
  405. .firstLine {
  406. position: absolute;
  407. left: 217px;
  408. top: 43px;
  409. color: #292c33;
  410. font-size: 12px;
  411. }
  412. .status {
  413. position: absolute;
  414. width: 32px;
  415. height: 22px;
  416. margin-left: 10px;
  417. }
  418. .ddjline {
  419. margin-left: 44px;
  420. width: 723px;
  421. }
  422. .station {
  423. position: relative;
  424. }
  425. .stationgoods {
  426. position: absolute;
  427. margin-left: -23px;
  428. margin-top: 1px;
  429. width: 32px;
  430. height: 20px;
  431. }
  432. .jhd {
  433. position: absolute;
  434. margin-left: 20px;
  435. margin-top: -7px;
  436. height: 12px;
  437. width: 12px
  438. }