index.css 26 KB

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