investHome5.css 11 KB

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