index.css 20 KB

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