investHome5.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. *,
  2. *:before,
  3. *:after {
  4. padding: 0;
  5. margin: 0;
  6. box-sizing: border-box;
  7. }
  8. html,
  9. body {
  10. height: 100%;
  11. font-size: 14px;
  12. background-color: #ecffff;
  13. font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, 'PingFang SC',
  14. 'Hiragino Sans GB', Arial, sans-serif;
  15. }
  16. .flex {
  17. display: flex;
  18. }
  19. .flex1 {
  20. flex: 1;
  21. }
  22. .flex2 {
  23. flex: 2;
  24. }
  25. .flex-around {
  26. display: flex;
  27. justify-content: space-around;
  28. }
  29. .flex-between {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. }
  34. .flex-end {
  35. display: flex;
  36. justify-content: flex-end;
  37. }
  38. .flex-align-center {
  39. display: flex;
  40. align-items: center;
  41. }
  42. .text-center {
  43. text-align: center;
  44. }
  45. .font12 {
  46. font-size: 12px;
  47. }
  48. .main-color {
  49. color: #0bf1ff;
  50. }
  51. .danger-color {
  52. color: #f15450 !important;
  53. }
  54. .error-color {
  55. color: #ffc704 !important;
  56. }
  57. .btm10 {
  58. margin-bottom: 10px;
  59. }
  60. .btm20 {
  61. margin-bottom: 20px;
  62. }
  63. a {
  64. text-decoration: none;
  65. cursor: pointer;
  66. }
  67. [v-cloak] {
  68. display: none;
  69. }
  70. #app {
  71. background: url('../images/page-bg.png') center center no-repeat;
  72. background-size: 100% 100%;
  73. padding-top: 10px;
  74. height: 100vh;
  75. overflow: hidden;
  76. color: #fff;
  77. }
  78. .my-header {
  79. position: relative;
  80. height: 70px;
  81. line-height: 70px;
  82. background: url('../images/header-bg.png') center center no-repeat;
  83. background-size: 100% 100%;
  84. text-align: center;
  85. font-weight: bold;
  86. font-size: 32px;
  87. font-weight: 600;
  88. }
  89. .my-header span {
  90. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  91. -webkit-background-clip: text;
  92. -webkit-text-fill-color: transparent;
  93. }
  94. .my-header span.right {
  95. position: absolute;
  96. right: 60px;
  97. top: 0px;
  98. font-size: 16px;
  99. }
  100. .main {
  101. padding: 15px;
  102. height: calc(100vh - 25px);
  103. background: url('../images3/back-big.png') no-repeat center bottom;
  104. display: grid;
  105. grid-template-rows: 1fr 1.6fr 2fr;
  106. gap: 10px;
  107. padding-bottom: 65px;
  108. }
  109. .main > div {
  110. width: 100%;
  111. height: 100%;
  112. overflow: hidden;
  113. }
  114. .top {
  115. display: grid;
  116. grid-template-columns: 2fr 1fr;
  117. gap: 10px;
  118. }
  119. .panel-title {
  120. position: relative;
  121. text-align: center;
  122. height: 50px;
  123. line-height: 50px;
  124. }
  125. .panel-title .text {
  126. font-size: 20px;
  127. font-weight: 600;
  128. color: #05fbfe;
  129. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  130. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  131. -webkit-background-clip: text;
  132. -webkit-text-fill-color: transparent;
  133. position: relative;
  134. }
  135. .panel-title .text::before {
  136. position: absolute;
  137. content: ' ';
  138. top: 10px;
  139. left: -40px;
  140. width: 30px;
  141. height: 10px;
  142. background: url('../images/title-left.png') no-repeat;
  143. }
  144. .panel-title .text::after {
  145. position: absolute;
  146. content: ' ';
  147. top: 10px;
  148. right: -40px;
  149. width: 30px;
  150. height: 10px;
  151. background: url('../images/title-right.png') no-repeat;
  152. }
  153. .topBack {
  154. background: url('../images5/langBack.png') no-repeat;
  155. background-size: 100% 100%;
  156. }
  157. .topBackR{
  158. background: url('../images5/back1.png') no-repeat;
  159. background-size: 100% 100%;
  160. }
  161. .center,
  162. .foot {
  163. display: grid;
  164. grid-template-columns: repeat(2, 1fr);
  165. gap: 10px;
  166. }
  167. .centerBack {
  168. background: url('../images5/back2.png') no-repeat;
  169. background-size: 100% 100%;
  170. }
  171. .top-lb {
  172. height: calc(100% - 50px);
  173. padding: 0px 30px;
  174. display: grid;
  175. grid-template-columns: repeat(11, 1fr);
  176. gap: 10px;
  177. }
  178. .top-rb {
  179. height: calc(100% - 50px);
  180. padding: 0px 30px;
  181. display: grid;
  182. grid-template-columns: repeat(3, 1fr);
  183. gap: 10px;
  184. }
  185. .topCard > div:first-child {
  186. width: 100px;
  187. height: 100px;
  188. background-size: 100% 100%;
  189. }
  190. .top-lb > .topCard:nth-child(odd) > div:first-child {
  191. background: url('../images5/completed.png') no-repeat center;
  192. background-size: 95% 95%;
  193. }
  194. .top-rb > .topCard:nth-child(odd) > div:first-child {
  195. background: url('../images5/completed.png') no-repeat center;
  196. background-size: 100% 100%;
  197. }
  198. .top-lb > .topCard:nth-child(even) > div:first-child {
  199. background: url('../images5/completedDot.png') no-repeat;
  200. background-size: 100% auto;
  201. background-position: 0 20%;
  202. }
  203. .top-rb > .topCard:nth-child(even) > div:first-child {
  204. background: url('../images5/completedDot.png') no-repeat;
  205. background-size: 100% auto;
  206. background-position: 0 20%;
  207. }
  208. .topCard > span {
  209. height: calc(100% - 90px);
  210. margin-top: 5px;
  211. }
  212. .center-l {
  213. display: grid;
  214. grid-template-columns: repeat(3, 1fr);
  215. gap: 10px;
  216. }
  217. .center-l > div {
  218. background: url('../images5/center-left-list-back.png') no-repeat;
  219. background-size: 100% 100%;
  220. text-align: center;
  221. padding: 10%;
  222. }
  223. .center-l-title {
  224. width: 100%;
  225. height: 10%;
  226. margin-top: 5%;
  227. font-size: 16px;
  228. font-weight: bold;
  229. }
  230. .center-l-list{
  231. height: 30%;
  232. margin: 10% 0;
  233. background: url('../images5/project.png') no-repeat;
  234. background-size: 100% 100%;
  235. }
  236. .center-l-list2{
  237. height: 30%;
  238. background: url('../images5/pin.png') no-repeat;
  239. background-size: 100% 100%;
  240. }
  241. .foot-b{
  242. display: grid;
  243. grid-template-rows: repeat(2, 1fr);
  244. gap: 10px;
  245. padding: 10px;
  246. }
  247. .foot-bt{
  248. display: grid;
  249. grid-template-columns: repeat(2, 1fr);
  250. gap: 10px;
  251. }
  252. .ldMap{
  253. display: grid;
  254. grid-template-columns: 1.5fr 1fr;
  255. gap: 10px;
  256. }
  257. .center-left-bottom-list {
  258. border: 1px solid #06345e;
  259. }
  260. .center-left-bottom-list > span {
  261. display: inline-block;
  262. padding: 5px 30px;
  263. cursor: pointer;
  264. }
  265. .center-left-bottom-list > span:hover {
  266. color: #2abbff;
  267. }
  268. .center-left-bottom-list > span:nth-child(odd) {
  269. background-color: #1a426c;
  270. }
  271. /* zhb */
  272. /* 宽高纵横比 */
  273. .aspect-auto {
  274. aspect-ratio: auto;
  275. }
  276. .aspect-square {
  277. aspect-ratio: 1 / 1;
  278. }
  279. .aspect-video {
  280. aspect-ratio: 16 / 9;
  281. }
  282. /* aspect-[4/3] */
  283. /* 居中 */
  284. .mx-auto {
  285. margin: 0 auto;
  286. }
  287. /* 设置容器内的列数/每列距离 */
  288. .columns-1 {
  289. columns: 1;
  290. }
  291. /* columns-[20px] */
  292. /* 盒子模型 */
  293. .box-border {
  294. box-sizing: border-box;
  295. }
  296. .box-content {
  297. box-sizing: content-box;
  298. }
  299. /* 消失 */
  300. .hidden {
  301. display: none;
  302. }
  303. /* 块级元素 */
  304. .block {
  305. display: block;
  306. }
  307. /* 行内块 */
  308. .inline-block {
  309. display: inline-block;
  310. }
  311. /* 行内元素 */
  312. .inline {
  313. display: inline;
  314. }
  315. /* 弹性布局 */
  316. .flex {
  317. display: flex;
  318. }
  319. /* 主轴起点在左边 */
  320. .flex-row {
  321. flex-direction: row;
  322. }
  323. /* 主轴起点在右边 */
  324. .flex-row-reverse {
  325. flex-direction: row-reverse;
  326. }
  327. /* 主轴竖向排列,在上面 */
  328. .flex-col {
  329. flex-direction: column;
  330. }
  331. /* 主轴竖向排列,在下面 */
  332. .flex-col-reverse {
  333. flex-direction: column-reverse;
  334. }
  335. /* 自动换行 */
  336. .flex-wrap {
  337. flex-wrap: wrap;
  338. }
  339. /* 自动换行下起点 */
  340. .flex-wrap-reverse {
  341. flex-wrap: wrap-reverse;
  342. }
  343. /* 不换行 */
  344. .flex-nowrap {
  345. flex-wrap: nowrap;
  346. }
  347. /* 弹性成长 */
  348. .grow {
  349. flex-grow: 1;
  350. }
  351. /* 不允许弹性成长 */
  352. .grow-0 {
  353. flex-grow: 0;
  354. }
  355. /* 主轴从左开始 */
  356. .justify-start {
  357. justify-content: flex-start;
  358. }
  359. /* 主轴从右开始 */
  360. .justify-end {
  361. justify-content: flex-end;
  362. }
  363. /* 主轴剧中 */
  364. .justify-center {
  365. justify-content: center;
  366. }
  367. /* 主轴两端无间隔 */
  368. .justify-between {
  369. justify-content: space-between;
  370. }
  371. /* 主轴两端有间隔 */
  372. .justify-around {
  373. justify-content: space-around;
  374. }
  375. /* 所有间隔相等 */
  376. .justify-evenly {
  377. justify-content: space-evenly;
  378. }
  379. /* 纵向起点最上方 */
  380. .items-start {
  381. align-items: flex-start;
  382. }
  383. /* 纵向起点最下方 */
  384. .items-end {
  385. align-items: flex-end;
  386. }
  387. .items-center {
  388. align-items: center;
  389. }
  390. /* 网格布局 */
  391. .grid {
  392. display: grid;
  393. }
  394. /* 有几列 */
  395. .grid-cols-4 {
  396. grid-template-columns: repeat(4, minmax(0, 1fr));
  397. }
  398. /* 有几行 */
  399. .grid-rows-3 {
  400. grid-template-rows: repeat(3, minmax(0, 1fr));
  401. }
  402. /* 间距 */
  403. .gap-7 {
  404. gap: 1.75rem;
  405. }
  406. /* 允许弹性成长 */
  407. .shrink {
  408. flex-shrink: 1;
  409. }
  410. /* 不允许弹性成长 */
  411. .shrink-0 {
  412. flex-shrink: 0;
  413. }
  414. /* 不允许成长也不允许收缩 */
  415. .flex-none {
  416. flex: none;
  417. }
  418. /* 浮动布局 */
  419. .float-right {
  420. float: right;
  421. }
  422. .float-left {
  423. float: left;
  424. }
  425. .clear-both {
  426. clear: both;
  427. }
  428. /* 溢出 */
  429. .overflow-auto {
  430. overflow: auto;
  431. }
  432. .overflow-hidden {
  433. overflow: hidden;
  434. }
  435. .overflow-scroll {
  436. overflow: scroll;
  437. }
  438. .overflow-x-auto {
  439. overflow-x: auto;
  440. }
  441. .overflow-y-auto {
  442. overflow-y: auto;
  443. }
  444. /* 定位 */
  445. .fixed {
  446. position: fixed;
  447. }
  448. .absolute {
  449. position: absolute;
  450. }
  451. .relative {
  452. position: relative;
  453. }
  454. .top-0 {
  455. top: 0px;
  456. }
  457. .right-0 {
  458. right: 0px;
  459. }
  460. .bottom-0 {
  461. bottom: 0px;
  462. }
  463. .left-0 {
  464. left: 0px;
  465. }
  466. /* top-[3px] */
  467. /* z-[100] */
  468. /* 显示隐藏未脱离文档流 */
  469. .visible {
  470. visibility: visible;
  471. }
  472. .invisible {
  473. visibility: hidden;
  474. }
  475. /* 内边距 */
  476. .p-0 {
  477. padding: 0px;
  478. }
  479. .px-0 {
  480. padding-left: 0px;
  481. padding-right: 0px;
  482. }
  483. .py-0 {
  484. padding-top: 0px;
  485. padding-bottom: 0px;
  486. }
  487. .pt-0 {
  488. padding-top: 0px;
  489. }
  490. .pr-0 {
  491. padding-right: 0px;
  492. }
  493. .pb-0 {
  494. padding-bottom: 0px;
  495. }
  496. .pl-0 {
  497. padding-left: 0px;
  498. }
  499. /* p-[5px] */
  500. /* 外边距 */
  501. .m-0 {
  502. margin: 0px;
  503. }
  504. .mx-0 {
  505. margin-left: 0px;
  506. margin-right: 0px;
  507. }
  508. .my-0 {
  509. margin-top: 0px;
  510. margin-bottom: 0px;
  511. }
  512. .mt-0 {
  513. margin-top: 0px;
  514. }
  515. .mr-0 {
  516. margin-right: 0px;
  517. }
  518. .mb-0 {
  519. margin-bottom: 0px;
  520. }
  521. .ml-0 {
  522. margin-left: 0px;
  523. }
  524. /* m-[5px] */
  525. /* 宽度 */
  526. .w-full {
  527. width: 100%;
  528. }
  529. .w-screen {
  530. width: 100vw;
  531. }
  532. /* w-[32rem] */
  533. /* min-w-[50%] */
  534. /* max-w-[50%] */
  535. /* 高度 */
  536. .h-full {
  537. height: 100%;
  538. }
  539. .h-screen {
  540. height: 100vh;
  541. }
  542. /* h-[32rem] */
  543. /* min-h-[50%] */
  544. /* max-h-[32rem] */
  545. /* 字体 */
  546. .text-xs {
  547. font-size: 0.75rem; /* 12px */
  548. line-height: 1rem; /* 16px */
  549. }
  550. .text-sm {
  551. font-size: 0.875rem; /* 14px */
  552. line-height: 1.25rem; /* 20px */
  553. }
  554. .text-base {
  555. font-size: 1rem; /* 16px */
  556. line-height: 1.5rem; /* 24px */
  557. }
  558. .text-lg {
  559. font-size: 1.125rem; /* 18px */
  560. line-height: 1.75rem; /* 28px */
  561. }
  562. .text-xl {
  563. font-size: 1.25rem; /* 20px */
  564. line-height: 1.75rem; /* 28px */
  565. }
  566. .text-2xl {
  567. font-size: 1.5rem; /* 24px */
  568. line-height: 2rem; /* 32px */
  569. }
  570. .text-3xl {
  571. font-size: 1.875rem; /* 30px */
  572. line-height: 2.25rem; /* 36px */
  573. }
  574. .text-4xl {
  575. font-size: 2.25rem; /* 36px */
  576. line-height: 2.5rem; /* 40px */
  577. }
  578. .text-5xl {
  579. font-size: 3rem; /* 48px */
  580. line-height: 1;
  581. }
  582. .text-6xl {
  583. font-size: 3.75rem; /* 60px */
  584. line-height: 1;
  585. }
  586. .text-7xl {
  587. font-size: 4.5rem; /* 72px */
  588. line-height: 1;
  589. }
  590. .text-8xl {
  591. font-size: 6rem; /* 96px */
  592. line-height: 1;
  593. }
  594. .text-9xl {
  595. font-size: 8rem; /* 128px */
  596. line-height: 1;
  597. }
  598. /* text-[14px] */
  599. /* 字体粗细font-weight */
  600. /* font-[1100] */
  601. /* https://tailwindcss.com/docs/font-weight */
  602. /* 字体间距letter-spacing */
  603. /* tracking-[.25em] */
  604. /* 行高line-height */
  605. /* leading-[3rem] */
  606. /* 无列表样式 */
  607. .list-none {
  608. list-style-type: none;
  609. }
  610. /* 小圆点 */
  611. .list-disc {
  612. list-style-type: disc;
  613. }
  614. /* 数字列表 */
  615. .list-decimal {
  616. list-style-type: decimal;
  617. }
  618. .text-left {
  619. text-align: left;
  620. }
  621. .text-center {
  622. text-align: center;
  623. }
  624. .text-right {
  625. text-align: right;
  626. }
  627. /* 所有文本头尾对齐 */
  628. .text-justify {
  629. text-align: justify;
  630. }
  631. /* 文本颜色 */
  632. /* text-[#50d71e] */
  633. /* https://tailwindcss.com/docs/text-color */
  634. /* 下划线 */
  635. .underline {
  636. text-decoration-line: underline;
  637. }
  638. /* 上划线 */
  639. .overline {
  640. text-decoration-line: overline;
  641. }
  642. /* 中划线 */
  643. .line-through {
  644. text-decoration-line: line-through;
  645. }
  646. /* 无划线 */
  647. .no-underline {
  648. text-decoration-line: none;
  649. }
  650. /* 全小写 */
  651. .lowercase {
  652. text-transform: lowercase;
  653. }
  654. /* 全大写 */
  655. .uppercase {
  656. text-transform: uppercase;
  657. }
  658. /* 首字母大写 */
  659. .capitalize {
  660. text-transform: capitalize;
  661. }