index.css 27 KB

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