app.css 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. @charset "utf-8";
  2. /* global */
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. }
  8. html,
  9. body {
  10. width: 100%;
  11. height: 100%;
  12. /* min-width: 1920px; */
  13. /* min-height: 900px; */
  14. /* overflow: hidden; */
  15. }
  16. body {
  17. position: relative;
  18. font-family: "Microsoft Yahei", Arial, sans-serif;
  19. background-repeat: no-repeat;
  20. background-position: 0 0 / 100% 100% no-repeat;
  21. background-color: rgba(15,20,39,1.00);
  22. }
  23. /* layout */
  24. .goHome {
  25. display: block;
  26. width: 50px;
  27. height: 50px;
  28. position: absolute;
  29. top: 40px;
  30. left: 1460px;
  31. background: url(../img/icon-home.png) no-repeat 0 0 / 100% 100%;
  32. cursor: pointer;
  33. z-index: 99999;
  34. }
  35. .goHome:hover {
  36. background-image: url(../img/icon-home-hover.png);
  37. }
  38. #header {
  39. position: relative;
  40. height: 50px;
  41. background: url("../img/header.png") 0 0 / 100% 100% no-repeat;
  42. overflow: hidden;
  43. z-index: 999999;
  44. }
  45. .header-title {
  46. line-height: 50px;
  47. text-align: center;
  48. font-size: 30px;
  49. font-weight: 400;
  50. color: #fff;
  51. }
  52. .header-info {
  53. position: absolute;
  54. top: 32px;
  55. font-size: 18px;
  56. color: #73aae5;
  57. }
  58. .header-info-l {
  59. left: 20px;
  60. }
  61. .header-info-r {
  62. right: 20px;
  63. }
  64. /* #footer {
  65. position: absolute;
  66. bottom: 0;
  67. left: 0;
  68. right: 0;
  69. height: 28px;
  70. background: url("../img/footer.png") 0 0 / 100% 100% no-repeat;
  71. } */
  72. #container {
  73. position: absolute;
  74. top: 15px;
  75. bottom: 0px;
  76. left: 0;
  77. right: 0;
  78. }
  79. #flexCon {
  80. height: 100%;
  81. display: -webkit-flex;
  82. display: -ms-flexbox;
  83. display: flex;
  84. }
  85. .flex-left {
  86. -webkit-flex: 0 0 20%;
  87. -ms-flex: 0 0 20%;
  88. flex: 0 0 20%;
  89. display: -webkit-flex;
  90. display: -ms-flexbox;
  91. display: flex;
  92. -webkit-flex-direction: column;
  93. -ms-flex-direction: column;
  94. flex-direction: column;
  95. }
  96. .flex-middle {
  97. -webkit-flex: 0 0 60%;
  98. -ms-flex: 0 0 60%;
  99. flex: 0 0 60%;
  100. display: -webkit-flex;
  101. display: -ms-flexbox;
  102. display: flex;
  103. -webkit-flex-direction: column;
  104. -ms-flex-direction: column;
  105. flex-direction: column;
  106. }
  107. .flex-right {
  108. -webkit-flex: 0 0 20%;
  109. -ms-flex: 0 0 20%;
  110. flex: 0 0 20%;
  111. display: -webkit-flex;
  112. display: -ms-flexbox;
  113. display: flex;
  114. -webkit-flex-direction: column;
  115. -ms-flex-direction: column;
  116. flex-direction: column;
  117. }
  118. .flex-column {
  119. -webkit-flex: 0 0 33.3333%;
  120. -ms-flex: 0 0 33.3333%;
  121. flex: 0 0 33.3333%;
  122. display: -webkit-flex;
  123. display: -ms-flexbox;
  124. display: flex;
  125. }
  126. .flex-cell {
  127. -webkit-flex: 1;
  128. -ms-flex: 1;
  129. flex: 1;
  130. padding: 5px;
  131. }
  132. .flex-cell-middle {
  133. -webkit-flex: 1;
  134. -ms-flex: 1;
  135. flex: 1;
  136. }
  137. .flex-cell-1 {
  138. -webkit-flex: 1;
  139. -ms-flex: 1;
  140. flex: 1;
  141. }
  142. .flex-cell-2 {
  143. -webkit-flex: 2;
  144. -ms-flex: 2;
  145. flex: 2;
  146. }
  147. .flex-cell-3 {
  148. -webkit-flex: 3;
  149. -ms-flex: 3;
  150. flex: 3;
  151. }
  152. .flex-cell-4 {
  153. -webkit-flex: 4;
  154. -ms-flex: 4;
  155. flex: 4;
  156. }
  157. .flex-cell-5 {
  158. -webkit-flex: 5;
  159. -ms-flex: 5;
  160. flex: 5;
  161. }
  162. .chart-wrapper {
  163. position: relative;
  164. height: 100%;
  165. background: url("../img/chart-frame.png") 0 0 / 100% 100% no-repeat;
  166. }
  167. .chart-map {
  168. position: relative;
  169. height: 100%;
  170. background: none;
  171. border: 3px solid #1b5f82;
  172. }
  173. .map-tools-box {
  174. width: auto;
  175. height: auto;
  176. padding: 15px 10px;
  177. position: absolute;
  178. bottom: 5px;
  179. right: 5px;
  180. border: 1px solid #73aae5;
  181. border-radius: 3px;
  182. }
  183. .map-tools-box .map-tool {
  184. width: auto;
  185. height: 30px;
  186. line-height: 30px;
  187. padding-left: 40px;
  188. margin-bottom: 10px;
  189. color: #fff;
  190. font-size: 14px;
  191. text-align: left;
  192. /* opacity: .8; */
  193. position: relative;
  194. cursor: pointer;
  195. }
  196. .map-tools-box .map-tool:last-child {
  197. margin: 0;
  198. }
  199. .map-tools-box .map-tool:hover {
  200. color: #ffde00;
  201. }
  202. .map-tools-box .map-tool.map-one::after {
  203. content: "";
  204. background: url(../img/icon-map-one.png) no-repeat 2px center / auto 100%;
  205. opacity: 0.8;
  206. top: 0;
  207. left: 0;
  208. bottom: 0;
  209. right: 0;
  210. position: absolute;
  211. z-index: -1;
  212. }
  213. .map-tools-box .map-tool.map-one:hover::after {
  214. opacity: 1;
  215. }
  216. .map-tools-box .map-tool.map-3d::after {
  217. content: "";
  218. background: url(../img/icon-map-3d.png) no-repeat 2px center / auto 100%;
  219. opacity: 0.8;
  220. top: 0;
  221. left: 0;
  222. bottom: 0;
  223. right: 0;
  224. position: absolute;
  225. z-index: -1;
  226. }
  227. .map-tools-box .map-tool.map-3d:hover::after {
  228. opacity: 1;
  229. }
  230. .chart-title {
  231. height: 32px;
  232. font-size: 22px;
  233. font-weight: normal;
  234. color: #fff;
  235. text-align: center;
  236. }
  237. .chart-div {
  238. position: absolute;
  239. top: 32px;
  240. bottom: 0;
  241. left: 0;
  242. right: 0;
  243. }
  244. .block-text {
  245. table-layout: fixed;
  246. position: absolute;
  247. width: 95%;
  248. height: 30%;
  249. bottom: 0;
  250. margin-left: 2.5%;
  251. border-collapse: collapse;
  252. text-align: center;
  253. }
  254. .block-text-top {
  255. top: 32px;
  256. bottom: auto;
  257. }
  258. /* .block-text td {
  259. padding-left: 15px;
  260. } */
  261. .block-text p {
  262. margin: 5px 0;
  263. line-height: 1;
  264. font-size: 12px;
  265. color: #fff;
  266. }
  267. .block-text p span {
  268. font-size: 32px;
  269. font-weight: bold;
  270. color: #00eeef;
  271. }
  272. #team-box p span {
  273. font-size: 28px;
  274. }
  275. #block2 {
  276. height: 65%;
  277. }
  278. #block7 {
  279. height: 65%;
  280. }
  281. /* media query */
  282. @media (max-width:1900px) {
  283. #header {
  284. height: 48px;
  285. }
  286. .header-title {
  287. line-height: 42px;
  288. font-size: 24px;
  289. }
  290. .header-info {
  291. top: 17px;
  292. font-size: 14px;
  293. }
  294. .header-info-l {
  295. left: 15px;
  296. }
  297. .header-info-r {
  298. right: 15px;
  299. }
  300. .flex-cell {
  301. padding: 10px;
  302. }
  303. .chart-title {
  304. height: 24px;
  305. font-size: 18px;
  306. }
  307. .chart-div {
  308. top: 24px;
  309. }
  310. .data-t p span {
  311. font-size: 24px;
  312. }
  313. #footer {
  314. height: 16px;
  315. }
  316. #container {
  317. top: 48px;
  318. bottom: 12px;
  319. }
  320. }
  321. /* chart-loader */
  322. .chart-loader {
  323. position: absolute;
  324. top: 0;
  325. left: 0;
  326. z-index: 99;
  327. width: 100%;
  328. height: 100%;
  329. background: rgba(255, 255, 255, 0);
  330. transition: all .8s;
  331. }
  332. .chart-loader .loader {
  333. position: absolute;
  334. left: 50%;
  335. top: 50%;
  336. width: 60px;
  337. height: 60px;
  338. margin: -30px 0 0 -30px;
  339. border: 3px solid transparent;
  340. border-top-color: #3498db;
  341. border-radius: 50% !important;
  342. -webkit-animation: spin 2s linear infinite;
  343. animation: spin 2s linear infinite;
  344. }
  345. .chart-loader .loader:before {
  346. content: "";
  347. position: absolute;
  348. top: 3px;
  349. left: 5px;
  350. right: 5px;
  351. bottom: 5px;
  352. border: 3px solid transparent;
  353. border-top-color: #e74c3c;
  354. border-radius: 50% !important;
  355. -webkit-animation: spin 3s linear infinite;
  356. animation: spin 3s linear infinite;
  357. }
  358. .chart-loader .loader:after {
  359. content: "";
  360. position: absolute;
  361. top: 9px;
  362. left: 10px;
  363. right: 10px;
  364. bottom: 10px;
  365. border: 3px solid transparent;
  366. border-top-color: #f9c922;
  367. border-radius: 50% !important;
  368. -webkit-animation: spin 1.5s linear infinite;
  369. animation: spin 1.5s linear infinite;
  370. }
  371. .chart-done .chart-loader {
  372. display: none;
  373. }
  374. @-webkit-keyframes spin {
  375. 0% {
  376. -webkit-transform: rotate(0deg);
  377. -ms-transform: rotate(0deg);
  378. transform: rotate(0deg)
  379. }
  380. 100% {
  381. -webkit-transform: rotate(360deg);
  382. -ms-transform: rotate(360deg);
  383. transform: rotate(360deg)
  384. }
  385. }
  386. @keyframes spin {
  387. 0% {
  388. -webkit-transform: rotate(0deg);
  389. -ms-transform: rotate(0deg);
  390. transform: rotate(0deg)
  391. }
  392. 100% {
  393. -webkit-transform: rotate(360deg);
  394. -ms-transform: rotate(360deg);
  395. transform: rotate(360deg)
  396. }
  397. }