newIndex.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220
  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. position: relative;
  270. }
  271. .mark_none{
  272. width: 100%;
  273. height: 100%;
  274. position: absolute;
  275. top: 0;
  276. left: 0;
  277. z-index: 9999999999999;
  278. pointer-events: none;
  279. }
  280. .left_salary_box,
  281. .left_salary_box_else {
  282. width: 100%;
  283. height: calc(40% - 10px);
  284. }
  285. .left_salary_box {
  286. /* background: url("../images/lb-back.png") no-repeat;
  287. background-size: 100% 100%; */
  288. background-color: var(--bg);
  289. padding: 10px;
  290. box-sizing: border-box;
  291. }
  292. .left_salary_box_else {
  293. display: flex;
  294. justify-content: space-between;
  295. }
  296. .left_salary_item {
  297. width: calc(50% - 10px);
  298. height: 100%;
  299. /* background: url("../images/rt-back.png") no-repeat;
  300. background-size: 100% 100%; */
  301. background-color: var(--bg);
  302. padding: 10px 30px;
  303. box-sizing: border-box;
  304. position: relative;
  305. }
  306. .title_box {
  307. position: absolute;
  308. right: 50px;
  309. top: 10px;
  310. font-size: 30px;
  311. z-index: 99;
  312. }
  313. .right_item {
  314. width: 100%;
  315. height: calc(25% - 10px);
  316. background: url("../images/lb-back.png") no-repeat;
  317. background-size: 100% 100%;
  318. /* background-color: var(--bg); */
  319. padding: 10px 45px 20px;
  320. box-sizing: border-box;
  321. /* display: flex;
  322. justify-content: space-between;
  323. align-items: center; */
  324. }
  325. .right_item_else {
  326. width: 100%;
  327. height: calc(100%);
  328. /* display: flex;
  329. flex-direction: column;
  330. justify-content: space-between; */
  331. }
  332. .right_user_box {
  333. width: 100%;
  334. height: calc(25% - 10px);
  335. background: url("../images/lb-back.png") no-repeat;
  336. background-size: 100% 100%;
  337. padding: 10px 45px 20px;
  338. box-sizing: border-box;
  339. }
  340. .right_item_item_top {
  341. width: 100%;
  342. height: 100px;
  343. background-color: blueviolet;
  344. }
  345. .right_item_item_btm {
  346. width: 100%;
  347. height: calc(100% - 110px);
  348. display: flex;
  349. justify-content: space-between;
  350. }
  351. .right_item_item {
  352. width: calc(100% - 10px);
  353. height: 100%;
  354. background-color: var(--bg);
  355. /* background: url("../images/rt-back.png") no-repeat;
  356. background-size: 100% 100%;
  357. padding: 10px 30px;
  358. box-sizing: border-box; */
  359. }
  360. .right_item_main {
  361. width: 100%;
  362. height: calc(100% - 70px);
  363. }
  364. .right_item_item_else {
  365. width: calc(50% - 10px);
  366. height: 100%;
  367. background-color: var(--bg);
  368. padding: 5px 30px 10px;
  369. box-sizing: border-box;
  370. }
  371. .scroll_board_bg {
  372. width: 100%;
  373. height: 80%;
  374. /* background: url("../images/rt-back.png") no-repeat;
  375. background-size: 100% 100%; */
  376. /* padding: 30px;
  377. box-sizing: border-box; */
  378. }
  379. .right_echarts {
  380. width: calc(50% - 10px);
  381. height: 100%;
  382. background: url("../images/rt-back.png") no-repeat;
  383. background-size: 100% 100%;
  384. padding: 30px;
  385. box-sizing: border-box;
  386. }
  387. .right_echarts_else {
  388. width: calc(50% - 10px);
  389. height: 100%;
  390. background: url("../images/rt-back.png") no-repeat;
  391. background-size: 100% 100%;
  392. padding: 30px;
  393. box-sizing: border-box;
  394. }
  395. .right_echarts_else_bg {
  396. width: calc(50% - 10px);
  397. height: 100%;
  398. background-color: var(--bg);
  399. padding: 30px;
  400. box-sizing: border-box;
  401. }
  402. .three_box {
  403. width: 100%;
  404. height: calc(100% - 65px);
  405. display: flex;
  406. justify-content: space-between;
  407. align-items: center;
  408. }
  409. .left_main_btm .dv-scroll-board div {
  410. font-size: 32px !important;
  411. }
  412. .right_btm_item {
  413. width: 100%;
  414. height: calc(100% - 65px);
  415. }
  416. .right_btm_item_else {
  417. width: 100%;
  418. height: 100%;
  419. display: flex;
  420. justify-content: center;
  421. align-items: center;
  422. position: relative;
  423. }
  424. .po_title {
  425. position: absolute;
  426. right: 4%;
  427. top: 4%;
  428. font-size: 26px;
  429. }
  430. .right_item_btm_box {
  431. width: calc(40% - 10px);
  432. height: 100%;
  433. /* background: url("../images/rt-back.png") no-repeat;
  434. background-size: 100% 100%; */
  435. background-color: var(--bg);
  436. padding: 20px;
  437. box-sizing: border-box;
  438. }
  439. .image_box_else {
  440. width: 280px;
  441. height: 280px;
  442. position: relative;
  443. }
  444. .image_box_else span {
  445. font-size: 60px;
  446. font-weight: bolder;
  447. position: absolute;
  448. top: 50%;
  449. left: 50%;
  450. transform: translate(-50%, -50%);
  451. z-index: 999;
  452. }
  453. .image_box_else img {
  454. animation: fadenum 8s infinite linear;
  455. }
  456. .image_box {
  457. width: calc(50% - 10px);
  458. height: 70%;
  459. display: flex;
  460. flex-direction: column;
  461. justify-content: space-around;
  462. align-items: center;
  463. }
  464. .box_item {
  465. width: 100%;
  466. height: 100px;
  467. display: flex;
  468. align-items: center;
  469. justify-content: flex-start;
  470. margin-left: 100px;
  471. font-size: 40px;
  472. text-indent: 50px;
  473. }
  474. .box_item img {
  475. width: 100px;
  476. height: 100px;
  477. }
  478. .box_item div span {
  479. font-size: 50px;
  480. font-weight: bolder;
  481. color: #69c0ff;
  482. font-style: italic;
  483. font-weight: bold;
  484. margin: 0 10px;
  485. }
  486. .top {
  487. width: 100%;
  488. height: 140px;
  489. font-size: 40px;
  490. }
  491. .flex {
  492. display: flex;
  493. }
  494. .justify-between {
  495. justify-content: space-between;
  496. }
  497. .items-center {
  498. align-items: center;
  499. }
  500. .top-img {
  501. width: 127px;
  502. height: 127px;
  503. margin-right: 15px;
  504. }
  505. .top-text {
  506. font-size: 60px;
  507. color: #69c0ff;
  508. font-style: italic;
  509. font-weight: bold;
  510. display: inline-block;
  511. margin: 0 15px;
  512. }
  513. .right_bg_item {
  514. width: calc(33% - 20px);
  515. height: 100%;
  516. background-image: url("../images/bottom-right.png");
  517. background-repeat: no-repeat;
  518. background-size: 100% 100%;
  519. display: flex;
  520. flex-direction: column;
  521. justify-content: center;
  522. align-items: center;
  523. padding-top: 50px;
  524. box-sizing: border-box;
  525. }
  526. .bg_item_gif {
  527. width: 230px;
  528. height: 300px;
  529. }
  530. .bg_item_gif img {
  531. width: 100%;
  532. height: 100%;
  533. }
  534. .bg_item_num {
  535. font-size: 48px;
  536. font-weight: bolder;
  537. margin-bottom: -90px;
  538. z-index: 9;
  539. }
  540. .bg_item_title {
  541. font-size: 28px;
  542. font-weight: 600;
  543. }
  544. .right_item_item_else_title {
  545. width: 100%;
  546. height: 25%;
  547. display: flex;
  548. justify-content: center;
  549. align-items: center;
  550. position: relative;
  551. }
  552. .right_item_item_else_title img {
  553. width: 32%;
  554. height: 100%;
  555. }
  556. .title_right {
  557. width: 100%;
  558. height: 100%;
  559. position: absolute;
  560. display: flex;
  561. justify-content: center;
  562. align-items: center;
  563. font-size: 30px;
  564. }
  565. .title_right span {
  566. color: rgb(69, 218, 209);
  567. }
  568. .big_color {
  569. display: inline-block;
  570. font-size: 40px;
  571. font-weight: bolder;
  572. margin: 0 0 0 25px;
  573. }
  574. .echarts {
  575. width: 100%;
  576. height: 100%;
  577. }
  578. .echarts_else {
  579. width: 100%;
  580. height: calc(100% - 65px);
  581. }
  582. .echarts_else_top {
  583. width: 100%;
  584. height: calc(20%px);
  585. display: flex;
  586. justify-content: space-around;
  587. align-items: center;
  588. }
  589. .echarts_else_top_item {
  590. width: calc(50% - 150px);
  591. height: 100%;
  592. background: rgba(0, 179, 254, 0.25);
  593. border: 1px solid #69C0FF;
  594. border-radius: 10px;
  595. display: flex;
  596. justify-content: center;
  597. align-items: center;
  598. }
  599. .echarts_else_top_item_on {
  600. width: calc(50% - 150px);
  601. height: 100%;
  602. background: rgba(0, 254, 199, 0.25);
  603. border: 1px solid #00ffff;
  604. border-radius: 10px;
  605. display: flex;
  606. justify-content: center;
  607. align-items: center;
  608. }
  609. .item_left_t {
  610. width: 65px;
  611. height: 65px;
  612. }
  613. .item_right_t {
  614. padding-left: 30px;
  615. display: flex;
  616. flex-direction: column;
  617. justify-content: space-around;
  618. align-items: flex-start;
  619. }
  620. .item_right_t div:nth-child(1) {
  621. font-size: 26px;
  622. font-family: Source Han Sans CN;
  623. font-weight: 400;
  624. color: #FFFFFF;
  625. }
  626. .item_right_t div:nth-child(2) {
  627. font-size: 30px;
  628. font-family: HelveticaNeueLT;
  629. font-weight: bolder;
  630. color: #69C0FF;
  631. }
  632. .item_right_t div:nth-child(2) span {
  633. font-size: 24px;
  634. font-family: Source Han Sans CN;
  635. font-weight: 400;
  636. color: #69C0FF;
  637. }
  638. .echarts_else_btm {
  639. width: 100%;
  640. height: calc(80% - 20px);
  641. }
  642. .left_user_title {
  643. width: 100%;
  644. height: 40px;
  645. display: flex;
  646. flex-direction: column;
  647. justify-content: space-between;
  648. align-items: flex-start;
  649. }
  650. .icon_title .title {
  651. width: calc(100% - 40px);
  652. height: 100%;
  653. text-align: left;
  654. text-indent: 20px;
  655. }
  656. .icon {
  657. width: 20px;
  658. height: 70%;
  659. }
  660. img {
  661. width: 100%;
  662. height: 100%;
  663. }
  664. .icon_title {
  665. width: 100%;
  666. height: calc(100% - 10px);
  667. z-index: 999;
  668. display: flex;
  669. justify-content: flex-start;
  670. align-items: center;
  671. }
  672. .line {
  673. width: 100%;
  674. height: 2px;
  675. }
  676. .echarts_90 {
  677. width: 100%;
  678. height: 80%;
  679. }
  680. .flex_column {
  681. display: flex;
  682. flex-direction: column;
  683. justify-content: space-between;
  684. align-items: flex-start;
  685. }
  686. .main_item_echarts {
  687. width: 100%;
  688. height: calc(100% - 90px);
  689. }
  690. .right_item_item_else_top {
  691. width: 100%;
  692. height: calc(25% - 10px);
  693. margin-bottom: 15px;
  694. }
  695. .right_item_item_else_main {
  696. width: 100%;
  697. height: calc(75%);
  698. /* background-color: var(--bg); */
  699. /* background: url("../images/rt-back.png") no-repeat;
  700. background-size: 100% 100%;
  701. padding: 30px;
  702. box-sizing: border-box; */
  703. }
  704. .w_100 {
  705. width: 100%;
  706. height: calc(100% - 65px);
  707. }
  708. .w_100_right {
  709. width: 100%;
  710. height: calc(100% - 60px);
  711. display: flex;
  712. justify-content: space-between;
  713. align-items: center;
  714. }
  715. .flex_sb {
  716. display: flex;
  717. justify-content: space-between;
  718. }
  719. .right_echarts_item {
  720. width: 100%;
  721. height: calc(100% - 65px);
  722. }
  723. .right_btm_item_box {
  724. width: calc(60% - 10px);
  725. height: 100%;
  726. /* background: url("../images/rt-back.png") no-repeat;
  727. background-size: 100% 100%; */
  728. background-color: var(--bg);
  729. padding: 17px;
  730. box-sizing: border-box;
  731. }
  732. .echarts_map {
  733. width: 100%;
  734. height: 100%;
  735. position: absolute;
  736. top: 0;
  737. left: 0;
  738. }
  739. .tooltip-cont {
  740. margin: -15px;
  741. border: 1px solid #3699ff;
  742. border-radius: 0px;
  743. font-size: 35px;
  744. padding: 10px 15px 10px;
  745. background-color: #0725558a !important;
  746. }
  747. .tooltip-cont p {
  748. line-height: 1.8;
  749. color: #f3f3f3;
  750. position: relative;
  751. padding-left: 12px;
  752. }
  753. .tooltip-cont p::before {
  754. position: absolute;
  755. display: inline-block;
  756. content: '';
  757. left: 0px;
  758. top: 10px;
  759. width: 5px;
  760. height: 5px;
  761. border-radius: 50%;
  762. /* background-color: #40a9ff; */
  763. }
  764. .tooltip-cont span {
  765. color: #FFAD05;
  766. font-weight: bolder;
  767. }
  768. .dv-scroll-board div {
  769. font-size: 28px;
  770. }
  771. .main_item_one_info {
  772. width: 100%;
  773. height: 150px;
  774. display: flex;
  775. justify-content: space-between;
  776. align-items: center;
  777. position: absolute;
  778. top: 0;
  779. left: 0;
  780. }
  781. .main_info_item {
  782. width: 370px;
  783. height: 100%;
  784. display: flex;
  785. justify-content: center;
  786. align-items: center;
  787. }
  788. .main_info_item_img {
  789. width: 180px;
  790. height: 100px;
  791. background-color: #40a9ff;
  792. background: url("../images/newImage/loginUser.png") no-repeat;
  793. background-size: cover;
  794. margin: 0 15px;
  795. }
  796. .main_info_item_title {
  797. display: flex;
  798. flex-direction: column;
  799. justify-content: space-around;
  800. align-items: flex-start;
  801. }
  802. .main_info_item_title div:nth-child(1) {
  803. font-size: 36px;
  804. font-family: Helvetica Neue Extra Black Cond;
  805. font-weight: 600;
  806. color: #6BC1FF;
  807. }
  808. .main_info_item_title div:nth-child(2) {
  809. font-size: 25px;
  810. font-family: Source Han Sans CN;
  811. font-weight: 500;
  812. color: #FFFFFF;
  813. }
  814. .mark_box {
  815. width: 7168px !important;
  816. min-height: 2576px;
  817. height: 100%;
  818. background-color: #1b1b1b6b;
  819. position: absolute;
  820. top: 0;
  821. left: 0;
  822. z-index: 999999999999999999;
  823. }
  824. .mark_centter {
  825. width: 1300px;
  826. height: 600px;
  827. /* margin: 1500px 1000px 0; */
  828. z-index: 999999999999999999;
  829. background: url("../images/markBG.png") no-repeat;
  830. background-size: 100% 100%;
  831. padding: 20px 40px 30px;
  832. box-sizing: border-box;
  833. align-items: center !important;
  834. position: absolute;
  835. top: 20%;
  836. right: 10%;
  837. }
  838. .mark_title {
  839. width: 100%;
  840. height: 50px;
  841. text-align: center;
  842. line-height: 50px;
  843. font-size: 35px;
  844. font-weight: bolder;
  845. margin-top: 5px;
  846. }
  847. .mark_main {
  848. width: 100%;
  849. height: calc(100% - 70px);
  850. }
  851. .mark_pdf {
  852. width: 2300px;
  853. height: 1500px;
  854. background: url("../images/markBG.png") no-repeat;
  855. background-size: 100% 100%;
  856. padding: 50px;
  857. box-sizing: border-box;
  858. position: absolute;
  859. top: 20%;
  860. left: 5%;
  861. }
  862. .f_box {
  863. width: 100%;
  864. height: calc(100% - 65px);
  865. display: flex;
  866. flex-wrap: wrap;
  867. justify-content: space-between;
  868. align-items: center;
  869. }
  870. .f_item {
  871. width: calc(50% - 10px);
  872. height: calc(50% - 10px);
  873. font-size: 32px;
  874. overflow: hidden;
  875. }
  876. .f_item span:nth-child(1) {
  877. color: #4BB2FF;
  878. margin-bottom: 10px;
  879. font-weight: bolder;
  880. display: block;
  881. }
  882. .f_item span:nth-child(2) {
  883. width: 95%;
  884. height: 84px;
  885. text-indent: 50px;
  886. opacity: 0.7;
  887. display: -webkit-box;
  888. /* 将元素作为弹性伸缩盒子展示 */
  889. -webkit-line-clamp: 2;
  890. /* 限制显示的行数 */
  891. -webkit-box-orient: vertical;
  892. /* 设置垂直方向 */
  893. overflow: hidden;
  894. /* 隐藏超出部分 */
  895. }
  896. .echarts_6 {
  897. width: 100%;
  898. height: calc(100% - 65px);
  899. }
  900. .echarts_top {
  901. width: 100%;
  902. height: 70%;
  903. margin-top: 30px;
  904. box-sizing: border-box;
  905. display: flex;
  906. justify-content: space-around;
  907. align-items: center;
  908. }
  909. .top_image {
  910. width: calc(100% / 6);
  911. height: 90%;
  912. margin-top: 20px;
  913. position: relative;
  914. }
  915. .top_text {
  916. font-size: 40px;
  917. font-weight: bolder;
  918. color: #5AC9FD;
  919. position: absolute;
  920. top: 25%;
  921. left: 37%;
  922. transform: translateY(-50%);
  923. }
  924. .top_text_on {
  925. font-size: 40px;
  926. font-weight: bolder;
  927. color: #EBB829;
  928. position: absolute;
  929. top: 25%;
  930. left: 37%;
  931. transform: translateY(-50%);
  932. }
  933. .top_text span {
  934. font-size: 30px;
  935. }
  936. .top_text_on span {
  937. font-size: 30px;
  938. }
  939. .echarts_top img {
  940. width: 65%;
  941. height: 100%;
  942. }
  943. .echarts_btm {
  944. width: 100%;
  945. height: 30%;
  946. position: relative;
  947. margin-top: -20px;
  948. }
  949. .btm_text {
  950. width: 100%;
  951. height: 100%;
  952. display: flex;
  953. justify-content: space-around;
  954. align-items: center;
  955. }
  956. .btm_text_on {
  957. width: 100%;
  958. height: 100%;
  959. display: flex;
  960. justify-content: space-around;
  961. align-items: center;
  962. }
  963. .btm_text_span {
  964. font-size: 26px;
  965. color: #5AC9FD;
  966. letter-spacing: 5px;
  967. }
  968. .btm_text_span_on {
  969. font-size: 26px;
  970. letter-spacing: 5px;
  971. color: #EBB829;
  972. }
  973. /* .red {
  974. color: red;
  975. } */
  976. .echarts_else {
  977. position: relative;
  978. }
  979. .echarts_else .img {
  980. width: 370px;
  981. height: 370px;
  982. z-index: 99999;
  983. position: absolute;
  984. left: 130px;
  985. top: calc(50% - 183px);
  986. animation: fadenum 8s infinite linear;
  987. }
  988. .tit_text {
  989. margin-top: 10px;
  990. }
  991. .tit_icon {
  992. width: 200px;
  993. height: 65px;
  994. display: flex;
  995. justify-content: center;
  996. align-items: center;
  997. margin-top: 10px;
  998. }
  999. .tit_icon img {
  1000. width: 33px;
  1001. height: 21px;
  1002. }
  1003. .title_else_sb {
  1004. width: 100%;
  1005. height: 65px;
  1006. text-indent: 30px;
  1007. font-size: 35px;
  1008. line-height: 65px;
  1009. font-weight: bolder;
  1010. text-align: center;
  1011. /* line-height: 57px; */
  1012. box-sizing: border-box;
  1013. border-radius: 10px;
  1014. }
  1015. @keyframes fadenum {
  1016. 100% {
  1017. transform: rotate(360deg);
  1018. }
  1019. }