index.css 25 KB

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