index.css 22 KB

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