main.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. body{
  2. padding: 0;
  3. margin: 0;
  4. overflow: hidden;
  5. background-color: #050C28;
  6. /*background-image: url('image/bg.jpeg');*/
  7. }
  8. thead tr{
  9. background-image: url('../image/thead_bg.png');
  10. background: rgba(25,57,103,0.7);
  11. border: 1px solid #7DA2CD;
  12. height: 32px;
  13. }
  14. tbody tr{
  15. background: rgba(25,57,103,0.3);
  16. border: 1px solid #7DA2CD;
  17. height: 32px;
  18. font-size: 16px;
  19. }
  20. td{
  21. border-bottom: 1px solid #7DA2CD;
  22. }
  23. #loading{
  24. position: absolute;
  25. top: 50%;
  26. left: 50%;
  27. font-size: 18px;
  28. color: blue;
  29. z-index: 1;
  30. margin-left: -120px;
  31. width: 100%;
  32. color: #B0E1FF;
  33. letter-spacing: 7px;
  34. font-weight: bold;
  35. }
  36. #loading_a1{
  37. position: absolute;
  38. z-index: 1;
  39. left: 50%;
  40. top: 40%;
  41. width: 100px;
  42. height: 100px;
  43. margin-top: -50px;
  44. margin-left: -50px;
  45. }
  46. #search{
  47. position: absolute;width: 320px;top: 12%;left: 50%;margin-left: -160px;
  48. z-index: 1;
  49. background: rgba(41,85,137,0.7);
  50. border-radius: 2px 2px 2px 2px;
  51. border: 1px solid #66AEF3;
  52. }
  53. #search input{
  54. width: 315px;height: 38px;background: rgba(41,85,137,0.7);border-radius: 2px 2px 2px 2px;border: 1px solid #66AEF3;color: #ffffff;font-size: 14px;
  55. letter-spacing: 3px;
  56. }
  57. #search_result{
  58. display: none;
  59. position: absolute;width: 310px;max-height: 256px;min-height: 32px; top: 17%;left: 50%;margin-left: -160px;opacity: 0.7;background-color: #132F5F;
  60. padding: 8px;color: #Ffffff;font-size: 14px;
  61. background: rgba(19,47,95,0.8);
  62. box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.2);
  63. border-radius: 2px 2px 2px 2px;
  64. z-index: 1
  65. }
  66. #search_result .item{
  67. border-radius: 2px 2px 2px 2px;height: 30px;line-height: 30px;padding-left: 5px;cursor: pointer;
  68. }
  69. #search_result .item:hover{
  70. background: #3B6096;
  71. }
  72. #imp_item{
  73. position: absolute;
  74. width: 160px;
  75. height: 150px;
  76. background: rgba(19, 47, 95, 0.8);
  77. box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
  78. border-radius: 2px 2px 2px 2px;
  79. z-index: 4;
  80. top: 60px;
  81. right: 71px;
  82. padding: 5px;
  83. display: none;
  84. }
  85. #imp_item>div{
  86. width: 144px;
  87. height: 30px;
  88. border-radius: 2px 2px 2px 2px;
  89. cursor: pointer;
  90. color: #ffffff;
  91. line-height: 30px;
  92. padding:0 5px;
  93. }
  94. #imp_item>div:hover{
  95. background: #3B6096;
  96. }
  97. #top{
  98. position: fixed;
  99. top:0;
  100. left: 0;
  101. width: 1920px;
  102. height: 95px;
  103. z-index: 1;
  104. background: #ffffff00;
  105. background-image: url('../image/top.png');
  106. }
  107. #dev_state{
  108. position: absolute;
  109. z-index: 1;
  110. top:100px;
  111. left: 10px;
  112. }
  113. #dev_state .title{
  114. background-image: url('../image/dev_state_title.png');
  115. background-repeat: no-repeat;
  116. background-size: auto;
  117. height: 32px;
  118. width: 416px;
  119. }
  120. #dev_state .content{
  121. margin:5px;
  122. padding: 10px;
  123. width: 400px;
  124. height: 238px;
  125. background: rgba(41,85,137,0.7);
  126. }
  127. #dev_alarm{
  128. position: absolute;
  129. z-index: 1;
  130. top:415px;
  131. left: 10px;
  132. }
  133. #dev_alarm .title{
  134. background-image: url('../image/dev_alarm_title.png');
  135. background-repeat: no-repeat;
  136. background-size: auto;
  137. height: 32px;
  138. width: 416px;
  139. text-align: center;
  140. color: #f0f377;
  141. line-height: 32px;
  142. }
  143. #dev_alarm .content{
  144. margin:5px;
  145. padding: 10px;
  146. width: 400px;
  147. height: auto;
  148. background: rgba(41,85,137,0.7);
  149. }
  150. #dev_stop{
  151. position: absolute;
  152. z-index: 1;
  153. top:705px;
  154. left: 10px;
  155. }
  156. #dev_stop .title{
  157. background-image: url('../image/stop_title.png');
  158. background-repeat: no-repeat;
  159. background-size: auto;
  160. height: 32px;
  161. width: 416px;
  162. text-align: center;
  163. color: #f0f377;
  164. line-height: 32px;
  165. }
  166. #dev_stop .content{
  167. margin:5px;
  168. padding: 10px;
  169. width: 400px;
  170. height: auto;
  171. background: rgba(41,85,137,0.7);
  172. }
  173. #dev_xiaolv{
  174. position: absolute;
  175. z-index: 1;
  176. top:100px;
  177. right: 10px;
  178. }
  179. #dev_xiaolv .title{
  180. background-image: url('../image/xiaolv_title.png');
  181. background-repeat: no-repeat;
  182. background-size: auto;
  183. height: 32px;
  184. width: 416px;
  185. text-align: center;
  186. color: #f0f377;
  187. line-height: 32px;
  188. }
  189. #dev_xiaolv .content{
  190. margin:5px;
  191. padding: 10px;
  192. width: 416px;
  193. height: auto;
  194. background: rgba(41,85,137,0.7);
  195. }
  196. #dev_jiadonglv{
  197. position: absolute;
  198. z-index: 1;
  199. top:390px;
  200. right: 10px;
  201. }
  202. #dev_jiadonglv .title{
  203. background-image: url('../image/dev_jiadonglv_title.png');
  204. background-repeat: no-repeat;
  205. background-size: auto;
  206. height: 32px;
  207. width: 416px;
  208. text-align: center;
  209. color: #f0f377;
  210. line-height: 32px;
  211. }
  212. #dev_jiadonglv .content{
  213. margin:5px;
  214. padding: 10px;
  215. width: 416px;
  216. height: auto;
  217. background: rgba(41,85,137,0.7);
  218. }
  219. #dev_sc_qushi{
  220. position: absolute;
  221. z-index: 1;
  222. top:625px;
  223. right: 10px;
  224. }
  225. #dev_sc_qushi .title{
  226. background-image: url('../image/dev_sc_qushi_title.png');
  227. background-repeat: no-repeat;
  228. background-size: auto;
  229. height: 32px;
  230. width: 416px;
  231. text-align: center;
  232. color: #f0f377;
  233. line-height: 32px;
  234. }
  235. #dev_sc_qushi .content{
  236. margin:5px;
  237. padding: 10px;
  238. width: 416px;
  239. height: auto;
  240. background: rgba(41,85,137,0.7);
  241. }
  242. #dev_used_qushi{
  243. position: absolute;
  244. z-index: 1;
  245. top:855px;
  246. right: 10px;
  247. }
  248. #dev_used_qushi .title{
  249. background-image: url('../image/dev_used_qushi_title.png');
  250. background-repeat: no-repeat;
  251. background-size: auto;
  252. height: 32px;
  253. width: 416px;
  254. text-align: center;
  255. color: #f0f377;
  256. line-height: 32px;
  257. }
  258. #dev_used_qushi .content{
  259. margin:5px;
  260. padding: 10px;
  261. width: 416px;
  262. height: auto;
  263. background: rgba(41,85,137,0.7);
  264. }
  265. .showinfo{
  266. position: absolute;
  267. width: 800px;
  268. height: 400px;
  269. left: 50%;
  270. top:50%;
  271. margin-top: -200px;
  272. margin-left:-400px;
  273. z-index: 2;
  274. background-color: rgba(9,28,67,0.9);
  275. border: 2px solid #445985;
  276. display: none;
  277. color: #7E96D9;
  278. }
  279. .newwin .title,.showinfo .title{
  280. width: 100%;
  281. height: 40px;
  282. background: linear-gradient( 90deg, #2E5097 0%, #071433 100%);
  283. }
  284. .newwin{
  285. position: absolute;
  286. width: 1330px;
  287. height: 576px;
  288. left: 50%;
  289. top:50%;
  290. margin-top: -278px;
  291. margin-left:-665px;
  292. z-index: 2;
  293. background-color: rgba(9,28,67,0.9);
  294. border: 2px solid #445985;
  295. display: none;
  296. color: #7E96D9;
  297. }
  298. .newwin .title .text,.showinfo .title .text{
  299. font-weight: 400;
  300. font-size: 24px;
  301. line-height: 28px;
  302. text-align: left;
  303. color: #AFC5FF;
  304. float: left;
  305. margin: 7px;
  306. }
  307. .newwin .btn{
  308. display: inline-block;
  309. width: 136px;
  310. height: 32px;
  311. background: linear-gradient(#2056c605, #3765c3 0%, rgba(0, 39, 118, 0) 100%);
  312. border: 1px solid;
  313. border-image: linear-gradient(360deg, rgba(168, 196, 255, 1), rgba(164, 193, 255, 0)) 1 1;
  314. margin:10px;
  315. line-height: 32px;
  316. font-size: 18px;
  317. cursor: pointer;
  318. }
  319. .newwin .btn_active{
  320. background-color: #a09ef5;
  321. font-weight: bold;
  322. color: #fff;
  323. }
  324. .newwin table{
  325. width: 100%;
  326. text-align: center;
  327. border-top: 1px solid #8194BC;
  328. border-bottom: 1px solid #8194BC;
  329. color: #97BCFF;
  330. }
  331. .newwin table tr{
  332. height: 50px
  333. }
  334. .newwin .value{
  335. color: #fff;
  336. }
  337. .newwin .dataContent .no_alarm{
  338. width: 95%;
  339. height: 140px;
  340. color: #ffffff;
  341. font-size: 32px;
  342. text-align: center;
  343. line-height: 140px;
  344. }
  345. .newwin .dataContent .has_alarm{
  346. width: 95%;
  347. height: 140px;
  348. display: none;
  349. font-size: 24px;
  350. text-align: center;
  351. line-height: 140px;
  352. }
  353. .newwin .dataContent .has_alarm .alarm_span{
  354. margin: 0 20px;
  355. color: red;
  356. }
  357. .newwin .dataContent .dev_alarm_echarts{
  358. width: 95%;
  359. height: 300px;
  360. line-height: 300px;
  361. text-align: center;
  362. font-size: 24px;
  363. color: #ffffff;
  364. }
  365. .showinfo td,.newwin td{
  366. border: 0px !important;
  367. }
  368. .td_splitLine{
  369. border: 1px solid;
  370. border-image: linear-gradient(90deg, rgba(126, 150, 217, 0), rgba(126, 150, 217, 1), rgba(126, 150, 217, 0)) 1 1;
  371. }
  372. #date_select{
  373. position: absolute;
  374. display: none;
  375. z-index: 1000;
  376. color: #ffffff;
  377. background: #396da9;
  378. padding: 5px;
  379. border: 1px solid #314f85;
  380. }
  381. #date_select .triangle{
  382. width: 0;
  383. height: 0;
  384. border-left: 5px solid transparent;
  385. border-right: 5px solid transparent;
  386. border-bottom: 8.6px solid #396da9;
  387. position: absolute;
  388. top: -8px;
  389. right: 19px;
  390. }
  391. .ui-datepicker-trigger{
  392. color: #fff;
  393. background: #27486f;
  394. border: 1px solid #7d8aa3;
  395. font-size: 11px;
  396. cursor: pointer;
  397. padding: 0 3px;
  398. border-radius: 3px;
  399. }
  400. .ui-datepicker-calendar tbody tr{
  401. font-size: 14px !important
  402. }
  403. .hasDatepicker{
  404. background: #ccc;
  405. border: 1px solid #fff;
  406. border-radius: 3px;
  407. margin: 0 5px;
  408. color: #3d3ad7;
  409. font-weight: bold;
  410. }
  411. .dateSelected_ok{
  412. text-align: center;
  413. }
  414. .dateSelected_ok button{
  415. color: #fff;
  416. background: #27486f;
  417. border: 1px solid #7d8aa3;
  418. font-size: 14px;
  419. cursor: pointer;
  420. margin-top: 10px;
  421. padding: 0 9px;
  422. border-radius: 3px;
  423. }