index.css 23 KB

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