index.css 24 KB

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