investHome5.css 11 KB

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