newIndex.css 21 KB

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