index.css 26 KB

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