index.css 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  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: 6rem;
  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. height: 62%;
  253. margin-top: 0.5rem;
  254. }
  255. /* 搜索区域样式 */
  256. .filterSec {
  257. position: absolute;
  258. bottom: -0.0625rem;
  259. right: 0;
  260. font-size: 0.175rem;
  261. }
  262. .filterSec select,
  263. .filterSec input {
  264. border: 1px solid #64A7D4;
  265. width: 1.8125rem;
  266. height: 0.35rem;
  267. color: #fff;
  268. line-height: 0.35rem;
  269. background: rgba(0, 0, 0, 0);
  270. margin-right: 0.4rem;
  271. font-size: 0.175rem;
  272. }
  273. .filterSec span {
  274. display: inline-block;
  275. margin-right: 0.125rem;
  276. font-size: 0.175rem;
  277. }
  278. a.button {
  279. padding: 0 0.15rem;
  280. height: 0.35rem;
  281. line-height: 0.35rem;
  282. text-align: center;
  283. border: 1px solid #64A7D4;
  284. color: #fff;
  285. display: inline-block;
  286. text-decoration: none;
  287. background: #034854;
  288. cursor: pointer;
  289. font-size: 0.175rem;
  290. }
  291. a.button img {
  292. width: 0.25rem;
  293. margin-top: -2px;
  294. position: relative;
  295. vertical-align: middle;
  296. }
  297. a.button text {
  298. vertical-align: middle;
  299. display: inline-block;
  300. }
  301. .mainbox.water .topSection .column:first-child {
  302. flex: 1;
  303. }
  304. .mainbox.water .topSection .column:nth-child(2) {
  305. flex: 2;
  306. margin: 0 0.275rem;
  307. overflow: hidden;
  308. }
  309. .mainbox.water .topSection .column:last-child {
  310. flex: 1;
  311. }
  312. .water .divergence .chart {
  313. margin-top: 0.5rem;
  314. height: 60%;
  315. }
  316. .water .hiddenCheck .chart {
  317. margin-top: 0.5rem;
  318. height: 62%;
  319. }
  320. .summary {
  321. color: #fff;
  322. font-size: 0.175rem;
  323. text-align: left;
  324. width: 100%;
  325. margin-top: 0.1rem;
  326. height: 0.825rem;
  327. padding: 0.15rem;
  328. background-image: url(../images/summary-bg.png);
  329. background-size: 100% 100%;
  330. background-repeat: no-repeat;
  331. display: flex;
  332. align-items: top;
  333. }
  334. .summary div:first-child {
  335. width: 0.85rem;
  336. }
  337. .summary div:last-child {
  338. width: calc(100% - 0.85rem);
  339. padding-right: 0.2rem;
  340. height: 0.5rem;
  341. overflow: auto;
  342. }
  343. .summary p {
  344. line-height: 1.3;
  345. }
  346. .summary div {
  347. display: inline-block;
  348. }
  349. .bar-3d .chart {
  350. height: 50%;
  351. background: url(../images/3d-bg.png);
  352. background-repeat: no-repeat;
  353. background-position: 50% 80%;
  354. }
  355. .bar-3d ul {
  356. color: #fff;
  357. font-size: 0.2rem;
  358. display: flex;
  359. margin: 0.5625rem 0;
  360. }
  361. .bar-3d ul li {
  362. flex: 1;
  363. text-align: center;
  364. }
  365. .bar-3d ul li .num {
  366. font-size: 0.375rem;
  367. margin-bottom: 0.1rem;
  368. font-family: IMPACT;
  369. }
  370. .bar-3d ul li .num.total {
  371. color: #FF3E3E;
  372. }
  373. .bar-3d ul li .num.unsolve {
  374. color: #FA742B;
  375. }
  376. .bar-3d ul li .num.solved {
  377. color: #1DD9E5;
  378. }
  379. .exportBox {
  380. position: absolute;
  381. left: 0;
  382. right: 0;
  383. bottom: 1rem;
  384. top: 1rem;
  385. font-size: 14px;
  386. width: 100%;
  387. height: 90%;
  388. z-index: -1;
  389. }
  390. .exportBox table,
  391. .exportBox table tr th,
  392. .exportBox table tr td {
  393. border: 1px solid #eee;
  394. margin: 0 auto;
  395. }
  396. .exportBox td,
  397. .exportBox th {
  398. padding: 3px 0;
  399. }
  400. .exportBox .exportContainer {
  401. z-index: 19000;
  402. width: 650px;
  403. margin: 0 auto;
  404. box-shadow: #888888 0px 0px 4px;
  405. display: block;
  406. background: #1f2833;
  407. color: #fff;
  408. height: calc(100% - 1rem);
  409. overflow: auto;
  410. padding: 15px;
  411. }
  412. .exportBox h3.title {
  413. text-align: center;
  414. background: #1f2833;
  415. font-size: 16px;
  416. }
  417. .exportBox section {
  418. padding-bottom: 30px;
  419. }
  420. .exportBox section .table-sub {
  421. margin-top: 10px;
  422. font-size: 13px;
  423. }
  424. .exportBox section .innerChart {
  425. width: 100%;
  426. height: 220px;
  427. padding: 10px 0;
  428. }
  429. .exportBox section .summary2 {
  430. display: flex;
  431. margin: 0 10px;
  432. line-height: 1.5;
  433. }
  434. .exportBox section .summary2 > div:first-child {
  435. width: 60px;
  436. }
  437. .exportBox section .summary2 > div:last-child {
  438. width: calc(100% - 30px);
  439. }
  440. .exportBox section .big-tit {
  441. padding: 10px 0;
  442. background: #1f2833;
  443. }
  444. .exportBox .section1 {
  445. background: #1f2833;
  446. }