index.css 28 KB

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