index.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154
  1. html,
  2. body {
  3. width: 7680px;
  4. min-height: 2120px;
  5. height: 100%;
  6. font-size: 20px;
  7. color: #fff;
  8. font-family: "Microsoft YaHei";
  9. overflow-y: hidden;
  10. }
  11. * {
  12. -webkit-user-select: none;
  13. -moz-user-select: none;
  14. -ms-user-select: none;
  15. user-select: none;
  16. }
  17. img *,
  18. *,
  19. *:before,
  20. *:after {
  21. padding: 0;
  22. margin: 0;
  23. box-sizing: border-box;
  24. }
  25. a {
  26. text-decoration: none;
  27. cursor: pointer;
  28. }
  29. [v-cloak] {
  30. display: none;
  31. }
  32. #app {
  33. background: url("../img/page-bg.png") center center no-repeat;
  34. background-size: 100% 100%;
  35. }
  36. .top {
  37. height: 180px;
  38. width: 100%;
  39. display: grid;
  40. grid-template-columns: repeat(3, 1fr);
  41. gap: 10px;
  42. }
  43. .top > div {
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. flex-direction: column;
  48. font-size: 48px;
  49. font-weight: bold;
  50. letter-spacing: 5px;
  51. }
  52. .top .title > span:before {
  53. content: "";
  54. display: inline-block;
  55. width: 66px; /*图标宽度*/
  56. height: 42px; /*图标高度*/
  57. background: url("../img/title-left.png") no-repeat center center; /*图标路径*/
  58. background-size: contain; /*图标大小适应*/
  59. margin-right: 20px; /*图标与文字的间距*/
  60. }
  61. .top .title > div {
  62. height: 30px;
  63. width: 40%;
  64. background: url("../img/title-light.png") center bottom no-repeat;
  65. background-size: 100% 100%;
  66. }
  67. .top .title > span:after {
  68. content: "";
  69. display: inline-block;
  70. width: 66px; /*图标宽度*/
  71. height: 42px; /*图标高度*/
  72. background: url("../img/title-right.png") no-repeat center center; /*图标路径*/
  73. background-size: contain; /*图标大小适应*/
  74. margin-left: 20px; /*图标与文字的间距*/
  75. }
  76. .top .mainTitle {
  77. height: 70%;
  78. font-size: 80px;
  79. font-style: oblique;
  80. text-shadow: 2px 3px 1px black;
  81. letter-spacing: 5px;
  82. }
  83. .bottom {
  84. height: calc(100% - 180px);
  85. width: 100%;
  86. display: grid;
  87. grid-template-columns: repeat(3, 1fr);
  88. gap: 10px;
  89. padding: 0 1% 1% 1%;
  90. align-items: end;
  91. position: relative;
  92. }
  93. .left,
  94. .right {
  95. display: grid;
  96. grid-template-columns: repeat(2, 1fr);
  97. grid-template-rows: repeat(3, 1fr);
  98. gap: 10px;
  99. height: 100%;
  100. width: 100%;
  101. overflow: hidden;
  102. }
  103. .left > div,
  104. .center > div,
  105. .right > div {
  106. width: 100%;
  107. height: 100%;
  108. overflow: hidden;
  109. }
  110. .left .title,
  111. .center .title {
  112. width: 100%;
  113. /* height: calc(100% / 7); */
  114. height: 100px;
  115. overflow: hidden;
  116. background: url("../img/small-title.png") no-repeat center bottom; /*图标路径*/
  117. background-size: 100% 50%;
  118. display: flex;
  119. align-items: center;
  120. padding-left: 7%;
  121. font-size: 36px;
  122. font-style: oblique;
  123. text-shadow: 2px 3px 1px black;
  124. letter-spacing: 5px;
  125. }
  126. .left .child > div:nth-child(1):before {
  127. content: "●";
  128. margin-right: 10px;
  129. color: #40a9ff;
  130. }
  131. .left .content,
  132. .center .content {
  133. width: 100%;
  134. height: calc(100% - 100px);
  135. overflow: hidden;
  136. padding: 1%;
  137. }
  138. .left1 {
  139. display: grid;
  140. grid-template-rows: 1fr 1.6fr;
  141. }
  142. .left1 > div:first-child {
  143. display: flex;
  144. align-items: center;
  145. justify-content: space-around;
  146. }
  147. .left1 .child {
  148. width: 47%;
  149. height: 100%;
  150. background: url("../img/left1.png") no-repeat center center; /*图标路径*/
  151. background-size: 100% 100%;
  152. display: grid;
  153. grid-template-columns: repeat(2, 1fr);
  154. grid-template-rows: repeat(3, 1fr);
  155. padding: 1% 3%;
  156. align-items: center;
  157. }
  158. .left1B {
  159. display: grid;
  160. grid-template-columns: 4fr 6fr;
  161. overflow: hidden;
  162. }
  163. .left1B > div:nth-child(1) {
  164. overflow: hidden;
  165. background: url("../img/disk.png") no-repeat center center; /*图标路径*/
  166. background-size: 100% 100%;
  167. }
  168. .left1C {
  169. display: grid;
  170. grid-template-rows: 1fr 2fr 2fr;
  171. overflow: hidden;
  172. }
  173. .left1C-child {
  174. padding: 1%;
  175. }
  176. .checkBg {
  177. background: url("../img/disk.png") no-repeat center center; /*图标路径*/
  178. background-size: 100% 100%;
  179. }
  180. .left .industryProportion1,
  181. .left2 .industryProportion1 {
  182. background: url("../img/industryProportion.png") no-repeat center center; /*图标路径*/
  183. background-size: 100% 100%;
  184. }
  185. .left .industryProportion2 {
  186. background-color: #1f3152;
  187. }
  188. .left2 .industryProportion2 {
  189. background-color: #264580;
  190. }
  191. .left2 {
  192. display: grid;
  193. grid-template-rows: 3fr 17fr;
  194. }
  195. .left3 {
  196. display: grid;
  197. grid-template-columns: 9fr 11fr;
  198. }
  199. .left4 {
  200. width: 100%;
  201. height: 100%;
  202. overflow: hidden;
  203. position: relative;
  204. display: grid;
  205. grid-template-columns: repeat(2, 1fr);
  206. }
  207. .left4A {
  208. width: 100%;
  209. height: 100%;
  210. overflow: hidden;
  211. position: absolute;
  212. }
  213. .left4A > div,
  214. .bubble {
  215. position: absolute;
  216. animation: moveUpDown 4s infinite;
  217. }
  218. @keyframes moveUpDown {
  219. 0% {
  220. transform: translateY(0);
  221. }
  222. 50% {
  223. transform: translateY(-10px);
  224. }
  225. 100% {
  226. transform: translateY(0);
  227. }
  228. }
  229. .center {
  230. display: grid;
  231. grid-template-columns: 33fr 50fr 33fr;
  232. height: 95%;
  233. width: 100%;
  234. overflow: hidden;
  235. gap: 10px;
  236. position: relative;
  237. }
  238. .center > div:nth-child(1),
  239. .center > div:nth-child(3) {
  240. display: grid;
  241. grid-template-rows: repeat(3, 1fr);
  242. overflow: hidden;
  243. }
  244. .center1 {
  245. display: grid;
  246. grid-template-rows: 7fr 13fr;
  247. overflow: hidden;
  248. }
  249. .center1 > div:nth-child(2) {
  250. background: url("../img/bubbleBg.png") no-repeat center center; /*图标路径*/
  251. background-size: 100% 100%;
  252. }
  253. .center1 > div:nth-child(3) {
  254. background: url("../img/blueBig.png") no-repeat center center; /*图标路径*/
  255. background-size: 100% 100%;
  256. }
  257. .center1 > div:nth-child(4) {
  258. background: url("../img/blueSmall.png") no-repeat center center; /*图标路径*/
  259. background-size: 100% 100%;
  260. }
  261. .center1 > div:nth-child(5) {
  262. background: url("../img/greenSmall.png") no-repeat center center; /*图标路径*/
  263. background-size: 100% 100%;
  264. }
  265. .center1 > div:nth-child(6) {
  266. background: url("../img/greenBig.png") no-repeat center center; /*图标路径*/
  267. background-size: 100% 100%;
  268. }
  269. .center2 {
  270. display: grid;
  271. grid-template-rows: 1fr 6fr;
  272. overflow: hidden;
  273. }
  274. .center2 > div:nth-child(1) > div {
  275. width: 100%;
  276. height: 100%;
  277. overflow: hidden;
  278. }
  279. .center2 > div:nth-child(1) {
  280. display: grid;
  281. grid-template-rows: repeat(2, 1fr);
  282. grid-template-columns: repeat(2, 1fr);
  283. gap: 10px;
  284. overflow: hidden;
  285. }
  286. .center2 > div:nth-child(1) > div{
  287. margin-left: 10%;
  288. background-size: 100% 100%;
  289. overflow: hidden;
  290. padding-left: 40%;
  291. }
  292. .center2 > div:nth-child(1) > div:nth-child(1) {
  293. background: url("../img/centerTop1.png") no-repeat center left; /*图标路径*/
  294. }
  295. .center2 > div:nth-child(1) > div:nth-child(2) {
  296. background: url("../img/centerTop2.png") no-repeat center left; /*图标路径*/
  297. }
  298. .center2 > div:nth-child(1) > div:nth-child(3) {
  299. background: url("../img/centerTop3.png") no-repeat center left; /*图标路径*/
  300. }
  301. .center2 > div:nth-child(1) > div:nth-child(4) {
  302. background: url("../img/centerTop4.png") no-repeat center left; /*图标路径*/
  303. }
  304. .center3{
  305. position: absolute !important;
  306. overflow: hidden;
  307. width: 100%;
  308. height: 100%;
  309. z-index: 1;
  310. top: 0;
  311. left: 0;
  312. opacity: 0.4;
  313. /* display: none; */
  314. }
  315. .bgTooltip {
  316. overflow: hidden;
  317. padding: 10% 15% !important;
  318. margin: 0 !important;
  319. width: 450px;
  320. height: 250px;
  321. color: #fff;
  322. display: grid;
  323. grid-template-rows: repeat(3, 1fr);
  324. }
  325. .custom-tooltip-box {
  326. padding: 0 !important;
  327. border: none !important;
  328. background-color: transparent !important;
  329. }
  330. .blueIcon {
  331. font-size: 32px !important;
  332. }
  333. .blueIcon::before {
  334. content: "●";
  335. margin-right: 10px;
  336. color: #40a9ff;
  337. }
  338. .bottom-tip{
  339. background: url("../img/center-bottonm.png") no-repeat center left; /*图标路径*/
  340. background-size: 100% 100%;
  341. width: 1600px;
  342. height: 120px;
  343. position: absolute;
  344. bottom: 0;
  345. left: calc( 50% - 800px);
  346. }
  347. /* 公共css */
  348. /* 宽高纵横比 */
  349. .font28 {
  350. font-size: 28px;
  351. }
  352. .fb {
  353. font-weight: bold !important;
  354. }
  355. .fn {
  356. font-weight: normal !important;
  357. }
  358. .pointer {
  359. cursor: pointer;
  360. }
  361. i {
  362. font-style: normal !important;
  363. }
  364. .aspect-auto {
  365. aspect-ratio: auto;
  366. }
  367. .aspect-square {
  368. aspect-ratio: 1 / 1;
  369. }
  370. .aspect-video {
  371. aspect-ratio: 16 / 9;
  372. }
  373. /* aspect-[4/3] */
  374. /* 居中 */
  375. .mx-auto {
  376. margin: 0 auto;
  377. }
  378. /* 设置容器内的列数/每列距离 */
  379. .columns-1 {
  380. columns: 1;
  381. }
  382. /* columns-[20px] */
  383. /* 盒子模型 */
  384. .box-border {
  385. box-sizing: border-box;
  386. }
  387. .box-content {
  388. box-sizing: content-box;
  389. }
  390. /* 消失 */
  391. .hidden {
  392. display: none;
  393. }
  394. /* 块级元素 */
  395. .block {
  396. display: block;
  397. }
  398. /* 行内块 */
  399. .inline-block {
  400. display: inline-block;
  401. }
  402. /* 行内元素 */
  403. .inline {
  404. display: inline;
  405. }
  406. /* 弹性布局 */
  407. .flex {
  408. display: flex;
  409. }
  410. /* 主轴起点在左边 */
  411. .flex-row {
  412. flex-direction: row;
  413. }
  414. /* 主轴起点在右边 */
  415. .flex-row-reverse {
  416. flex-direction: row-reverse;
  417. }
  418. /* 主轴竖向排列,在上面 */
  419. .flex-col {
  420. flex-direction: column;
  421. }
  422. /* 主轴竖向排列,在下面 */
  423. .flex-col-reverse {
  424. flex-direction: column-reverse;
  425. }
  426. /* 自动换行 */
  427. .flex-wrap {
  428. flex-wrap: wrap;
  429. }
  430. /* 自动换行下起点 */
  431. .flex-wrap-reverse {
  432. flex-wrap: wrap-reverse;
  433. }
  434. /* 不换行 */
  435. .flex-nowrap {
  436. flex-wrap: nowrap;
  437. }
  438. /* 弹性成长 */
  439. .grow {
  440. flex-grow: 1;
  441. }
  442. /* 不允许弹性成长 */
  443. .grow-0 {
  444. flex-grow: 0;
  445. }
  446. /* 主轴从左开始 */
  447. .justify-start {
  448. justify-content: flex-start;
  449. }
  450. /* 主轴从右开始 */
  451. .justify-end {
  452. justify-content: flex-end;
  453. }
  454. /* 主轴剧中 */
  455. .justify-center {
  456. justify-content: center;
  457. }
  458. /* 主轴两端无间隔 */
  459. .justify-between {
  460. justify-content: space-between;
  461. }
  462. /* 主轴两端有间隔 */
  463. .justify-around {
  464. justify-content: space-around;
  465. }
  466. /* 所有间隔相等 */
  467. .justify-evenly {
  468. justify-content: space-evenly;
  469. }
  470. /* 纵向起点最上方 */
  471. .items-start {
  472. align-items: flex-start;
  473. }
  474. /* 纵向起点最下方 */
  475. .items-end {
  476. align-items: flex-end;
  477. }
  478. .items-center {
  479. align-items: center;
  480. }
  481. /* 网格布局 */
  482. .grid {
  483. display: grid;
  484. }
  485. /* 有几列 */
  486. .grid-cols-4 {
  487. grid-template-columns: repeat(4, minmax(0, 1fr));
  488. grid-template-columns: repeat(4, 1fr);
  489. }
  490. /* 有几行 */
  491. .grid-rows-3 {
  492. grid-template-rows: repeat(3, minmax(0, 1fr));
  493. grid-template-rows: repeat(3, 1fr);
  494. }
  495. /* 容器中的内容上下布局 */
  496. .grid-center {
  497. align-items: center;
  498. }
  499. /* 间距 */
  500. .gap-7 {
  501. gap: 1.75rem;
  502. }
  503. /* 允许弹性成长 */
  504. .shrink {
  505. flex-shrink: 1;
  506. }
  507. /* 不允许弹性成长 */
  508. .shrink-0 {
  509. flex-shrink: 0;
  510. }
  511. /* 不允许成长也不允许收缩 */
  512. .flex-none {
  513. flex: none;
  514. }
  515. /* 浮动布局 */
  516. .float-right {
  517. float: right;
  518. }
  519. .float-left {
  520. float: left;
  521. }
  522. .clear-both {
  523. clear: both;
  524. }
  525. /* 溢出 */
  526. .overflow-auto {
  527. overflow: auto;
  528. }
  529. .overflow-hidden {
  530. overflow: hidden;
  531. }
  532. .overflow-scroll {
  533. overflow: scroll;
  534. }
  535. .overflow-x-auto {
  536. overflow-x: auto;
  537. }
  538. .overflow-y-auto {
  539. overflow-y: auto;
  540. }
  541. /* 定位 */
  542. .fixed {
  543. position: fixed;
  544. }
  545. .absolute {
  546. position: absolute;
  547. }
  548. .relative {
  549. position: relative;
  550. }
  551. .top-0 {
  552. top: 0px;
  553. }
  554. .right-0 {
  555. right: 0px;
  556. }
  557. .bottom-0 {
  558. bottom: 0px;
  559. }
  560. .left-0 {
  561. left: 0px;
  562. }
  563. /* top-[3px] */
  564. /* z-[100] */
  565. /* 显示隐藏未脱离文档流 */
  566. .visible {
  567. visibility: visible;
  568. }
  569. .invisible {
  570. visibility: hidden;
  571. }
  572. /* 内边距 */
  573. .p-0 {
  574. padding: 0px;
  575. }
  576. .px-0 {
  577. padding-left: 0px;
  578. padding-right: 0px;
  579. }
  580. .py-0 {
  581. padding-top: 0px;
  582. padding-bottom: 0px;
  583. }
  584. .pt-0 {
  585. padding-top: 0px;
  586. }
  587. .pr-0 {
  588. padding-right: 0px;
  589. }
  590. .pb-0 {
  591. padding-bottom: 0px;
  592. }
  593. .pl-0 {
  594. padding-left: 0px;
  595. }
  596. /* p-[5px] */
  597. /* 外边距 */
  598. .m-0 {
  599. margin: 0px;
  600. }
  601. .mx-0 {
  602. margin-left: 0px;
  603. margin-right: 0px;
  604. }
  605. .my-0 {
  606. margin-top: 0px;
  607. margin-bottom: 0px;
  608. }
  609. .mt-0 {
  610. margin-top: 0px;
  611. }
  612. .mr-0 {
  613. margin-right: 0px;
  614. }
  615. .mb-0 {
  616. margin-bottom: 0px;
  617. }
  618. .ml-0 {
  619. margin-left: 0px;
  620. }
  621. /* m-[5px] */
  622. /* 宽度 */
  623. .w-full {
  624. width: 100%;
  625. }
  626. .w-screen {
  627. width: 100vw;
  628. }
  629. /* w-[32rem] */
  630. /* min-w-[50%] */
  631. /* max-w-[50%] */
  632. /* 高度 */
  633. .h-full {
  634. height: 100%;
  635. }
  636. .h-screen {
  637. height: 100vh;
  638. }
  639. /* h-[32rem] */
  640. /* min-h-[50%] */
  641. /* max-h-[32rem] */
  642. /* 字体 */
  643. .text-xs {
  644. font-size: 0.75rem; /* 12px */
  645. line-height: 1rem; /* 16px */
  646. }
  647. .text-sm {
  648. font-size: 0.875rem; /* 14px */
  649. line-height: 1.25rem; /* 20px */
  650. }
  651. .text-base {
  652. font-size: 1rem; /* 16px */
  653. line-height: 1.5rem; /* 24px */
  654. }
  655. .text-lg {
  656. font-size: 1.125rem; /* 18px */
  657. line-height: 1.75rem; /* 28px */
  658. }
  659. .text-xl {
  660. font-size: 1.25rem; /* 20px */
  661. line-height: 1.75rem; /* 28px */
  662. }
  663. .text-2xl {
  664. font-size: 1.5rem; /* 24px */
  665. line-height: 2rem; /* 32px */
  666. }
  667. .text-3xl {
  668. font-size: 1.875rem; /* 30px */
  669. line-height: 2.25rem; /* 36px */
  670. }
  671. .text-4xl {
  672. font-size: 2.25rem; /* 36px */
  673. line-height: 2.5rem; /* 40px */
  674. }
  675. .text-5xl {
  676. font-size: 3rem; /* 48px */
  677. line-height: 1;
  678. }
  679. .text-6xl {
  680. font-size: 3.75rem; /* 60px */
  681. line-height: 1;
  682. }
  683. .text-7xl {
  684. font-size: 4.5rem; /* 72px */
  685. line-height: 1;
  686. }
  687. .text-8xl {
  688. font-size: 6rem; /* 96px */
  689. line-height: 1;
  690. }
  691. .text-9xl {
  692. font-size: 8rem; /* 128px */
  693. line-height: 1;
  694. }
  695. /* text-[14px] */
  696. /* 字体粗细font-weight */
  697. /* font-[1100] */
  698. /* https://tailwindcss.com/docs/font-weight */
  699. /* 字体间距letter-spacing */
  700. /* tracking-[.25em] */
  701. /* 行高line-height */
  702. /* leading-[3rem] */
  703. /* 无列表样式 */
  704. .list-none {
  705. list-style-type: none;
  706. }
  707. /* 小圆点 */
  708. .list-disc {
  709. list-style-type: disc;
  710. }
  711. /* 数字列表 */
  712. .list-decimal {
  713. list-style-type: decimal;
  714. }
  715. .text-left {
  716. text-align: left;
  717. }
  718. .text-center {
  719. text-align: center;
  720. }
  721. .text-right {
  722. text-align: right;
  723. }
  724. /* 所有文本头尾对齐 */
  725. .text-justify {
  726. text-align: justify;
  727. }
  728. /* 文本颜色 */
  729. /* text-[#50d71e] */
  730. /* https://tailwindcss.com/docs/text-color */
  731. /* 下划线 */
  732. .underline {
  733. text-decoration-line: underline;
  734. }
  735. /* 上划线 */
  736. .overline {
  737. text-decoration-line: overline;
  738. }
  739. /* 中划线 */
  740. .line-through {
  741. text-decoration-line: line-through;
  742. }
  743. /* 无划线 */
  744. .no-underline {
  745. text-decoration-line: none;
  746. }
  747. /* 全小写 */
  748. .lowercase {
  749. text-transform: lowercase;
  750. }
  751. /* 全大写 */
  752. .uppercase {
  753. text-transform: uppercase;
  754. }
  755. /* 首字母大写 */
  756. .capitalize {
  757. text-transform: capitalize;
  758. }
  759. /* right css start */
  760. .right {
  761. display: grid;
  762. grid-template-rows: 20% 34% 1fr;
  763. gap: 10px;
  764. }
  765. .right .means {
  766. grid-column: 1 / 3;
  767. display: flex;
  768. }
  769. .wrapMeansItem {
  770. display: flex;
  771. justify-content: space-around;
  772. align-items: center;
  773. flex: 1;
  774. }
  775. .meansHead {
  776. font-size: 2rem;
  777. font-family: Source Han Sans CN;
  778. font-weight: 500;
  779. color: #ffffff;
  780. display: flex;
  781. align-items: center;
  782. }
  783. .meansHead img {
  784. width: 3rem;
  785. height: 2.5rem;
  786. margin-right: 1.25rem;
  787. }
  788. .meansWrap {
  789. width: 80%;
  790. display: flex;
  791. flex-direction: column;
  792. }
  793. .itemWid {
  794. width: calc(100% / 8);
  795. height: 100%;
  796. display: flex;
  797. align-items: flex-end;
  798. position: relative;
  799. }
  800. .itemWid img {
  801. position: absolute;
  802. right: -95px;
  803. bottom: 15px;
  804. width: 100px;
  805. }
  806. .itemBac {
  807. background: url(../img/3.png) no-repeat;
  808. background-size: 100% 100%;
  809. font-size: 1.75rem;
  810. font-family: Source Han Sans CN;
  811. font-weight: 400;
  812. color: #ffffff;
  813. height: calc(100% - 1.75rem);
  814. width: 100%;
  815. position: relative;
  816. }
  817. .itemBac div {
  818. font-size: 72px;
  819. line-height: 60px;
  820. font-family: Helvetica Neue Extra Black Cond;
  821. font-weight: 400;
  822. color: #68bdff;
  823. position: absolute;
  824. top: 75px;
  825. left: 110px;
  826. display: flex;
  827. align-items: flex-end;
  828. }
  829. .itemBac div p {
  830. font-size: 28px;
  831. line-height: 28px;
  832. margin-left: 10px;
  833. }
  834. .itemBac span {
  835. position: absolute;
  836. bottom: 0;
  837. left: 0;
  838. width: 100%;
  839. text-align: center;
  840. }
  841. .active .itemBac {
  842. background: url(../img/5.png) no-repeat;
  843. background-size: 100% 100%;
  844. }
  845. .active .itemBac span,
  846. .active .itemBac div {
  847. color: #ebde27;
  848. }
  849. .publicTitle {
  850. width: 100%;
  851. height: calc(100% / 7);
  852. overflow: hidden;
  853. background: url("../img/small-title.png") no-repeat center bottom; /*图标路径*/
  854. background-size: 100% 50%;
  855. display: flex;
  856. align-items: center;
  857. padding-left: 7%;
  858. font-size: 36px;
  859. font-style: oblique;
  860. text-shadow: 2px 3px 1px black;
  861. letter-spacing: 5px;
  862. }
  863. .progressCost {
  864. display: flex;
  865. justify-content: space-between;
  866. align-items: center;
  867. width: 100%;
  868. height: calc(100% - 100% / 7);
  869. overflow: hidden;
  870. padding: 1%;
  871. }
  872. .progressCost .costItem {
  873. width: 30%;
  874. height: 100%;
  875. }
  876. .progressCost .costItem .itemTop {
  877. background: url(../img/70.png) no-repeat;
  878. background-size: 100% 100%;
  879. height: 76%;
  880. display: flex;
  881. flex-direction: column;
  882. justify-content: center;
  883. align-items: center;
  884. }
  885. .itemTop p {
  886. font-size: 1.75rem;
  887. font-family: Source Han Sans CN;
  888. font-weight: 400;
  889. color: #ffffff;
  890. position: relative;
  891. }
  892. .itemTop p::after {
  893. content: "";
  894. width: 0.75rem;
  895. height: 0.75rem;
  896. background: linear-gradient(0deg, #014198, #93ceff);
  897. border-radius: 50%;
  898. position: absolute;
  899. left: -1.25rem;
  900. top: 50%;
  901. transform: translateY(-50%);
  902. }
  903. .itemTop .topDiv {
  904. padding-left: 1.25rem;
  905. min-width: 220px;
  906. }
  907. .costNum {
  908. font-family: Helvetica Neue Extra Black Cond;
  909. font-weight: 400;
  910. color: #68bdff;
  911. display: flex;
  912. align-items: flex-end;
  913. margin-top: 1rem;
  914. font-size: 60px;
  915. line-height: 48px;
  916. font-weight: bold;
  917. color: #68bdff;
  918. }
  919. .costNum span {
  920. font-size: 28px;
  921. line-height: 28px;
  922. margin-left: 0.625rem;
  923. }
  924. .progressCost .costItem .itemBottom {
  925. background: url(../img/71.png) no-repeat;
  926. background-size: 100% 100%;
  927. height: 24%;
  928. display: flex;
  929. align-items: center;
  930. justify-content: space-around;
  931. }
  932. .progressCost .costItem .itemBottom div {
  933. font-size: 2rem;
  934. font-family: Source Han Sans CN;
  935. font-weight: 500;
  936. color: #ffffff;
  937. }
  938. .costItem .itemBottom img {
  939. width: 2rem;
  940. height: 1.625rem;
  941. position: relative;
  942. }
  943. .aniLeft {
  944. animation: identifierl 1s infinite;
  945. }
  946. .aniRight {
  947. animation: identifierr 1s infinite;
  948. }
  949. @keyframes identifierl {
  950. 0% {
  951. left: 0;
  952. }
  953. 50% {
  954. left: 1.25rem;
  955. }
  956. 100% {
  957. left: 0;
  958. }
  959. }
  960. @keyframes identifierr {
  961. 0% {
  962. left: 0;
  963. }
  964. 50% {
  965. left: -1.25rem;
  966. }
  967. 100% {
  968. left: 0;
  969. }
  970. }
  971. .invest {
  972. display: flex;
  973. justify-content: space-around;
  974. align-items: center;
  975. height: calc(100% - 100% / 7);
  976. }
  977. .invest .lp {
  978. width: 53%;
  979. height: calc(100% - 2rem);
  980. display: flex;
  981. align-items: center;
  982. position: relative;
  983. background: url(../img/10.png) no-repeat;
  984. background-size: contain;
  985. background-position: center;
  986. margin: 1rem 0;
  987. }
  988. .lp img {
  989. position: absolute;
  990. width: 100px;
  991. height: 100px;
  992. top: 50%;
  993. left: 50%;
  994. transform: translate(-50%, -50%);
  995. }
  996. .quan {
  997. width: 150px;
  998. height: 150px;
  999. border: 1px dashed #66bbfc;
  1000. border-radius: 50%;
  1001. position: absolute;
  1002. left: 50%;
  1003. top: 50%;
  1004. transform: translate(-50%, -50%);
  1005. }
  1006. .bigq {
  1007. width: 420px;
  1008. height: 420px;
  1009. border: 1px dashed #66bbfc;
  1010. border-radius: 50%;
  1011. position: absolute;
  1012. left: 50%;
  1013. top: 50%;
  1014. transform: translate(-50%, -50%);
  1015. }
  1016. .invest .lp .plItem {
  1017. position: absolute;
  1018. top: 0;
  1019. width: 100%;
  1020. height: 100%;
  1021. font-size: 28px;
  1022. line-height: 28px;
  1023. font-family: Source Han Sans CN;
  1024. font-weight: bold;
  1025. color: #68bdff;
  1026. transform-origin: center center;
  1027. background: url(../img/11.png) no-repeat;
  1028. background-size: contain;
  1029. background-position: center;
  1030. transition: 0.5s;
  1031. }
  1032. .plItem .active {
  1033. color: #ebde27;
  1034. }
  1035. .invest .lp .plItem div {
  1036. position: absolute;
  1037. left: 130px;
  1038. top: 50%;
  1039. transform-origin: 200px 50%;
  1040. cursor: pointer;
  1041. }
  1042. .investInfoWrap {
  1043. display: flex;
  1044. flex-direction: column;
  1045. justify-content: space-around;
  1046. padding: 2.375rem 0;
  1047. height: 100%;
  1048. }
  1049. .investInfoWrap .investInfo {
  1050. font-size: 28px;
  1051. line-height: 28px;
  1052. font-family: Source Han Sans CN;
  1053. font-weight: 400;
  1054. color: #ffffff;
  1055. display: flex;
  1056. align-items: flex-end;
  1057. position: relative;
  1058. padding-left: 20px;
  1059. }
  1060. .investInfoWrap .investInfo::after {
  1061. content: "";
  1062. width: 20px;
  1063. height: 20px;
  1064. border: 4px solid #68bdff;
  1065. border-radius: 50%;
  1066. position: absolute;
  1067. top: 50%;
  1068. transform: translateY(-50%);
  1069. left: -10px;
  1070. }
  1071. .investInfoWrap .investInfo span {
  1072. font-size: 40px;
  1073. line-height: 31px;
  1074. display: inline-block;
  1075. font-family: Helvetica Neue Extra Black Cond;
  1076. font-weight: 400;
  1077. color: #68bdff;
  1078. margin: 0 16px;
  1079. }
  1080. .echartsWrap {
  1081. height: calc(100% - 100% / 7);
  1082. }
  1083. .projectRisk {
  1084. display: grid;
  1085. grid-template-columns: repeat(2, 1fr);
  1086. grid-template-rows: repeat(2, 1fr);
  1087. gap: 10px;
  1088. width: 100%;
  1089. height: calc(100% - 100% / 7);
  1090. }
  1091. .projectRisk .riskWrap {
  1092. height: 100%;
  1093. width: 100%;
  1094. }
  1095. .projectRisk .longRisk {
  1096. grid-column: 1 / 3;
  1097. }
  1098. /* right css end */