index.css 23 KB

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