index.css 21 KB

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