index.css 27 KB

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