investHome5.css 11 KB

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