style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. * {
  2. padding: 0;
  3. margin: 0
  4. }
  5. html,
  6. body {
  7. width: 100%;
  8. height: 100%;
  9. overflow: hidden;
  10. font: 0.5vw Arial, Microsoft YaHei, Helvetica Neue, Helvetica, PingFang SC, Tahoma, sans-serif;
  11. }
  12. .ui-absolute {
  13. position: absolute;
  14. top: 0;
  15. bottom: 0;
  16. left: 0;
  17. right: 0;
  18. }
  19. .screen-wrap {
  20. background-color: #fff;
  21. position: relative;
  22. }
  23. .screen-bg {
  24. height: 100%;
  25. }
  26. .screen-bg img {
  27. width: 100%;
  28. height: 100%;
  29. position: fixed;
  30. top: 0;
  31. bottom: 0;
  32. left: 0;
  33. right: 0;
  34. z-index: -1;
  35. }
  36. .screen-header {
  37. width: 100%;
  38. height: 9%;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. }
  43. .screen-header img {
  44. width: calc(100% - 1%);
  45. height: 12%;
  46. position: absolute;
  47. top: 0.8%;
  48. bottom: 0;
  49. left: 0.5%;
  50. right: 0;
  51. }
  52. .screen-header .title {
  53. font-size: 2.8rem;
  54. letter-spacing: 2px;
  55. font-family: '黑体';
  56. color: #fff;
  57. }
  58. .screen-body {
  59. margin: 1% 1.8% 1% 1.5%;
  60. height: calc(100% - 11%);
  61. }
  62. .grid-demo-bg {
  63. border: 2px solid rgba(10, 82, 172, 0.30);
  64. box-shadow: inset 0 1px 16px 0 rgba(11, 156, 223, 0.30);
  65. border-radius: 4px 0 0 4px;
  66. margin-top: 10px;
  67. width: 100%;
  68. height: 100%;
  69. position: relative;
  70. }
  71. .grid-demo-bg .bg-left-top {
  72. border-radius: 4px;
  73. width: 22px;
  74. height: 19px;
  75. background: url("../img/bg-left-top.png") no-repeat;
  76. position: absolute;
  77. top: -2px;
  78. left: -2px;
  79. }
  80. .grid-demo-bg .bg-right-top {
  81. border-radius: 4px;
  82. width: 23px;
  83. height: 20px;
  84. background: url("../img/bg-right-top.png") no-repeat;
  85. position: absolute;
  86. top: -2px;
  87. right: -2px;
  88. }
  89. .grid-demo-bg .bg-left-bottom {
  90. border-radius: 4px;
  91. width: 23px;
  92. height: 20px;
  93. background: url("../img/bg-left-bottom.png") no-repeat;
  94. position: absolute;
  95. left: -2px;
  96. bottom: -2px;
  97. }
  98. .grid-demo-bg .bg-right-bottom {
  99. border-radius: 4px;
  100. width: 24px;
  101. height: 20px;
  102. background: url("../img/bg-right-bottom.png") no-repeat;
  103. position: absolute;
  104. bottom: -2px;
  105. right: -2px;
  106. }
  107. .left-top {
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. }
  112. .left-top li {
  113. font-family: "Microsoft YaHei";
  114. position: relative;
  115. color: #fff;
  116. text-align: center;
  117. letter-spacing: 1px;
  118. flex: 1
  119. }
  120. .left-top li:last-child:after {
  121. content: "";
  122. position: absolute;
  123. right: 0;
  124. top: 2px;
  125. background: none;
  126. height: 100%;
  127. width: 2px;
  128. }
  129. .left-top li:after {
  130. content: "";
  131. position: absolute;
  132. right: 0;
  133. top: 2px;
  134. background: url("../img/line.png") center center;
  135. height: 100%;
  136. width: 2px;
  137. }
  138. .left-top li .name {
  139. font-size: 1.7rem;
  140. color: #c9e8f9;
  141. }
  142. .left-top li .number {
  143. position: relative;
  144. font-family: '黑体';
  145. margin-top: 8px;
  146. color: #c9e8f9;
  147. padding-left: 5%;
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. }
  152. .left-top li .number .number-list {
  153. display: flex;
  154. }
  155. .left-top li .number .number-list li {
  156. background-color: #fff;
  157. padding: 3px 5px;
  158. margin: 0 1px;
  159. border-radius: 2px;
  160. background: linear-gradient(0deg, rgba(10, 238, 245, 0.3) 0%, rgba(6, 147, 255, 0.3) 100%);
  161. font-size: 2.4rem;
  162. }
  163. .left-top li .unit {
  164. margin-left: 2%;
  165. font-size: 1.5rem;
  166. color: #c9e8f9;
  167. }
  168. .left-body {
  169. display: flex;
  170. height: 30%;
  171. align-items: center;
  172. }
  173. .left-body li {
  174. width: 110px;
  175. color: #c9e8f9;
  176. text-align: center;
  177. display: flex;
  178. align-items: center;
  179. justify-content: center;
  180. }
  181. .left-body li.active {
  182. background: url("../img/left-body-active.png") no-repeat center center;
  183. background-size: contain;
  184. width: 110px;
  185. height: 88px;
  186. }
  187. .left-body .number {
  188. font-size: 2.0rem;
  189. font-family: '黑体';
  190. }
  191. .left-body .number .arrow {
  192. width: 12px;
  193. height: 19px;
  194. display: inline-block;
  195. vertical-align: text-bottom;
  196. margin-left: 5px;
  197. }
  198. .left-body .number .rise-arrow {
  199. background: url("../img/rise-arrow.png") no-repeat center center;
  200. background-size: contain;
  201. }
  202. .left-body .number .fall-arrow {
  203. background: url("../img/fall-arrow.png") no-repeat center center;
  204. background-size: contain;
  205. }
  206. .left-body .name {
  207. margin-top: 5%;
  208. font-size: 1.6rem;
  209. }
  210. .middle-bot {
  211. display: flex;
  212. align-items: center;
  213. top: auto;
  214. height: 22%;
  215. bottom: 0;
  216. }
  217. .left-bot {}
  218. .table-body .arrow {
  219. width: 12px;
  220. height: 19px;
  221. display: inline-block;
  222. vertical-align: text-bottom;
  223. margin-left: 5%;
  224. }
  225. .table-body .rise-number .num {
  226. background-image: linear-gradient(0deg, #840d8e 0%, #e21166 100%);
  227. /*background-image: linear-gradient(0deg, #0aeef5 0%, #0693ff 100%);*/
  228. -webkit-background-clip: text;
  229. color: transparent;
  230. }
  231. .table-body .number .num {
  232. width: 65%;
  233. display: inline-block;
  234. font-weight: normal;
  235. font-family: '黑体';
  236. font-weight: bold;
  237. font-size: 1.5rem;
  238. }
  239. .table-body .rise-number .arrow {
  240. background: url("../img/rise-arrow.png") no-repeat center center;
  241. }
  242. .table-body .fall-number .num {
  243. background-image: linear-gradient(0deg, #0aeef5 0%, #0693ff 100%);
  244. -webkit-background-clip: text;
  245. color: transparent;
  246. }
  247. .table-body .fall-number .arrow {
  248. background: url("../img/fall-arrow.png") no-repeat center center;
  249. }
  250. .table-body .table-row .index b {
  251. color: #c9e8f9;
  252. font-weight: normal;
  253. border-radius: 20px;
  254. width: 2.6rem;
  255. height: 1.5rem;
  256. line-height: 1.5rem;
  257. margin: 0 auto;
  258. color: #fff;
  259. display: block;
  260. }
  261. .table-body .table-row.one .index b {
  262. background-image: linear-gradient(0deg, #840d8e 30%, #e21166 100%);
  263. border: 1px solid #e21166;
  264. }
  265. .table-body .table-row.two .index b {
  266. background-image: linear-gradient(0deg, #0aeef5 0, #0693ff 60%);
  267. border: 1px solid #0aeef5;
  268. }
  269. .table-body .table-row.three .index b {
  270. background-image: linear-gradient(0deg, #4a98ff 0, #0a56bb 100%);
  271. border: 1px solid #4a98ff;
  272. }
  273. .left-bot .table-head {
  274. display: flex;
  275. align-items: center;
  276. text-align: center;
  277. color: #c9e8f9;
  278. font-size: 1.6rem;
  279. margin: 2% 3% 0;
  280. position: absolute;
  281. left: 0;
  282. top: 0;
  283. right: 0;
  284. height: 15%;
  285. }
  286. .left-bot .table-head li {
  287. flex: 1;
  288. }
  289. .left-bot .table-head li:nth-child(2) {
  290. flex: 2.5;
  291. }
  292. .table-body {
  293. top: 18%;
  294. overflow: hidden;
  295. }
  296. .table-body ul li {
  297. display: flex;
  298. align-items: center;
  299. text-align: center;
  300. color: #c9e8f9;
  301. border-radius: 5px;
  302. font-size: 1.4rem;
  303. height: 40px;
  304. margin: 0 3%;
  305. }
  306. .table-body ul li span {
  307. flex: 1;
  308. text-overflow: ellipsis;
  309. white-space: nowrap;
  310. overflow: hidden;
  311. }
  312. .table-body ul li span:nth-child(2) {
  313. flex: 2.5;
  314. text-overflow: ellipsis;
  315. white-space: nowrap;
  316. overflow: hidden;
  317. }
  318. .table-body ul li:nth-child(even) {
  319. background: #0b1838;
  320. }
  321. .productBox {
  322. margin: 0 auto;
  323. overflow: hidden;
  324. padding-left: 1.5%;
  325. }
  326. .productBox ul {
  327. white-space: nowrap;
  328. width: 10000000px;
  329. }
  330. .productBox ul li {
  331. text-align: center;
  332. }
  333. .middle-body .mapIndexBox {
  334. position: relative;
  335. width: 475px;
  336. border: 1px solid rgba(6, 147, 255, 0.3);
  337. border-radius: 20px;
  338. /*border-image: linear-gradient(to top, rgba(10,238,145,0.3), rgba(6,147,255,0.3));
  339. border-image-slice: 1;*/
  340. margin: 0 auto;
  341. overflow: hidden;
  342. }
  343. .middle-body ul {
  344. white-space: nowrap;
  345. height: 3rem;
  346. line-height: 3rem;
  347. }
  348. .middle-body li {
  349. width: 95px;
  350. display: inline-block;
  351. text-align: center;
  352. }
  353. .middle-body li .name {
  354. /* color: #c9e8f9; */
  355. color: #fff;
  356. font-size: 1.7rem;
  357. }
  358. .middle-body li.active .name {
  359. background-image: linear-gradient(0deg, #0aeef5 0%, #0693ff 60%);
  360. border-radius: 20px;
  361. color: #fff;
  362. }
  363. .middle-body .bar {
  364. width: 95px;
  365. background-image: linear-gradient(0deg, #0aeef5 0%, #0693ff 60%);
  366. border-radius: 20px;
  367. color: #fff;
  368. height: 36px;
  369. position: absolute;
  370. top: 0;
  371. left: 50%;
  372. margin-left: -44px;
  373. z-index: -1;
  374. }
  375. .middle-body .btn {
  376. position: absolute;
  377. width: 6px;
  378. height: 10px;
  379. display: inline-block;
  380. vertical-align: text-bottom;
  381. }
  382. .middle-body .left-btn {
  383. background: url("../img/middle-body-left-arrow.png") no-repeat center center;
  384. left: -6%;
  385. }
  386. .middle-body .right-btn {
  387. background: url("../img/middle-body-right-arrow.png") no-repeat center center;
  388. right: -6%;
  389. }
  390. .middle-top:before {
  391. content: '';
  392. position: absolute;
  393. right: 0;
  394. left: 0;
  395. top: 24px;
  396. width: 100%;
  397. background: url("../img/light.png") center center;
  398. height: 2px;
  399. }
  400. .middle-top ul {
  401. position: relative;
  402. width: 26%;
  403. display: flex;
  404. align-items: center;
  405. text-align: center;
  406. justify-content: center;
  407. border: 1px solid rgba(6, 147, 255, 0.3);
  408. background-color: #0e1839;
  409. border-radius: 60px;
  410. margin: 0 auto;
  411. }
  412. .middle-top li {
  413. margin: 0.25rem;
  414. flex: 1;
  415. }
  416. .middle-top li .name {
  417. color: #c9e8f9;
  418. font-size: 2rem;
  419. }
  420. .middle-top li.active .name {
  421. background-image: linear-gradient(0deg, #0aeef5 0%, #0693ff 60%);
  422. border-radius: 60px;
  423. color: #fff;
  424. padding: 10% 0;
  425. }
  426. .middle-panel {
  427. position: relative;
  428. width: 100%;
  429. height: 100%;
  430. }
  431. .middle-panel ul {
  432. display: flex;
  433. box-shadow: inset 0 0 10px 0 rgba(7, 191, 250, 0.50);
  434. background-color: #121d44;
  435. border-radius: 5px;
  436. width: 36%;
  437. height: 10%;
  438. margin: 0 auto;
  439. text-align: center;
  440. align-items: center;
  441. justify-content: center;
  442. }
  443. .middle-panel ul li {
  444. flex: 1;
  445. position: relative;
  446. }
  447. .middle-panel ul li .title {
  448. font-size: 1.8rem;
  449. text-align: center;
  450. background: linear-gradient(0deg, #0AEEF5 0%, #0693FF 100%);
  451. -webkit-background-clip: text;
  452. color: transparent;
  453. }
  454. .middle-panel ul li .num {
  455. display: inline-block;
  456. position: relative;
  457. margin-top: 2%;
  458. font-size: 2.8rem;
  459. font-weight: 600;
  460. font-family: '黑体';
  461. text-align: center;
  462. background: linear-gradient(0deg, #0AEEF5 0%, #0693FF 100%);
  463. -webkit-background-clip: text;
  464. color: transparent;
  465. }
  466. .middle-panel ul li:last-child:after {
  467. content: "";
  468. position: absolute;
  469. right: 0;
  470. top: 2px;
  471. background: none;
  472. height: 100%;
  473. width: 2px;
  474. }
  475. .middle-panel ul li:after {
  476. content: "";
  477. position: absolute;
  478. right: 0;
  479. top: 2px;
  480. background: url("../img/line.png") center center;
  481. height: 100%;
  482. width: 2px;
  483. }
  484. .middle-panel:before {
  485. content: '';
  486. position: absolute;
  487. right: 0;
  488. left: 0;
  489. top: 14px;
  490. width: 100%;
  491. background: url("../img/light.png") center center;
  492. height: 2px;
  493. }
  494. .screenfull-svg {
  495. display: inline-block;
  496. fill: #7890ab;
  497. height: 20px;
  498. width: 20px;
  499. /* fill: #103d7e; */
  500. }
  501. #full-screen {
  502. cursor: pointer;
  503. height: 20px;
  504. width: 20px;
  505. position: absolute;
  506. right: 1.3%;
  507. top: 2.5%;
  508. }
  509. #full-screen .screenfull-svg {
  510. display: none;
  511. }
  512. #full-screen:hover .screenfull-svg {
  513. display: block;
  514. }
  515. :focus {
  516. outline: none
  517. }
  518. @media screen and (max-width: 990px) {
  519. html,
  520. body {
  521. width: 100%;
  522. height: 100%;
  523. overflow: hidden;
  524. font: 0.85vw Arial, Microsoft YaHei, Helvetica Neue, Helvetica, PingFang SC, Tahoma, sans-serif;
  525. overflow-y: auto;
  526. }
  527. }
  528. @media screen and (max-width: 360px) {
  529. html,
  530. body {
  531. width: 100%;
  532. height: 100%;
  533. overflow: hidden;
  534. font: 2vw Arial, Microsoft YaHei, Helvetica Neue, Helvetica, PingFang SC, Tahoma, sans-serif;
  535. overflow-y: auto;
  536. }
  537. }