index.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. li {
  7. list-style: none;
  8. }
  9. select,
  10. input {
  11. outline: none;
  12. }
  13. .text-left {
  14. text-align: left;
  15. }
  16. /* 溢出滚动样式 */
  17. .summary ::-webkit-scrollbar {
  18. height: 7px !important;
  19. width: 7px !important;
  20. }
  21. /*定义了滚动条滑块的样式*/
  22. .summary ::-webkit-scrollbar-thumb {
  23. border-radius: 5px;
  24. border-style: dashed;
  25. background-color: #28BEFC;
  26. border-color: #e2242400;
  27. border-width: 1.5px;
  28. background-clip: padding-box;
  29. }
  30. /*定义了轨道的样式*/
  31. .summary ::-webkit-scrollbar-track {
  32. /*滚动条里面轨道*/
  33. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
  34. border-radius: 5px;
  35. background: rgba(0, 0, 0, 0);
  36. }
  37. @font-face {
  38. font-family: electronicFont;
  39. src: url(../font/DS-DIGIT.TTF);
  40. }
  41. @font-face {
  42. font-family: IMPACT;
  43. src: url(../font/IMPACT.TTF);
  44. }
  45. body {
  46. font-family: Arial, Helvetica, sans-serif;
  47. margin: 0;
  48. padding: 0;
  49. /* 背景图定位 / 背景图尺寸 cover 完全铺满容器 contain 完整显示在容器内 */
  50. background: url(../images/bg.jpg) no-repeat #000;
  51. background-size: cover;
  52. /* 行高是字体1.15倍 */
  53. line-height: 1.15;
  54. position: relative;
  55. }
  56. body .page-container {
  57. font-family: Arial, Helvetica, sans-serif;
  58. margin: 0;
  59. padding: 0;
  60. /* 背景图定位 / 背景图尺寸 cover 完全铺满容器 contain 完整显示在容器内 */
  61. background: url(../images/bg.jpg) no-repeat #000;
  62. background-size: cover;
  63. /* 行高是字体1.15倍 */
  64. line-height: 1.15;
  65. position: relative;
  66. }
  67. header {
  68. position: relative;
  69. height: 1rem;
  70. background: url(../images/head_bg.png) no-repeat top center;
  71. background-size: 100% 100%;
  72. min-width: 1024px;
  73. max-width: 1920px;
  74. }
  75. header h1 {
  76. font-size: 0.35rem;
  77. color: #fff;
  78. text-align: center;
  79. line-height: 1rem;
  80. font-weight: normal;
  81. }
  82. header .filterSec {
  83. position: absolute;
  84. top: 0;
  85. right: 0.375rem;
  86. line-height: 0.9375rem;
  87. font-size: 0.25rem;
  88. color: rgba(255, 255, 255, 0.7);
  89. }
  90. .mainbox {
  91. min-width: 1024px;
  92. max-width: 1920px;
  93. padding: 0.225rem 0.225rem 0 0.2625rem;
  94. }
  95. .mainbox .topSection,
  96. .mainbox .bottomSection {
  97. display: flex;
  98. }
  99. .mainbox.eleFire .topSection .column {
  100. flex: 2;
  101. }
  102. .mainbox.eleFire .topSection .column:nth-child(2) {
  103. flex: 5;
  104. margin: 0 0 0 0.275rem;
  105. overflow: hidden;
  106. }
  107. .mainbox .bottomSection .column {
  108. flex: 1;
  109. }
  110. .mainbox .bottomSection .column:nth-child(2) {
  111. flex: 1;
  112. margin: 0 0 0 0.275rem;
  113. overflow: hidden;
  114. }
  115. .panel {
  116. position: relative;
  117. height: 5.9rem;
  118. border: 1px solid rgba(25, 140, 186, 0.5);
  119. background: rgba(8, 26, 50, 0.6);
  120. padding: 0 0.5375rem;
  121. margin-bottom: 0.2rem;
  122. }
  123. .panel::before {
  124. position: absolute;
  125. top: 0;
  126. left: 0;
  127. content: "";
  128. width: 10px;
  129. height: 10px;
  130. border-top: 2px solid #28BEFC;
  131. border-left: 2px solid #28BEFC;
  132. }
  133. .panel::after {
  134. position: absolute;
  135. top: 0;
  136. right: 0;
  137. content: "";
  138. width: 10px;
  139. height: 10px;
  140. border-top: 2px solid #28BEFC;
  141. border-right: 2px solid #28BEFC;
  142. }
  143. .panel .panel-footer {
  144. position: absolute;
  145. left: 0;
  146. bottom: 0;
  147. width: 100%;
  148. }
  149. .panel .panel-footer::before {
  150. position: absolute;
  151. bottom: 0;
  152. left: 0;
  153. content: "";
  154. width: 10px;
  155. height: 10px;
  156. border-bottom: 2px solid #28BEFC;
  157. border-left: 2px solid #28BEFC;
  158. }
  159. .panel .panel-footer::after {
  160. position: absolute;
  161. bottom: 0;
  162. right: 0;
  163. content: "";
  164. width: 10px;
  165. height: 10px;
  166. border-bottom: 2px solid #28BEFC;
  167. border-right: 2px solid #28BEFC;
  168. }
  169. .panel h2 {
  170. height: 0.6rem;
  171. line-height: 0.6rem;
  172. text-align: center;
  173. color: #0096FF;
  174. font-size: 0.25rem;
  175. font-weight: 400;
  176. position: relative;
  177. }
  178. .panel h2 .line {
  179. height: 1px;
  180. background: rgba(25, 140, 186, 0.5);
  181. position: relative;
  182. width: 100%;
  183. margin: 0 auto;
  184. }
  185. .panel h2 .line:before {
  186. content: '';
  187. top: 0.07rem;
  188. left: -0.37rem;
  189. width: 0.375rem;
  190. height: 1px;
  191. border-bottom: 1px solid rgba(25, 140, 186, 0.5);
  192. display: inline-block;
  193. transform: rotate(335deg);
  194. position: absolute;
  195. }
  196. .panel h2 .line:after {
  197. content: '';
  198. top: 0.07rem;
  199. right: -0.35rem;
  200. width: 0.375rem;
  201. height: 1px;
  202. border-bottom: 1px solid rgba(25, 140, 186, 0.5);
  203. display: inline-block;
  204. transform: rotate(25deg);
  205. position: absolute;
  206. }
  207. .panel h2 img {
  208. height: 0.125rem;
  209. vertical-align: middle;
  210. }
  211. .panel h2 span {
  212. margin: 0 0.1875rem;
  213. }
  214. .panel .chart {
  215. height: calc(100% - 0.6rem);
  216. }
  217. .tab-line {
  218. height: 0.6rem;
  219. margin: 0.25rem 0;
  220. display: inline-block;
  221. }
  222. .tab-line a {
  223. font-size: 0.175rem;
  224. color: #0090F5;
  225. padding: 0.125rem 0.45rem;
  226. display: block;
  227. float: left;
  228. border: 1px solid #0096ff;
  229. text-decoration: none;
  230. }
  231. .tab-line a.active {
  232. background: #0096FF;
  233. color: #fff;
  234. }
  235. @media screen and (max-width: 1024px) {
  236. html {
  237. font-size: 42px !important;
  238. }
  239. }
  240. @media screen and (min-width: 1920) {
  241. html {
  242. font-size: 80px !important;
  243. }
  244. }
  245. .line.panel {
  246. text-align: center;
  247. }
  248. .line.panel .chart {
  249. height: 50%;
  250. }
  251. .hotAnalysis.panel .chart,
  252. .data_fluctuation.panel .chart {
  253. height: 62%;
  254. margin-top: 0.5rem;
  255. }
  256. /* 搜索区域样式 */
  257. .filterSec {
  258. position: absolute;
  259. bottom: -0.0625rem;
  260. right: 0;
  261. font-size: 0.175rem;
  262. }
  263. .filterSec select,
  264. .filterSec input {
  265. border: 1px solid #64A7D4;
  266. width: 2.1rem;
  267. height: 0.35rem;
  268. color: #fff;
  269. line-height: 0.35rem;
  270. background: rgba(0, 0, 0, 0);
  271. margin-right: 0.4rem;
  272. font-size: 0.175rem;
  273. }
  274. .filterSec span {
  275. display: inline-block;
  276. margin-right: 0.125rem;
  277. font-size: 0.175rem;
  278. }
  279. a.button {
  280. padding: 0 0.15rem;
  281. height: 0.35rem;
  282. line-height: 0.35rem;
  283. text-align: center;
  284. border: 1px solid #64A7D4;
  285. color: #fff;
  286. display: inline-block;
  287. text-decoration: none;
  288. background: #034854;
  289. cursor: pointer;
  290. font-size: 0.175rem;
  291. }
  292. a.button img {
  293. width: 0.25rem;
  294. margin-top: -2px;
  295. position: relative;
  296. vertical-align: middle;
  297. }
  298. a.button text {
  299. vertical-align: middle;
  300. display: inline-block;
  301. }
  302. .mainbox.water .topSection .column:first-child {
  303. flex: 1;
  304. }
  305. .mainbox.water .topSection .column:nth-child(2) {
  306. flex: 2;
  307. margin: 0 0.275rem;
  308. overflow: hidden;
  309. }
  310. .mainbox.water .topSection .column:last-child {
  311. flex: 1;
  312. }
  313. .water .divergence .chart {
  314. margin-top: 0.5rem;
  315. height: 60%;
  316. }
  317. .water .hiddenCheck .chart {
  318. margin-top: 0.5rem;
  319. height: 60%;
  320. }
  321. .summary {
  322. color: #fff;
  323. font-size: 0.175rem;
  324. text-align: left;
  325. width: 100%;
  326. margin-top: 0.1rem;
  327. height: 0.825rem;
  328. padding: 0.15rem;
  329. background-image: url(../images/summary-bg.png);
  330. background-size: 100% 100%;
  331. background-repeat: no-repeat;
  332. display: flex;
  333. align-items: top;
  334. }
  335. .summary div:first-child {
  336. width: 0.85rem;
  337. }
  338. .summary div:last-child {
  339. width: calc(100% - 0.85rem);
  340. padding-right: 0.2rem;
  341. height: 0.57rem;
  342. overflow: auto;
  343. }
  344. .summary p {
  345. line-height: 1.38;
  346. }
  347. .summary div {
  348. display: inline-block;
  349. }
  350. .bar-3d .chart {
  351. height: 50%;
  352. background: url(../images/3d-bg.png);
  353. background-repeat: no-repeat;
  354. background-position: 50% 80%;
  355. }
  356. .bar-3d ul {
  357. color: #fff;
  358. font-size: 0.2rem;
  359. display: flex;
  360. margin: 0.5625rem 0;
  361. }
  362. .bar-3d ul li {
  363. flex: 1;
  364. text-align: center;
  365. }
  366. .bar-3d ul li .num {
  367. font-size: 0.375rem;
  368. margin-bottom: 0.1rem;
  369. font-family: IMPACT;
  370. }
  371. .bar-3d ul li .num.total {
  372. color: #FF3E3E;
  373. }
  374. .bar-3d ul li .num.unsolve {
  375. color: #FA742B;
  376. }
  377. .bar-3d ul li .num.solved {
  378. color: #1DD9E5;
  379. }
  380. .exportBox {
  381. position: absolute;
  382. left: 0;
  383. right: 0;
  384. bottom: 1rem;
  385. top: 1rem;
  386. font-size: 14px;
  387. width: 100%;
  388. height: 90%;
  389. z-index: -1;
  390. }
  391. .exportBox table,
  392. .exportBox table tr th,
  393. .exportBox table tr td {
  394. border: 1px solid #eee;
  395. margin: 0 auto;
  396. }
  397. .exportBox td,
  398. .exportBox th {
  399. padding: 3px 0;
  400. }
  401. .exportBox .exportContainer {
  402. z-index: 19000;
  403. width: 650px;
  404. margin: 0 auto;
  405. box-shadow: #888888 0px 0px 4px;
  406. display: block;
  407. background: #1f2833;
  408. color: #fff;
  409. height: calc(100% - 1rem);
  410. overflow: auto;
  411. padding: 15px;
  412. }
  413. .exportBox h3.title {
  414. text-align: center;
  415. background: #1f2833;
  416. font-size: 16px;
  417. }
  418. .exportBox section {
  419. padding-bottom: 30px;
  420. }
  421. .exportBox section .table-sub {
  422. margin-top: 10px;
  423. font-size: 13px;
  424. }
  425. .exportBox section .innerChart {
  426. width: 100%;
  427. height: 220px;
  428. padding: 10px 0;
  429. }
  430. .exportBox section .summary2 {
  431. display: flex;
  432. margin: 0 10px;
  433. line-height: 1.5;
  434. }
  435. .exportBox section .summary2 > div:first-child {
  436. width: 60px;
  437. }
  438. .exportBox section .summary2 > div:last-child {
  439. width: calc(100% - 30px);
  440. }
  441. .exportBox section .big-tit {
  442. padding: 10px 0;
  443. background: #1f2833;
  444. }
  445. .exportBox .section1 {
  446. background: #1f2833;
  447. }
  448. .layui-layer-title {
  449. background: #081A32 !important;
  450. color: #fff !important;
  451. border-bottom: 1px solid #1E9FFF !important;
  452. }
  453. .layui-layer {
  454. background: #072442 !important;
  455. color: #fff;
  456. }
  457. .layui-layer-ico {
  458. border-radius: 50%;
  459. }
  460. .layui-layer-btn .layui-layer-btn0 {
  461. font-size: 0.3rem;
  462. }