newIndex.css 20 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195
  1. html,
  2. body {
  3. width: 7168px !important;
  4. min-height: 2576px;
  5. height: 100%;
  6. font-size: 20px;
  7. color: #fff;
  8. font-family: 'Microsoft YaHei';
  9. background-image: url("../images/indexBg.png");
  10. background-repeat: no-repeat;
  11. background-size: 100% 100%;
  12. /* overflow-y: hidden; */
  13. }
  14. :root {
  15. --bg: #dcf0fc0c;
  16. }
  17. /* 强制去掉滚动条 */
  18. /* html {
  19. overflow-x: hidden !important;
  20. } */
  21. * {
  22. -webkit-user-select: none;
  23. -moz-user-select: none;
  24. -ms-user-select: none;
  25. user-select: none;
  26. }
  27. img *,
  28. *,
  29. *:before,
  30. *:after {
  31. padding: 0;
  32. margin: 0;
  33. box-sizing: border-box;
  34. }
  35. a {
  36. text-decoration: none;
  37. cursor: pointer;
  38. }
  39. [v-cloak] {
  40. display: none;
  41. }
  42. .app_box {
  43. width: 100%;
  44. height: 100%;
  45. }
  46. .box_item_title {
  47. width: 100%;
  48. height: 145px;
  49. background: url("../images/indexittle@2x.png") no-repeat;
  50. background-size: 100% 100%;
  51. display: flex;
  52. justify-content: center;
  53. align-items: center;
  54. }
  55. .box_item_title span {
  56. font-size: 72px;
  57. font-weight: bold;
  58. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  59. -webkit-background-clip: text;
  60. -webkit-text-fill-color: transparent;
  61. }
  62. .box_item_main {
  63. width: 100%;
  64. height: calc(100% - 145px);
  65. display: flex;
  66. justify-content: space-between;
  67. align-items: center;
  68. padding: 30px 50px;
  69. box-sizing: border-box;
  70. }
  71. .box_left,
  72. .box_right {
  73. width: calc(40% - 30px);
  74. height: 100%;
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: space-between;
  78. align-items: center;
  79. }
  80. .box_main {
  81. width: 20%;
  82. height: 100%;
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: space-between;
  86. align-items: center;
  87. }
  88. .left_item {
  89. width: 100%;
  90. height: calc(25% - 15px);
  91. background: url("../images/lb-back.png") no-repeat;
  92. background-size: 100% 100%;
  93. padding: 10px 40px 30px;
  94. box-sizing: border-box;
  95. }
  96. .main_item_one {
  97. width: 100%;
  98. height: calc(65% - 10px);
  99. /* overflow: hidden; */
  100. position: relative;
  101. }
  102. .main_item_one img {
  103. width: 250%;
  104. height: 100%;
  105. position: absolute;
  106. bottom: -10%;
  107. left: -72%;
  108. z-index: 0;
  109. }
  110. .svg_box {
  111. width: 100%;
  112. height: 100%;
  113. position: absolute;
  114. left: 0;
  115. top: 0;
  116. transform-origin: center bottom;
  117. transform-style: preserve-3d;
  118. }
  119. .svg_box_item {
  120. width: 700px;
  121. height: 700px;
  122. transform-origin: center top;
  123. transform: rotateX(70deg) scale(1.95);
  124. text-align: center;
  125. position: absolute;
  126. bottom: -337px;
  127. left: 360px;
  128. }
  129. .main_item {
  130. width: 100%;
  131. height: calc(20% - 10px);
  132. background: url("../images/lb-back.png") no-repeat;
  133. background-size: 100% 100%;
  134. padding: 30px;
  135. box-sizing: border-box;
  136. z-index: 999;
  137. }
  138. .title {
  139. width: 200px;
  140. height: 65px;
  141. font-size: 35px;
  142. font-weight: bolder;
  143. text-align: center;
  144. /* line-height: 57px; */
  145. box-sizing: border-box;
  146. border-radius: 10px;
  147. margin-bottom: 10px;
  148. }
  149. .title_else {
  150. width: 102%;
  151. height: 65px;
  152. font-size: 35px;
  153. font-weight: bolder;
  154. line-height: 65px;
  155. text-indent: 120px;
  156. box-sizing: border-box;
  157. border-radius: 10px;
  158. margin-bottom: 10px;
  159. position: relative;
  160. background: url("../images/newImage/tit_bg.png") no-repeat;
  161. background-size: 100% 100%;
  162. }
  163. .icon_tit {
  164. width: 80px;
  165. height: 80px;
  166. z-index: 9999;
  167. position: absolute;
  168. top: -10px;
  169. right: 8%;
  170. }
  171. .left_main {
  172. width: 100%;
  173. height: calc(100% - 65px);
  174. }
  175. .left_main_else {
  176. width: 100%;
  177. height: calc(100% - 65px);
  178. display: flex;
  179. flex-direction: column;
  180. justify-content: space-between;
  181. }
  182. .left_main_top {
  183. width: 100%;
  184. height: 75%;
  185. display: flex;
  186. justify-content: space-between;
  187. align-items: center;
  188. }
  189. .left_main_top_left {
  190. width: calc(60% - 10px);
  191. height: calc(100% - 30px);
  192. background-color: var(--bg);
  193. padding: 10px;
  194. box-sizing: border-box;
  195. }
  196. .left_main_top_right {
  197. width: calc(40% - 10px);
  198. height: calc(100% - 30px);
  199. background-color: var(--bg);
  200. padding: 10px;
  201. box-sizing: border-box;
  202. }
  203. .left_main_btm {
  204. width: 100%;
  205. height: 25%;
  206. }
  207. .left_user_top {
  208. width: 100%;
  209. height: calc(14% - 10px);
  210. display: flex;
  211. justify-content: space-between;
  212. align-items: center;
  213. }
  214. .left_user_number {
  215. width: 25%;
  216. height: 100%;
  217. }
  218. .text_box {
  219. width: 100%;
  220. height: 100%;
  221. /* background: url("../images/man.png") no-repeat; */
  222. display: flex;
  223. flex-direction: column;
  224. justify-content: center;
  225. align-items: flex-start;
  226. position: relative;
  227. padding-left: 330px;
  228. box-sizing: border-box;
  229. }
  230. .text_box img {
  231. width: 30%;
  232. height: 100%;
  233. position: absolute;
  234. top: 50%;
  235. left: 30%;
  236. transform: translate(-50%, -50%);
  237. }
  238. .text_num {
  239. font-size: 40px;
  240. font-weight: bolder;
  241. font-style: italic;
  242. margin-top: 10px;
  243. color: #69C0FF;
  244. }
  245. .text_num span {
  246. font-size: 24px !important;
  247. }
  248. .text_title {
  249. font-size: 30px;
  250. }
  251. .left_user_main {
  252. width: 100%;
  253. height: calc(43% - 10px);
  254. display: flex;
  255. justify-content: space-between;
  256. }
  257. .left_user_main_item {
  258. width: calc(33% - 10px);
  259. height: 100%;
  260. padding: 20px;
  261. box-sizing: border-box;
  262. /* background: url("../images/rt-back.png") no-repeat; */
  263. /* background-size: 100% 100%; */
  264. background-color: var(--bg);
  265. display: flex;
  266. flex-direction: column;
  267. justify-content: space-between;
  268. align-items: center;
  269. }
  270. .left_salary_box,
  271. .left_salary_box_else {
  272. width: 100%;
  273. height: calc(40% - 10px);
  274. }
  275. .left_salary_box {
  276. /* background: url("../images/lb-back.png") no-repeat;
  277. background-size: 100% 100%; */
  278. background-color: var(--bg);
  279. padding: 10px;
  280. box-sizing: border-box;
  281. }
  282. .left_salary_box_else {
  283. display: flex;
  284. justify-content: space-between;
  285. }
  286. .left_salary_item {
  287. width: calc(50% - 10px);
  288. height: 100%;
  289. /* background: url("../images/rt-back.png") no-repeat;
  290. background-size: 100% 100%; */
  291. background-color: var(--bg);
  292. padding: 10px 30px;
  293. box-sizing: border-box;
  294. position: relative;
  295. }
  296. .title_box {
  297. position: absolute;
  298. right: 50px;
  299. top: 10px;
  300. font-size: 30px;
  301. z-index: 99;
  302. }
  303. .right_item {
  304. width: 100%;
  305. height: calc(25% - 10px);
  306. background: url("../images/lb-back.png") no-repeat;
  307. background-size: 100% 100%;
  308. /* background-color: var(--bg); */
  309. padding: 10px 45px 20px;
  310. box-sizing: border-box;
  311. /* display: flex;
  312. justify-content: space-between;
  313. align-items: center; */
  314. }
  315. .right_item_else {
  316. width: 100%;
  317. height: calc(100%);
  318. /* display: flex;
  319. flex-direction: column;
  320. justify-content: space-between; */
  321. }
  322. .right_user_box {
  323. width: 100%;
  324. height: calc(25% - 10px);
  325. background: url("../images/lb-back.png") no-repeat;
  326. background-size: 100% 100%;
  327. padding: 10px 45px 20px;
  328. box-sizing: border-box;
  329. }
  330. .right_item_item_top {
  331. width: 100%;
  332. height: 100px;
  333. background-color: blueviolet;
  334. }
  335. .right_item_item_btm {
  336. width: 100%;
  337. height: calc(100% - 110px);
  338. display: flex;
  339. justify-content: space-between;
  340. }
  341. .right_item_item {
  342. width: calc(100% - 10px);
  343. height: 100%;
  344. background-color: var(--bg);
  345. /* background: url("../images/rt-back.png") no-repeat;
  346. background-size: 100% 100%;
  347. padding: 10px 30px;
  348. box-sizing: border-box; */
  349. }
  350. .right_item_main {
  351. width: 100%;
  352. height: calc(100% - 70px);
  353. }
  354. .right_item_item_else {
  355. width: calc(50% - 10px);
  356. height: 100%;
  357. background-color: var(--bg);
  358. padding: 5px 30px 10px;
  359. box-sizing: border-box;
  360. }
  361. .scroll_board_bg {
  362. width: 100%;
  363. height: 80%;
  364. /* background: url("../images/rt-back.png") no-repeat;
  365. background-size: 100% 100%; */
  366. /* padding: 30px;
  367. box-sizing: border-box; */
  368. }
  369. .right_echarts {
  370. width: calc(50% - 10px);
  371. height: 100%;
  372. background: url("../images/rt-back.png") no-repeat;
  373. background-size: 100% 100%;
  374. padding: 30px;
  375. box-sizing: border-box;
  376. }
  377. .right_echarts_else {
  378. width: calc(50% - 10px);
  379. height: 100%;
  380. background: url("../images/rt-back.png") no-repeat;
  381. background-size: 100% 100%;
  382. padding: 30px;
  383. box-sizing: border-box;
  384. }
  385. .right_echarts_else_bg {
  386. width: calc(50% - 10px);
  387. height: 100%;
  388. background-color: var(--bg);
  389. padding: 30px;
  390. box-sizing: border-box;
  391. }
  392. .three_box {
  393. width: 100%;
  394. height: calc(100% - 65px);
  395. display: flex;
  396. justify-content: space-between;
  397. align-items: center;
  398. }
  399. .left_main_btm .dv-scroll-board div {
  400. font-size: 32px !important;
  401. }
  402. .right_btm_item {
  403. width: 100%;
  404. height: calc(100% - 65px);
  405. }
  406. .right_btm_item_else {
  407. width: 100%;
  408. height: 100%;
  409. display: flex;
  410. justify-content: center;
  411. align-items: center;
  412. }
  413. .right_item_btm_box {
  414. width: calc(40% - 10px);
  415. height: 100%;
  416. /* background: url("../images/rt-back.png") no-repeat;
  417. background-size: 100% 100%; */
  418. background-color: var(--bg);
  419. padding: 20px;
  420. box-sizing: border-box;
  421. }
  422. .image_box_else {
  423. width: 280px;
  424. height: 280px;
  425. position: relative;
  426. }
  427. .image_box_else span {
  428. font-size: 60px;
  429. font-weight: bolder;
  430. position: absolute;
  431. top: 50%;
  432. left: 50%;
  433. transform: translate(-50%, -50%);
  434. z-index: 999;
  435. }
  436. .image_box_else img {
  437. animation: fadenum 8s infinite linear;
  438. }
  439. .image_box {
  440. width: calc(50% - 10px);
  441. height: 70%;
  442. display: flex;
  443. flex-direction: column;
  444. justify-content: space-around;
  445. align-items: center;
  446. }
  447. .box_item {
  448. width: 100%;
  449. height: 100px;
  450. display: flex;
  451. align-items: center;
  452. justify-content: flex-start;
  453. margin-left: 100px;
  454. font-size: 40px;
  455. text-indent: 50px;
  456. }
  457. .box_item img {
  458. width: 100px;
  459. height: 100px;
  460. }
  461. .box_item div span {
  462. font-size: 50px;
  463. font-weight: bolder;
  464. color: #69c0ff;
  465. font-style: italic;
  466. font-weight: bold;
  467. margin: 0 10px;
  468. }
  469. .top {
  470. width: 100%;
  471. height: 140px;
  472. font-size: 40px;
  473. }
  474. .flex {
  475. display: flex;
  476. }
  477. .justify-between {
  478. justify-content: space-between;
  479. }
  480. .items-center {
  481. align-items: center;
  482. }
  483. .top-img {
  484. width: 127px;
  485. height: 127px;
  486. margin-right: 15px;
  487. }
  488. .top-text {
  489. font-size: 60px;
  490. color: #69c0ff;
  491. font-style: italic;
  492. font-weight: bold;
  493. display: inline-block;
  494. margin: 0 15px;
  495. }
  496. .right_bg_item {
  497. width: calc(33% - 20px);
  498. height: 100%;
  499. background-image: url("../images/bottom-right.png");
  500. background-repeat: no-repeat;
  501. background-size: 100% 100%;
  502. display: flex;
  503. flex-direction: column;
  504. justify-content: center;
  505. align-items: center;
  506. padding-top: 50px;
  507. box-sizing: border-box;
  508. }
  509. .bg_item_gif {
  510. width: 230px;
  511. height: 300px;
  512. }
  513. .bg_item_gif img {
  514. width: 100%;
  515. height: 100%;
  516. }
  517. .bg_item_num {
  518. font-size: 48px;
  519. font-weight: bolder;
  520. margin-bottom: -90px;
  521. z-index: 9;
  522. }
  523. .bg_item_title {
  524. font-size: 28px;
  525. font-weight: 600;
  526. }
  527. .right_item_item_else_title {
  528. width: 100%;
  529. height: 25%;
  530. display: flex;
  531. justify-content: center;
  532. align-items: center;
  533. position: relative;
  534. }
  535. .right_item_item_else_title img {
  536. width: 32%;
  537. height: 100%;
  538. }
  539. .title_right {
  540. width: 100%;
  541. height: 100%;
  542. position: absolute;
  543. display: flex;
  544. justify-content: center;
  545. align-items: center;
  546. font-size: 30px;
  547. }
  548. .title_right span {
  549. color: rgb(69, 218, 209);
  550. }
  551. .big_color {
  552. display: inline-block;
  553. font-size: 40px;
  554. font-weight: bolder;
  555. margin: 0 0 0 25px;
  556. }
  557. .echarts {
  558. width: 100%;
  559. height: 100%;
  560. }
  561. .echarts_else {
  562. width: 100%;
  563. height: calc(100% - 65px);
  564. }
  565. .echarts_else_top {
  566. width: 100%;
  567. height: calc(20%px);
  568. display: flex;
  569. justify-content: space-around;
  570. align-items: center;
  571. }
  572. .echarts_else_top_item {
  573. width: calc(50% - 150px);
  574. height: 100%;
  575. background: rgba(0, 179, 254, 0.25);
  576. border: 1px solid #69C0FF;
  577. border-radius: 10px;
  578. display: flex;
  579. justify-content: center;
  580. align-items: center;
  581. }
  582. .echarts_else_top_item_on {
  583. width: calc(50% - 150px);
  584. height: 100%;
  585. background: rgba(0, 254, 199, 0.25);
  586. border: 1px solid #00ffff;
  587. border-radius: 10px;
  588. display: flex;
  589. justify-content: center;
  590. align-items: center;
  591. }
  592. .item_left_t {
  593. width: 65px;
  594. height: 65px;
  595. }
  596. .item_right_t {
  597. padding-left: 30px;
  598. display: flex;
  599. flex-direction: column;
  600. justify-content: space-around;
  601. align-items: flex-start;
  602. }
  603. .item_right_t div:nth-child(1) {
  604. font-size: 26px;
  605. font-family: Source Han Sans CN;
  606. font-weight: 400;
  607. color: #FFFFFF;
  608. }
  609. .item_right_t div:nth-child(2) {
  610. font-size: 30px;
  611. font-family: HelveticaNeueLT;
  612. font-weight: bolder;
  613. color: #69C0FF;
  614. }
  615. .item_right_t div:nth-child(2) span {
  616. font-size: 24px;
  617. font-family: Source Han Sans CN;
  618. font-weight: 400;
  619. color: #69C0FF;
  620. }
  621. .echarts_else_btm {
  622. width: 100%;
  623. height: calc(80% - 20px);
  624. }
  625. .left_user_title {
  626. width: 100%;
  627. height: 40px;
  628. display: flex;
  629. flex-direction: column;
  630. justify-content: space-between;
  631. align-items: flex-start;
  632. }
  633. .icon_title .title {
  634. width: calc(100% - 40px);
  635. height: 100%;
  636. text-align: left;
  637. text-indent: 20px;
  638. }
  639. .icon {
  640. width: 20px;
  641. height: 70%;
  642. }
  643. img {
  644. width: 100%;
  645. height: 100%;
  646. }
  647. .icon_title {
  648. width: 100%;
  649. height: calc(100% - 10px);
  650. z-index: 999;
  651. display: flex;
  652. justify-content: flex-start;
  653. align-items: center;
  654. }
  655. .line {
  656. width: 100%;
  657. height: 2px;
  658. }
  659. .echarts_90 {
  660. width: 100%;
  661. height: 80%;
  662. }
  663. .flex_column {
  664. display: flex;
  665. flex-direction: column;
  666. justify-content: space-between;
  667. align-items: flex-start;
  668. }
  669. .main_item_echarts {
  670. width: 100%;
  671. height: calc(100% - 90px);
  672. }
  673. .right_item_item_else_top {
  674. width: 100%;
  675. height: calc(25% - 10px);
  676. margin-bottom: 15px;
  677. }
  678. .right_item_item_else_main {
  679. width: 100%;
  680. height: calc(75%);
  681. /* background-color: var(--bg); */
  682. /* background: url("../images/rt-back.png") no-repeat;
  683. background-size: 100% 100%;
  684. padding: 30px;
  685. box-sizing: border-box; */
  686. }
  687. .w_100 {
  688. width: 100%;
  689. height: calc(100% - 65px);
  690. }
  691. .w_100_right {
  692. width: 100%;
  693. height: calc(100% - 60px);
  694. display: flex;
  695. justify-content: space-between;
  696. align-items: center;
  697. }
  698. .flex_sb {
  699. display: flex;
  700. justify-content: space-between;
  701. }
  702. .right_echarts_item {
  703. width: 100%;
  704. height: calc(100% - 65px);
  705. }
  706. .right_btm_item_box {
  707. width: calc(60% - 10px);
  708. height: 100%;
  709. /* background: url("../images/rt-back.png") no-repeat;
  710. background-size: 100% 100%; */
  711. background-color: var(--bg);
  712. padding: 17px;
  713. box-sizing: border-box;
  714. }
  715. .echarts_map {
  716. width: 100%;
  717. height: 100%;
  718. position: absolute;
  719. top: 0;
  720. left: 0;
  721. }
  722. .tooltip-cont {
  723. margin: -15px;
  724. border: 1px solid #3699ff;
  725. border-radius: 0px;
  726. font-size: 35px;
  727. padding: 10px 15px 10px;
  728. background-color: #0725558a !important;
  729. }
  730. .tooltip-cont p {
  731. line-height: 1.8;
  732. color: #f3f3f3;
  733. position: relative;
  734. padding-left: 12px;
  735. }
  736. .tooltip-cont p::before {
  737. position: absolute;
  738. display: inline-block;
  739. content: '';
  740. left: 0px;
  741. top: 10px;
  742. width: 5px;
  743. height: 5px;
  744. border-radius: 50%;
  745. /* background-color: #40a9ff; */
  746. }
  747. .tooltip-cont span {
  748. color: #FFAD05;
  749. font-weight: bolder;
  750. }
  751. .dv-scroll-board div {
  752. font-size: 28px;
  753. }
  754. .main_item_one_info {
  755. width: 100%;
  756. height: 150px;
  757. display: flex;
  758. justify-content: space-between;
  759. align-items: center;
  760. position: absolute;
  761. top: 0;
  762. left: 0;
  763. }
  764. .main_info_item {
  765. width: 370px;
  766. height: 100%;
  767. display: flex;
  768. justify-content: center;
  769. align-items: center;
  770. }
  771. .main_info_item_img {
  772. width: 180px;
  773. height: 100px;
  774. background-color: #40a9ff;
  775. background: url("../images/newImage/loginUser.png") no-repeat;
  776. background-size: cover;
  777. margin: 0 15px;
  778. }
  779. .main_info_item_title {
  780. display: flex;
  781. flex-direction: column;
  782. justify-content: space-around;
  783. align-items: flex-start;
  784. }
  785. .main_info_item_title div:nth-child(1) {
  786. font-size: 36px;
  787. font-family: Helvetica Neue Extra Black Cond;
  788. font-weight: 600;
  789. color: #6BC1FF;
  790. }
  791. .main_info_item_title div:nth-child(2) {
  792. font-size: 25px;
  793. font-family: Source Han Sans CN;
  794. font-weight: 500;
  795. color: #FFFFFF;
  796. }
  797. .mark_box {
  798. width: 7168px !important;
  799. min-height: 2576px;
  800. height: 100%;
  801. background-color: #1b1b1b6b;
  802. position: absolute;
  803. top: 0;
  804. left: 0;
  805. z-index: 999999999999999999;
  806. }
  807. .mark_centter {
  808. width: 1300px;
  809. height: 600px;
  810. /* margin: 1500px 1000px 0; */
  811. z-index: 999999999999999999;
  812. background: url("../images/markBG.png") no-repeat;
  813. background-size: 100% 100%;
  814. padding: 20px 40px 30px;
  815. box-sizing: border-box;
  816. align-items: center !important;
  817. position: absolute;
  818. top: 20%;
  819. right: 10%;
  820. }
  821. .mark_title {
  822. width: 100%;
  823. height: 50px;
  824. text-align: center;
  825. line-height: 50px;
  826. font-size: 35px;
  827. font-weight: bolder;
  828. margin-top: 5px;
  829. }
  830. .mark_main {
  831. width: 100%;
  832. height: calc(100% - 70px);
  833. }
  834. .mark_pdf {
  835. width: 2300px;
  836. height: 1500px;
  837. background: url("../images/markBG.png") no-repeat;
  838. background-size: 100% 100%;
  839. padding: 50px;
  840. box-sizing: border-box;
  841. position: absolute;
  842. top: 20%;
  843. left: 5%;
  844. }
  845. .f_box {
  846. width: 100%;
  847. height: calc(100% - 65px);
  848. display: flex;
  849. flex-wrap: wrap;
  850. justify-content: space-between;
  851. align-items: center;
  852. }
  853. .f_item {
  854. width: calc(50% - 10px);
  855. height: calc(50% - 10px);
  856. font-size: 32px;
  857. overflow: hidden;
  858. }
  859. .f_item span:nth-child(1) {
  860. color: #4BB2FF;
  861. margin-bottom: 10px;
  862. font-weight: bolder;
  863. display: block;
  864. }
  865. .f_item span:nth-child(2) {
  866. width: 95%;
  867. height: 84px;
  868. text-indent: 50px;
  869. opacity: 0.7;
  870. display: -webkit-box;
  871. /* 将元素作为弹性伸缩盒子展示 */
  872. -webkit-line-clamp: 2;
  873. /* 限制显示的行数 */
  874. -webkit-box-orient: vertical;
  875. /* 设置垂直方向 */
  876. overflow: hidden;
  877. /* 隐藏超出部分 */
  878. }
  879. .echarts_6 {
  880. width: 100%;
  881. height: calc(100% - 65px);
  882. }
  883. .echarts_top {
  884. width: 100%;
  885. height: 70%;
  886. margin-top: 30px;
  887. box-sizing: border-box;
  888. display: flex;
  889. justify-content: space-around;
  890. align-items: center;
  891. }
  892. .top_image {
  893. width: calc(100% / 6);
  894. height: 90%;
  895. margin-top: 20px;
  896. position: relative;
  897. }
  898. .top_text {
  899. font-size: 40px;
  900. font-weight: bolder;
  901. color: #5AC9FD;
  902. position: absolute;
  903. top: 25%;
  904. left: 37%;
  905. transform: translateY(-50%);
  906. }
  907. .top_text_on{
  908. font-size: 40px;
  909. font-weight: bolder;
  910. color: #EBB829;
  911. position: absolute;
  912. top: 25%;
  913. left: 37%;
  914. transform: translateY(-50%);
  915. }
  916. .top_text span {
  917. font-size: 30px;
  918. }
  919. .top_text_on span {
  920. font-size: 30px;
  921. }
  922. .echarts_top img {
  923. width: 65%;
  924. height: 100%;
  925. }
  926. .echarts_btm {
  927. width: 100%;
  928. height: 30%;
  929. position: relative;
  930. margin-top: -20px;
  931. }
  932. .btm_text {
  933. width: 100%;
  934. height: 100%;
  935. display: flex;
  936. justify-content: space-around;
  937. align-items: center;
  938. }
  939. .btm_text_on{
  940. width: 100%;
  941. height: 100%;
  942. display: flex;
  943. justify-content: space-around;
  944. align-items: center;
  945. }
  946. .btm_text_span{
  947. font-size: 26px;
  948. color: #5AC9FD;
  949. }
  950. .btm_text_span_on{
  951. font-size: 26px;
  952. color: #EBB829;
  953. }
  954. /* .red {
  955. color: red;
  956. } */
  957. .echarts_else{
  958. position: relative;
  959. }
  960. .echarts_else .img{
  961. width: 370px;
  962. height: 370px;
  963. z-index: 99999;
  964. position: absolute;
  965. left: 130px;
  966. top: calc(50% - 183px);
  967. animation: fadenum 8s infinite linear;
  968. }
  969. .tit_text{
  970. margin-top: 10px;
  971. }
  972. .tit_icon{
  973. width: 200px;
  974. height: 65px;
  975. display: flex;
  976. justify-content: center;
  977. align-items: center;
  978. margin-top: 10px;
  979. }
  980. .tit_icon img{
  981. width: 33px;
  982. height: 21px;
  983. }
  984. .title_else_sb{
  985. width: 100%;
  986. height: 65px;
  987. text-indent: 30px;
  988. font-size: 35px;
  989. line-height: 65px;
  990. font-weight: bolder;
  991. text-align: center;
  992. /* line-height: 57px; */
  993. box-sizing: border-box;
  994. border-radius: 10px;
  995. }
  996. @keyframes fadenum {
  997. 100% {
  998. transform: rotate(360deg);
  999. }
  1000. }