index.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750
  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-bg.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. }
  92. .left,
  93. .right {
  94. display: grid;
  95. grid-template-columns: repeat(2, 1fr);
  96. grid-template-rows: repeat(3, 1fr);
  97. gap: 10px;
  98. height: 100%;
  99. width: 100%;
  100. overflow: hidden;
  101. }
  102. .left > div,
  103. .center > div,
  104. .right > div {
  105. width: 100%;
  106. height: 100%;
  107. overflow: hidden;
  108. }
  109. .left .title,
  110. .center .title {
  111. width: 100%;
  112. /* height: calc(100% / 7); */
  113. height: 100px;
  114. overflow: hidden;
  115. background: url('../img/small-title.png') no-repeat center bottom; /*图标路径*/
  116. background-size: 100% 50%;
  117. display: flex;
  118. align-items: center;
  119. padding-left: 7%;
  120. font-size: 36px;
  121. font-style: oblique;
  122. text-shadow: 2px 3px 1px black;
  123. letter-spacing: 5px;
  124. }
  125. .left .child > div:nth-child(1):before {
  126. content: '●';
  127. margin-right: 10px;
  128. color: #40a9ff;
  129. }
  130. .left .content,
  131. .center .content {
  132. width: 100%;
  133. height: calc(100% - 100px);
  134. overflow: hidden;
  135. padding: 1%;
  136. }
  137. .left1 {
  138. display: grid;
  139. grid-template-rows: 1fr 1.6fr;
  140. }
  141. .left1 > div:first-child {
  142. display: flex;
  143. align-items: center;
  144. justify-content: space-around;
  145. }
  146. .left1 .child {
  147. width: 47%;
  148. height: 100%;
  149. background: url('../img/left1.png') no-repeat center center; /*图标路径*/
  150. background-size: 100% 100%;
  151. display: grid;
  152. grid-template-columns: repeat(2, 1fr);
  153. grid-template-rows: repeat(3, 1fr);
  154. padding: 1% 3%;
  155. align-items: center;
  156. }
  157. .left1B {
  158. display: grid;
  159. grid-template-columns: 4fr 6fr;
  160. overflow: hidden;
  161. }
  162. .left1B > div:nth-child(1) {
  163. overflow: hidden;
  164. background: url('../img/disk.png') no-repeat center center; /*图标路径*/
  165. background-size: 100% 100%;
  166. }
  167. .left1C {
  168. display: grid;
  169. grid-template-rows: 1fr 2fr 2fr;
  170. overflow: hidden;
  171. }
  172. .left1C-child {
  173. padding: 1%;
  174. }
  175. .checkBg {
  176. background: url('../img/disk.png') no-repeat center center; /*图标路径*/
  177. background-size: 100% 100%;
  178. }
  179. .left .industryProportion1,
  180. .left2 .industryProportion1 {
  181. background: url('../img/industryProportion.png') no-repeat center center; /*图标路径*/
  182. background-size: 100% 100%;
  183. }
  184. .left .industryProportion2 {
  185. background-color: #1f3152;
  186. }
  187. .left2 .industryProportion2 {
  188. background-color: #264580;
  189. }
  190. .left2 {
  191. display: grid;
  192. grid-template-rows: 3fr 17fr;
  193. }
  194. .left3 {
  195. display: grid;
  196. grid-template-columns: 9fr 11fr;
  197. }
  198. .left4 {
  199. width: 100%;
  200. height: 100%;
  201. overflow: hidden;
  202. position: relative;
  203. display: grid;
  204. grid-template-columns: repeat(2, 1fr);
  205. }
  206. .left4A {
  207. width: 100%;
  208. height: 100%;
  209. overflow: hidden;
  210. position: absolute;
  211. }
  212. .left4A > div,
  213. .bubble {
  214. position: absolute;
  215. animation: moveUpDown 4s infinite;
  216. }
  217. @keyframes moveUpDown {
  218. 0% {
  219. transform: translateY(0);
  220. }
  221. 50% {
  222. transform: translateY(-10px);
  223. }
  224. 100% {
  225. transform: translateY(0);
  226. }
  227. }
  228. .center {
  229. display: grid;
  230. grid-template-columns: 33fr 50fr 33fr;
  231. height: 95%;
  232. width: 100%;
  233. overflow: hidden;
  234. gap: 10px;
  235. }
  236. .center > div:nth-child(1),
  237. .center > div:nth-child(3) {
  238. display: grid;
  239. grid-template-rows: repeat(3, 1fr);
  240. overflow: hidden;
  241. }
  242. .center1 {
  243. display: grid;
  244. grid-template-rows: 7fr 13fr;
  245. overflow: hidden;
  246. }
  247. .center1 > div:nth-child(2) {
  248. background: url('../img/bubbleBg.png') no-repeat center center; /*图标路径*/
  249. background-size: 100% 100%;
  250. }
  251. .center1 > div:nth-child(3) {
  252. background: url('../img/blueBig.png') no-repeat center center; /*图标路径*/
  253. background-size: 100% 100%;
  254. }
  255. .center1 > div:nth-child(4) {
  256. background: url('../img/blueSmall.png') no-repeat center center; /*图标路径*/
  257. background-size: 100% 100%;
  258. }
  259. .center1 > div:nth-child(5) {
  260. background: url('../img/greenSmall.png') no-repeat center center; /*图标路径*/
  261. background-size: 100% 100%;
  262. }
  263. .center1 > div:nth-child(6) {
  264. background: url('../img/greenBig.png') no-repeat center center; /*图标路径*/
  265. background-size: 100% 100%;
  266. }
  267. .center2 {
  268. display: grid;
  269. grid-template-rows: 1fr 4fr;
  270. overflow: hidden;
  271. }
  272. .center2 > div:nth-child(1) > div {
  273. width: 100%;
  274. height: 100%;
  275. overflow: hidden;
  276. }
  277. .center2 > div:nth-child(1) {
  278. display: grid;
  279. grid-template-rows: repeat(2, 1fr);
  280. grid-template-columns: repeat(2, 1fr);
  281. gap: 10px;
  282. overflow: hidden;
  283. }
  284. .center2 > div:nth-child(1) > div:nth-child(1) {
  285. background: url('../img/centerTop1.png') no-repeat center left; /*图标路径*/
  286. background-size: 140% 100%;
  287. overflow: hidden;
  288. }
  289. .center2 > div:nth-child(1) > div:nth-child(2) {
  290. background: url('../img/centerTop2.png') no-repeat center left; /*图标路径*/
  291. background-size: 140% 100%;
  292. overflow: hidden;
  293. }
  294. .center2 > div:nth-child(1) > div:nth-child(3) {
  295. background: url('../img/centerTop3.png') no-repeat center left; /*图标路径*/
  296. background-size: 140% 100%;
  297. overflow: hidden;
  298. }
  299. .center2 > div:nth-child(1) > div:nth-child(4) {
  300. background: url('../img/centerTop4.png') no-repeat center left; /*图标路径*/
  301. background-size: 140% 100%;
  302. overflow: hidden;
  303. }
  304. .bgTooltip {
  305. overflow: hidden;
  306. padding: 10% 15% !important;
  307. margin: 0 !important;
  308. width: 450px;
  309. height: 250px;
  310. color: #fff;
  311. display: grid;
  312. grid-template-rows: repeat(3, 1fr);
  313. }
  314. .custom-tooltip-box {
  315. padding: 0 !important;
  316. border: none !important;
  317. background-color: transparent !important;
  318. }
  319. .blueIcon{
  320. font-size: 32px !important;
  321. }
  322. .blueIcon::before{
  323. content: '●';
  324. margin-right: 10px;
  325. color: #40a9ff;
  326. }
  327. /* 公共css */
  328. /* 宽高纵横比 */
  329. .font28 {
  330. font-size: 28px;
  331. }
  332. .fb {
  333. font-weight: bold !important;
  334. }
  335. .fn{
  336. font-weight: normal !important;
  337. }
  338. .pointer {
  339. cursor: pointer;
  340. }
  341. i {
  342. font-style: normal !important;
  343. }
  344. .aspect-auto {
  345. aspect-ratio: auto;
  346. }
  347. .aspect-square {
  348. aspect-ratio: 1 / 1;
  349. }
  350. .aspect-video {
  351. aspect-ratio: 16 / 9;
  352. }
  353. /* aspect-[4/3] */
  354. /* 居中 */
  355. .mx-auto {
  356. margin: 0 auto;
  357. }
  358. /* 设置容器内的列数/每列距离 */
  359. .columns-1 {
  360. columns: 1;
  361. }
  362. /* columns-[20px] */
  363. /* 盒子模型 */
  364. .box-border {
  365. box-sizing: border-box;
  366. }
  367. .box-content {
  368. box-sizing: content-box;
  369. }
  370. /* 消失 */
  371. .hidden {
  372. display: none;
  373. }
  374. /* 块级元素 */
  375. .block {
  376. display: block;
  377. }
  378. /* 行内块 */
  379. .inline-block {
  380. display: inline-block;
  381. }
  382. /* 行内元素 */
  383. .inline {
  384. display: inline;
  385. }
  386. /* 弹性布局 */
  387. .flex {
  388. display: flex;
  389. }
  390. /* 主轴起点在左边 */
  391. .flex-row {
  392. flex-direction: row;
  393. }
  394. /* 主轴起点在右边 */
  395. .flex-row-reverse {
  396. flex-direction: row-reverse;
  397. }
  398. /* 主轴竖向排列,在上面 */
  399. .flex-col {
  400. flex-direction: column;
  401. }
  402. /* 主轴竖向排列,在下面 */
  403. .flex-col-reverse {
  404. flex-direction: column-reverse;
  405. }
  406. /* 自动换行 */
  407. .flex-wrap {
  408. flex-wrap: wrap;
  409. }
  410. /* 自动换行下起点 */
  411. .flex-wrap-reverse {
  412. flex-wrap: wrap-reverse;
  413. }
  414. /* 不换行 */
  415. .flex-nowrap {
  416. flex-wrap: nowrap;
  417. }
  418. /* 弹性成长 */
  419. .grow {
  420. flex-grow: 1;
  421. }
  422. /* 不允许弹性成长 */
  423. .grow-0 {
  424. flex-grow: 0;
  425. }
  426. /* 主轴从左开始 */
  427. .justify-start {
  428. justify-content: flex-start;
  429. }
  430. /* 主轴从右开始 */
  431. .justify-end {
  432. justify-content: flex-end;
  433. }
  434. /* 主轴剧中 */
  435. .justify-center {
  436. justify-content: center;
  437. }
  438. /* 主轴两端无间隔 */
  439. .justify-between {
  440. justify-content: space-between;
  441. }
  442. /* 主轴两端有间隔 */
  443. .justify-around {
  444. justify-content: space-around;
  445. }
  446. /* 所有间隔相等 */
  447. .justify-evenly {
  448. justify-content: space-evenly;
  449. }
  450. /* 纵向起点最上方 */
  451. .items-start {
  452. align-items: flex-start;
  453. }
  454. /* 纵向起点最下方 */
  455. .items-end {
  456. align-items: flex-end;
  457. }
  458. .items-center {
  459. align-items: center;
  460. }
  461. /* 网格布局 */
  462. .grid {
  463. display: grid;
  464. }
  465. /* 有几列 */
  466. .grid-cols-4 {
  467. grid-template-columns: repeat(4, minmax(0, 1fr));
  468. grid-template-columns: repeat(4, 1fr);
  469. }
  470. /* 有几行 */
  471. .grid-rows-3 {
  472. grid-template-rows: repeat(3, minmax(0, 1fr));
  473. grid-template-rows: repeat(3, 1fr);
  474. }
  475. /* 容器中的内容上下布局 */
  476. .grid-center {
  477. align-items: center;
  478. }
  479. /* 间距 */
  480. .gap-7 {
  481. gap: 1.75rem;
  482. }
  483. /* 允许弹性成长 */
  484. .shrink {
  485. flex-shrink: 1;
  486. }
  487. /* 不允许弹性成长 */
  488. .shrink-0 {
  489. flex-shrink: 0;
  490. }
  491. /* 不允许成长也不允许收缩 */
  492. .flex-none {
  493. flex: none;
  494. }
  495. /* 浮动布局 */
  496. .float-right {
  497. float: right;
  498. }
  499. .float-left {
  500. float: left;
  501. }
  502. .clear-both {
  503. clear: both;
  504. }
  505. /* 溢出 */
  506. .overflow-auto {
  507. overflow: auto;
  508. }
  509. .overflow-hidden {
  510. overflow: hidden;
  511. }
  512. .overflow-scroll {
  513. overflow: scroll;
  514. }
  515. .overflow-x-auto {
  516. overflow-x: auto;
  517. }
  518. .overflow-y-auto {
  519. overflow-y: auto;
  520. }
  521. /* 定位 */
  522. .fixed {
  523. position: fixed;
  524. }
  525. .absolute {
  526. position: absolute;
  527. }
  528. .relative {
  529. position: relative;
  530. }
  531. .top-0 {
  532. top: 0px;
  533. }
  534. .right-0 {
  535. right: 0px;
  536. }
  537. .bottom-0 {
  538. bottom: 0px;
  539. }
  540. .left-0 {
  541. left: 0px;
  542. }
  543. /* top-[3px] */
  544. /* z-[100] */
  545. /* 显示隐藏未脱离文档流 */
  546. .visible {
  547. visibility: visible;
  548. }
  549. .invisible {
  550. visibility: hidden;
  551. }
  552. /* 内边距 */
  553. .p-0 {
  554. padding: 0px;
  555. }
  556. .px-0 {
  557. padding-left: 0px;
  558. padding-right: 0px;
  559. }
  560. .py-0 {
  561. padding-top: 0px;
  562. padding-bottom: 0px;
  563. }
  564. .pt-0 {
  565. padding-top: 0px;
  566. }
  567. .pr-0 {
  568. padding-right: 0px;
  569. }
  570. .pb-0 {
  571. padding-bottom: 0px;
  572. }
  573. .pl-0 {
  574. padding-left: 0px;
  575. }
  576. /* p-[5px] */
  577. /* 外边距 */
  578. .m-0 {
  579. margin: 0px;
  580. }
  581. .mx-0 {
  582. margin-left: 0px;
  583. margin-right: 0px;
  584. }
  585. .my-0 {
  586. margin-top: 0px;
  587. margin-bottom: 0px;
  588. }
  589. .mt-0 {
  590. margin-top: 0px;
  591. }
  592. .mr-0 {
  593. margin-right: 0px;
  594. }
  595. .mb-0 {
  596. margin-bottom: 0px;
  597. }
  598. .ml-0 {
  599. margin-left: 0px;
  600. }
  601. /* m-[5px] */
  602. /* 宽度 */
  603. .w-full {
  604. width: 100%;
  605. }
  606. .w-screen {
  607. width: 100vw;
  608. }
  609. /* w-[32rem] */
  610. /* min-w-[50%] */
  611. /* max-w-[50%] */
  612. /* 高度 */
  613. .h-full {
  614. height: 100%;
  615. }
  616. .h-screen {
  617. height: 100vh;
  618. }
  619. /* h-[32rem] */
  620. /* min-h-[50%] */
  621. /* max-h-[32rem] */
  622. /* 字体 */
  623. .text-xs {
  624. font-size: 0.75rem; /* 12px */
  625. line-height: 1rem; /* 16px */
  626. }
  627. .text-sm {
  628. font-size: 0.875rem; /* 14px */
  629. line-height: 1.25rem; /* 20px */
  630. }
  631. .text-base {
  632. font-size: 1rem; /* 16px */
  633. line-height: 1.5rem; /* 24px */
  634. }
  635. .text-lg {
  636. font-size: 1.125rem; /* 18px */
  637. line-height: 1.75rem; /* 28px */
  638. }
  639. .text-xl {
  640. font-size: 1.25rem; /* 20px */
  641. line-height: 1.75rem; /* 28px */
  642. }
  643. .text-2xl {
  644. font-size: 1.5rem; /* 24px */
  645. line-height: 2rem; /* 32px */
  646. }
  647. .text-3xl {
  648. font-size: 1.875rem; /* 30px */
  649. line-height: 2.25rem; /* 36px */
  650. }
  651. .text-4xl {
  652. font-size: 2.25rem; /* 36px */
  653. line-height: 2.5rem; /* 40px */
  654. }
  655. .text-5xl {
  656. font-size: 3rem; /* 48px */
  657. line-height: 1;
  658. }
  659. .text-6xl {
  660. font-size: 3.75rem; /* 60px */
  661. line-height: 1;
  662. }
  663. .text-7xl {
  664. font-size: 4.5rem; /* 72px */
  665. line-height: 1;
  666. }
  667. .text-8xl {
  668. font-size: 6rem; /* 96px */
  669. line-height: 1;
  670. }
  671. .text-9xl {
  672. font-size: 8rem; /* 128px */
  673. line-height: 1;
  674. }
  675. /* text-[14px] */
  676. /* 字体粗细font-weight */
  677. /* font-[1100] */
  678. /* https://tailwindcss.com/docs/font-weight */
  679. /* 字体间距letter-spacing */
  680. /* tracking-[.25em] */
  681. /* 行高line-height */
  682. /* leading-[3rem] */
  683. /* 无列表样式 */
  684. .list-none {
  685. list-style-type: none;
  686. }
  687. /* 小圆点 */
  688. .list-disc {
  689. list-style-type: disc;
  690. }
  691. /* 数字列表 */
  692. .list-decimal {
  693. list-style-type: decimal;
  694. }
  695. .text-left {
  696. text-align: left;
  697. }
  698. .text-center {
  699. text-align: center;
  700. }
  701. .text-right {
  702. text-align: right;
  703. }
  704. /* 所有文本头尾对齐 */
  705. .text-justify {
  706. text-align: justify;
  707. }
  708. /* 文本颜色 */
  709. /* text-[#50d71e] */
  710. /* https://tailwindcss.com/docs/text-color */
  711. /* 下划线 */
  712. .underline {
  713. text-decoration-line: underline;
  714. }
  715. /* 上划线 */
  716. .overline {
  717. text-decoration-line: overline;
  718. }
  719. /* 中划线 */
  720. .line-through {
  721. text-decoration-line: line-through;
  722. }
  723. /* 无划线 */
  724. .no-underline {
  725. text-decoration-line: none;
  726. }
  727. /* 全小写 */
  728. .lowercase {
  729. text-transform: lowercase;
  730. }
  731. /* 全大写 */
  732. .uppercase {
  733. text-transform: uppercase;
  734. }
  735. /* 首字母大写 */
  736. .capitalize {
  737. text-transform: capitalize;
  738. }