index.css 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273
  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. .chinaTop{
  410. width: 100%;
  411. height: 8.5%;
  412. position: absolute;
  413. top: 3%;
  414. z-index: 999;
  415. display: grid;
  416. grid-template-columns: repeat(4,1fr);
  417. }
  418. .chinaTop>div:nth-child(1){
  419. background: url("../img/centerTop1.png") no-repeat center left; /*图标路径*/
  420. background-size: 100% 100%;
  421. }
  422. .chinaTop>div:nth-child(2){
  423. background: url("../img/centerTop2.png") no-repeat center left; /*图标路径*/
  424. background-size: 100% 100%;
  425. }
  426. .chinaTop>div:nth-child(3){
  427. background: url("../img/centerTop3.png") no-repeat center left; /*图标路径*/
  428. background-size: 100% 100%;
  429. }
  430. .chinaTop>div:nth-child(4){
  431. background: url("../img/centerTop4.png") no-repeat center left; /*图标路径*/
  432. background-size: 100% 100%;
  433. }
  434. /* 公共css */
  435. /* 宽高纵横比 */
  436. .font28 {
  437. font-size: 28px;
  438. }
  439. .fb {
  440. font-weight: bold !important;
  441. }
  442. .fn {
  443. font-weight: normal !important;
  444. }
  445. .pointer {
  446. cursor: pointer;
  447. }
  448. i {
  449. font-style: normal !important;
  450. }
  451. .aspect-auto {
  452. aspect-ratio: auto;
  453. }
  454. .aspect-square {
  455. aspect-ratio: 1 / 1;
  456. }
  457. .aspect-video {
  458. aspect-ratio: 16 / 9;
  459. }
  460. /* aspect-[4/3] */
  461. /* 居中 */
  462. .mx-auto {
  463. margin: 0 auto;
  464. }
  465. /* 设置容器内的列数/每列距离 */
  466. .columns-1 {
  467. columns: 1;
  468. }
  469. /* columns-[20px] */
  470. /* 盒子模型 */
  471. .box-border {
  472. box-sizing: border-box;
  473. }
  474. .box-content {
  475. box-sizing: content-box;
  476. }
  477. /* 消失 */
  478. .hidden {
  479. display: none;
  480. }
  481. /* 块级元素 */
  482. .block {
  483. display: block;
  484. }
  485. /* 行内块 */
  486. .inline-block {
  487. display: inline-block;
  488. }
  489. /* 行内元素 */
  490. .inline {
  491. display: inline;
  492. }
  493. /* 弹性布局 */
  494. .flex {
  495. display: flex;
  496. }
  497. /* 主轴起点在左边 */
  498. .flex-row {
  499. flex-direction: row;
  500. }
  501. /* 主轴起点在右边 */
  502. .flex-row-reverse {
  503. flex-direction: row-reverse;
  504. }
  505. /* 主轴竖向排列,在上面 */
  506. .flex-col {
  507. flex-direction: column;
  508. }
  509. /* 主轴竖向排列,在下面 */
  510. .flex-col-reverse {
  511. flex-direction: column-reverse;
  512. }
  513. /* 自动换行 */
  514. .flex-wrap {
  515. flex-wrap: wrap;
  516. }
  517. /* 自动换行下起点 */
  518. .flex-wrap-reverse {
  519. flex-wrap: wrap-reverse;
  520. }
  521. /* 不换行 */
  522. .flex-nowrap {
  523. flex-wrap: nowrap;
  524. }
  525. /* 弹性成长 */
  526. .grow {
  527. flex-grow: 1;
  528. }
  529. /* 不允许弹性成长 */
  530. .grow-0 {
  531. flex-grow: 0;
  532. }
  533. /* 主轴从左开始 */
  534. .justify-start {
  535. justify-content: flex-start;
  536. }
  537. /* 主轴从右开始 */
  538. .justify-end {
  539. justify-content: flex-end;
  540. }
  541. /* 主轴剧中 */
  542. .justify-center {
  543. justify-content: center;
  544. }
  545. /* 主轴两端无间隔 */
  546. .justify-between {
  547. justify-content: space-between;
  548. }
  549. /* 主轴两端有间隔 */
  550. .justify-around {
  551. justify-content: space-around;
  552. }
  553. /* 所有间隔相等 */
  554. .justify-evenly {
  555. justify-content: space-evenly;
  556. }
  557. /* 纵向起点最上方 */
  558. .items-start {
  559. align-items: flex-start;
  560. }
  561. /* 纵向起点最下方 */
  562. .items-end {
  563. align-items: flex-end;
  564. }
  565. .items-center {
  566. align-items: center;
  567. }
  568. /* 网格布局 */
  569. .grid {
  570. display: grid;
  571. }
  572. /* 有几列 */
  573. .grid-cols-4 {
  574. grid-template-columns: repeat(4, minmax(0, 1fr));
  575. grid-template-columns: repeat(4, 1fr);
  576. }
  577. /* 有几行 */
  578. .grid-rows-3 {
  579. grid-template-rows: repeat(3, minmax(0, 1fr));
  580. grid-template-rows: repeat(3, 1fr);
  581. }
  582. /* 容器中的内容上下布局 */
  583. .grid-center {
  584. align-items: center;
  585. }
  586. /* 间距 */
  587. .gap-7 {
  588. gap: 1.75rem;
  589. }
  590. /* 允许弹性成长 */
  591. .shrink {
  592. flex-shrink: 1;
  593. }
  594. /* 不允许弹性成长 */
  595. .shrink-0 {
  596. flex-shrink: 0;
  597. }
  598. /* 不允许成长也不允许收缩 */
  599. .flex-none {
  600. flex: none;
  601. }
  602. /* 浮动布局 */
  603. .float-right {
  604. float: right;
  605. }
  606. .float-left {
  607. float: left;
  608. }
  609. .clear-both {
  610. clear: both;
  611. }
  612. /* 溢出 */
  613. .overflow-auto {
  614. overflow: auto;
  615. }
  616. .overflow-hidden {
  617. overflow: hidden;
  618. }
  619. .overflow-scroll {
  620. overflow: scroll;
  621. }
  622. .overflow-x-auto {
  623. overflow-x: auto;
  624. }
  625. .overflow-y-auto {
  626. overflow-y: auto;
  627. }
  628. /* 定位 */
  629. .fixed {
  630. position: fixed;
  631. }
  632. .absolute {
  633. position: absolute;
  634. }
  635. .relative {
  636. position: relative;
  637. }
  638. .top-0 {
  639. top: 0px;
  640. }
  641. .right-0 {
  642. right: 0px;
  643. }
  644. .bottom-0 {
  645. bottom: 0px;
  646. }
  647. .left-0 {
  648. left: 0px;
  649. }
  650. /* top-[3px] */
  651. /* z-[100] */
  652. /* 显示隐藏未脱离文档流 */
  653. .visible {
  654. visibility: visible;
  655. }
  656. .invisible {
  657. visibility: hidden;
  658. }
  659. /* 内边距 */
  660. .p-0 {
  661. padding: 0px;
  662. }
  663. .px-0 {
  664. padding-left: 0px;
  665. padding-right: 0px;
  666. }
  667. .py-0 {
  668. padding-top: 0px;
  669. padding-bottom: 0px;
  670. }
  671. .pt-0 {
  672. padding-top: 0px;
  673. }
  674. .pr-0 {
  675. padding-right: 0px;
  676. }
  677. .pb-0 {
  678. padding-bottom: 0px;
  679. }
  680. .pl-0 {
  681. padding-left: 0px;
  682. }
  683. /* p-[5px] */
  684. /* 外边距 */
  685. .m-0 {
  686. margin: 0px;
  687. }
  688. .mx-0 {
  689. margin-left: 0px;
  690. margin-right: 0px;
  691. }
  692. .my-0 {
  693. margin-top: 0px;
  694. margin-bottom: 0px;
  695. }
  696. .mt-0 {
  697. margin-top: 0px;
  698. }
  699. .mr-0 {
  700. margin-right: 0px;
  701. }
  702. .mb-0 {
  703. margin-bottom: 0px;
  704. }
  705. .ml-0 {
  706. margin-left: 0px;
  707. }
  708. /* m-[5px] */
  709. /* 宽度 */
  710. .w-full {
  711. width: 100%;
  712. }
  713. .w-screen {
  714. width: 100vw;
  715. }
  716. /* w-[32rem] */
  717. /* min-w-[50%] */
  718. /* max-w-[50%] */
  719. /* 高度 */
  720. .h-full {
  721. height: 100%;
  722. }
  723. .h-screen {
  724. height: 100vh;
  725. }
  726. /* h-[32rem] */
  727. /* min-h-[50%] */
  728. /* max-h-[32rem] */
  729. /* 字体 */
  730. .text-xs {
  731. font-size: 0.75rem; /* 12px */
  732. line-height: 1rem; /* 16px */
  733. }
  734. .text-sm {
  735. font-size: 0.875rem; /* 14px */
  736. line-height: 1.25rem; /* 20px */
  737. }
  738. .text-base {
  739. font-size: 1rem; /* 16px */
  740. line-height: 1.5rem; /* 24px */
  741. }
  742. .text-lg {
  743. font-size: 1.125rem; /* 18px */
  744. line-height: 1.75rem; /* 28px */
  745. }
  746. .text-xl {
  747. font-size: 1.25rem; /* 20px */
  748. line-height: 1.75rem; /* 28px */
  749. }
  750. .text-2xl {
  751. font-size: 1.5rem; /* 24px */
  752. line-height: 2rem; /* 32px */
  753. }
  754. .text-3xl {
  755. font-size: 1.875rem; /* 30px */
  756. line-height: 2.25rem; /* 36px */
  757. }
  758. .text-4xl {
  759. font-size: 2.25rem; /* 36px */
  760. line-height: 2.5rem; /* 40px */
  761. }
  762. .text-5xl {
  763. font-size: 3rem; /* 48px */
  764. line-height: 1;
  765. }
  766. .text-6xl {
  767. font-size: 3.75rem; /* 60px */
  768. line-height: 1;
  769. }
  770. .text-7xl {
  771. font-size: 4.5rem; /* 72px */
  772. line-height: 1;
  773. }
  774. .text-8xl {
  775. font-size: 6rem; /* 96px */
  776. line-height: 1;
  777. }
  778. .text-9xl {
  779. font-size: 8rem; /* 128px */
  780. line-height: 1;
  781. }
  782. /* text-[14px] */
  783. /* 字体粗细font-weight */
  784. /* font-[1100] */
  785. /* https://tailwindcss.com/docs/font-weight */
  786. /* 字体间距letter-spacing */
  787. /* tracking-[.25em] */
  788. /* 行高line-height */
  789. /* leading-[3rem] */
  790. /* 无列表样式 */
  791. .list-none {
  792. list-style-type: none;
  793. }
  794. /* 小圆点 */
  795. .list-disc {
  796. list-style-type: disc;
  797. }
  798. /* 数字列表 */
  799. .list-decimal {
  800. list-style-type: decimal;
  801. }
  802. .text-left {
  803. text-align: left;
  804. }
  805. .text-center {
  806. text-align: center;
  807. }
  808. .text-right {
  809. text-align: right;
  810. }
  811. /* 所有文本头尾对齐 */
  812. .text-justify {
  813. text-align: justify;
  814. }
  815. /* 文本颜色 */
  816. /* text-[#50d71e] */
  817. /* https://tailwindcss.com/docs/text-color */
  818. /* 下划线 */
  819. .underline {
  820. text-decoration-line: underline;
  821. }
  822. /* 上划线 */
  823. .overline {
  824. text-decoration-line: overline;
  825. }
  826. /* 中划线 */
  827. .line-through {
  828. text-decoration-line: line-through;
  829. }
  830. /* 无划线 */
  831. .no-underline {
  832. text-decoration-line: none;
  833. }
  834. /* 全小写 */
  835. .lowercase {
  836. text-transform: lowercase;
  837. }
  838. /* 全大写 */
  839. .uppercase {
  840. text-transform: uppercase;
  841. }
  842. /* 首字母大写 */
  843. .capitalize {
  844. text-transform: capitalize;
  845. }
  846. /* right css start */
  847. .right {
  848. display: grid;
  849. grid-template-rows: 20% 34% 1fr;
  850. gap: 10px;
  851. }
  852. .right .means {
  853. grid-column: 1 / 3;
  854. display: flex;
  855. }
  856. .wrapMeansItem {
  857. display: flex;
  858. justify-content: space-around;
  859. align-items: center;
  860. flex: 1;
  861. }
  862. .meansHead {
  863. font-size: 2rem;
  864. font-family: Source Han Sans CN;
  865. font-weight: 500;
  866. color: #ffffff;
  867. display: flex;
  868. align-items: center;
  869. }
  870. .meansHead img {
  871. width: 3rem;
  872. height: 2.5rem;
  873. margin-right: 1.25rem;
  874. }
  875. .meansWrap {
  876. width: 75%;
  877. display: flex;
  878. flex-direction: column;
  879. }
  880. .itemWid {
  881. width: calc(100% / 6);
  882. height: 100%;
  883. display: flex;
  884. align-items: flex-end;
  885. position: relative;
  886. }
  887. .itemWid2 {
  888. width: calc(100% / 2);
  889. height: 100%;
  890. display: flex;
  891. align-items: flex-end;
  892. position: relative;
  893. }
  894. .itemWid2 img {
  895. position: absolute;
  896. right: -70px;
  897. bottom: 15px;
  898. width: 120px;
  899. }
  900. .itemWid img {
  901. position: absolute;
  902. right: -65px;
  903. bottom: 15px;
  904. width: 120px;
  905. }
  906. .itemBac {
  907. background: url(../img/3.png) no-repeat;
  908. background-size: 100% 100%;
  909. background-position: center;
  910. font-size: 1.75rem;
  911. font-family: Source Han Sans CN;
  912. font-weight: 400;
  913. color: #ffffff;
  914. height: calc(100% - 1.75rem);
  915. width: 100%;
  916. position: relative;
  917. }
  918. .itemBac2 {
  919. background: url(../img/4.png) no-repeat;
  920. background-size: 100% 100%;
  921. background-position: center;
  922. }
  923. .itemBac div {
  924. font-size: 72px;
  925. line-height: 60px;
  926. font-family: Helvetica Neue Extra Black Cond;
  927. font-weight: bold;
  928. color: #68bdff;
  929. position: absolute;
  930. top: 75px;
  931. left: 148px;
  932. display: flex;
  933. align-items: flex-end;
  934. }
  935. .itemBac2 div {
  936. color: #5bdcc8;
  937. }
  938. .itemBac div p {
  939. font-size: 28px;
  940. line-height: 28px;
  941. margin-left: 10px;
  942. }
  943. .itemBac span {
  944. position: absolute;
  945. bottom: 0;
  946. left: 0;
  947. width: 100%;
  948. text-align: center;
  949. }
  950. .active .itemBac {
  951. background: url(../img/5.png) no-repeat;
  952. background-size: 100% 100%;
  953. }
  954. .active .itemBac span,
  955. .active .itemBac div {
  956. color: #ebde27;
  957. }
  958. .publicTitle {
  959. width: 100%;
  960. height: 100px;
  961. overflow: hidden;
  962. background: url("../img/small-title.png") no-repeat center bottom; /*图标路径*/
  963. background-size: 100% 50%;
  964. display: flex;
  965. align-items: center;
  966. padding-left: 7%;
  967. font-size: 36px;
  968. font-style: oblique;
  969. text-shadow: 2px 3px 1px black;
  970. letter-spacing: 5px;
  971. }
  972. .progressCost {
  973. display: flex;
  974. justify-content: space-between;
  975. align-items: center;
  976. width: 100%;
  977. height: calc(100% - 100% / 7);
  978. overflow: hidden;
  979. padding: 1%;
  980. }
  981. .progressCost .costItem {
  982. width: 30%;
  983. height: 100%;
  984. }
  985. .progressCost .costItem .itemTop {
  986. background: url(../img/70.png) no-repeat;
  987. background-size: 100% 100%;
  988. height: 76%;
  989. display: flex;
  990. flex-direction: column;
  991. justify-content: center;
  992. align-items: center;
  993. }
  994. .itemTop p {
  995. font-size: 1.75rem;
  996. font-family: Source Han Sans CN;
  997. font-weight: 400;
  998. color: #ffffff;
  999. position: relative;
  1000. }
  1001. .itemTop p::after {
  1002. content: "";
  1003. width: 0.75rem;
  1004. height: 0.75rem;
  1005. background: linear-gradient(0deg, #014198, #93ceff);
  1006. border-radius: 50%;
  1007. position: absolute;
  1008. left: -1.25rem;
  1009. top: 50%;
  1010. transform: translateY(-50%);
  1011. }
  1012. .itemTop .topDiv {
  1013. padding-left: 1.25rem;
  1014. min-width: 220px;
  1015. }
  1016. .costNum {
  1017. font-family: Helvetica Neue Extra Black Cond;
  1018. font-weight: 400;
  1019. color: #68bdff;
  1020. display: flex;
  1021. align-items: flex-end;
  1022. margin-top: 1rem;
  1023. font-size: 60px;
  1024. line-height: 48px;
  1025. font-weight: bold;
  1026. color: #68bdff;
  1027. }
  1028. .costNum span {
  1029. font-size: 28px;
  1030. line-height: 28px;
  1031. margin-left: 0.625rem;
  1032. }
  1033. .progressCost .costItem .itemBottom {
  1034. background: url(../img/71.png) no-repeat;
  1035. background-size: 100% 100%;
  1036. height: 24%;
  1037. display: flex;
  1038. align-items: center;
  1039. justify-content: space-around;
  1040. }
  1041. .progressCost .costItem .itemBottom div {
  1042. font-size: 2rem;
  1043. font-family: Source Han Sans CN;
  1044. font-weight: 500;
  1045. color: #ffffff;
  1046. }
  1047. .costItem .itemBottom img {
  1048. width: 2rem;
  1049. height: 1.625rem;
  1050. position: relative;
  1051. }
  1052. .aniLeft {
  1053. animation: identifierl 1s infinite;
  1054. }
  1055. .aniRight {
  1056. animation: identifierr 1s infinite;
  1057. }
  1058. @keyframes identifierl {
  1059. 0% {
  1060. left: 0;
  1061. }
  1062. 50% {
  1063. left: 1.25rem;
  1064. }
  1065. 100% {
  1066. left: 0;
  1067. }
  1068. }
  1069. @keyframes identifierr {
  1070. 0% {
  1071. left: 0;
  1072. }
  1073. 50% {
  1074. left: -1.25rem;
  1075. }
  1076. 100% {
  1077. left: 0;
  1078. }
  1079. }
  1080. .invest {
  1081. display: flex;
  1082. justify-content: space-around;
  1083. align-items: center;
  1084. height: calc(100% - 100% / 7);
  1085. }
  1086. .invest .lp {
  1087. width: 53%;
  1088. height: calc(100% - 2rem);
  1089. display: flex;
  1090. align-items: center;
  1091. position: relative;
  1092. background: url(../img/10.png) no-repeat;
  1093. background-size: contain;
  1094. background-position: center;
  1095. margin: 1rem 0;
  1096. }
  1097. .lp img {
  1098. position: absolute;
  1099. width: 100px;
  1100. height: 100px;
  1101. top: 50%;
  1102. left: 50%;
  1103. transform: translate(-50%, -50%);
  1104. }
  1105. .quan {
  1106. width: 150px;
  1107. height: 150px;
  1108. border: 1px dashed #66bbfc;
  1109. border-radius: 50%;
  1110. position: absolute;
  1111. left: 50%;
  1112. top: 50%;
  1113. transform: translate(-50%, -50%);
  1114. }
  1115. .bigq {
  1116. width: 420px;
  1117. height: 420px;
  1118. border: 1px dashed #66bbfc;
  1119. border-radius: 50%;
  1120. position: absolute;
  1121. left: 50%;
  1122. top: 50%;
  1123. transform: translate(-50%, -50%);
  1124. }
  1125. .invest .lp .plItem {
  1126. position: absolute;
  1127. top: 0;
  1128. width: 100%;
  1129. height: 100%;
  1130. font-size: 28px;
  1131. line-height: 28px;
  1132. font-family: Source Han Sans CN;
  1133. font-weight: bold;
  1134. color: #68bdff;
  1135. transform-origin: center center;
  1136. background: url(../img/11.png) no-repeat;
  1137. background-size: contain;
  1138. background-position: center;
  1139. transition: 0.5s;
  1140. }
  1141. .plItem .active {
  1142. color: #ebde27;
  1143. }
  1144. .invest .lp .plItem div {
  1145. position: absolute;
  1146. left: 130px;
  1147. top: 50%;
  1148. transform-origin: 200px 50%;
  1149. cursor: pointer;
  1150. }
  1151. .investInfoWrap {
  1152. display: flex;
  1153. flex-direction: column;
  1154. justify-content: space-around;
  1155. padding: 2.375rem 0;
  1156. height: 100%;
  1157. }
  1158. .investInfoWrap .investInfo {
  1159. font-size: 28px;
  1160. line-height: 28px;
  1161. font-family: Source Han Sans CN;
  1162. font-weight: 400;
  1163. color: #ffffff;
  1164. display: flex;
  1165. align-items: flex-end;
  1166. position: relative;
  1167. padding-left: 20px;
  1168. }
  1169. .investInfoWrap .investInfo::after {
  1170. content: "";
  1171. width: 20px;
  1172. height: 20px;
  1173. border: 4px solid #68bdff;
  1174. border-radius: 50%;
  1175. position: absolute;
  1176. top: 50%;
  1177. transform: translateY(-50%);
  1178. left: -10px;
  1179. }
  1180. .investInfoWrap .investInfo span {
  1181. font-size: 40px;
  1182. line-height: 31px;
  1183. display: inline-block;
  1184. font-family: Helvetica Neue Extra Black Cond;
  1185. font-weight: 400;
  1186. color: #68bdff;
  1187. margin: 0 16px;
  1188. }
  1189. .echartsWrap {
  1190. height: calc(100% - 100% / 7);
  1191. }
  1192. .projectRisk {
  1193. display: grid;
  1194. grid-template-columns: repeat(2, 1fr);
  1195. grid-template-rows: repeat(2, 1fr);
  1196. gap: 10px;
  1197. width: 100%;
  1198. height: calc(100% - 100% / 7);
  1199. }
  1200. .projectRisk .riskWrap {
  1201. height: 100%;
  1202. width: 100%;
  1203. }
  1204. .projectRisk .longRisk {
  1205. grid-column: 1 / 3;
  1206. }
  1207. .shareholding {
  1208. flex: 1;
  1209. display: flex;
  1210. flex-direction: column;
  1211. }
  1212. /* right css end */