investHome2.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  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. width: 100%;
  104. overflow: hidden;
  105. background: url('../images/page-bg.png') no-repeat center bottom;
  106. display: flex;
  107. padding-bottom: 65px;
  108. }
  109. .left {
  110. margin-right: 10px;
  111. }
  112. .left,
  113. .right {
  114. flex: 1;
  115. display: flex;
  116. flex-direction: column;
  117. }
  118. .dv-border-box-8 {
  119. background: url('../images/left-border2.png') no-repeat;
  120. background-size: 100% 100%;
  121. }
  122. .left .title {
  123. position: relative;
  124. text-align: center;
  125. height: 50px;
  126. line-height: 50px;
  127. }
  128. .left .title .text {
  129. font-size: 20px;
  130. font-weight: 600;
  131. color: #05fbfe;
  132. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  133. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  134. -webkit-background-clip: text;
  135. -webkit-text-fill-color: transparent;
  136. position: relative;
  137. }
  138. .left .title .text::before {
  139. position: absolute;
  140. content: ' ';
  141. top: 10px;
  142. left: -40px;
  143. width: 30px;
  144. height: 10px;
  145. background: url('../images/title-left2.png') no-repeat;
  146. }
  147. .left>div,.right>div{
  148. overflow: hidden;
  149. }
  150. .left .title .text::after {
  151. position: absolute;
  152. content: ' ';
  153. top: 10px;
  154. right: -40px;
  155. width: 30px;
  156. height: 10px;
  157. background: url('../images/title-right2.png') no-repeat;
  158. }
  159. .left .content {
  160. height: calc(100% - 60px);
  161. padding: 0 17px 14px;
  162. display: flex;
  163. }
  164. .left .content .content-left {
  165. margin-right: 10px;
  166. display: flex;
  167. align-items: center;
  168. justify-content: space-evenly;
  169. }
  170. .item {
  171. display: flex;
  172. align-items: center;
  173. flex-direction: column;
  174. }
  175. .item .item-title {
  176. color: #69c0ff;
  177. font-size: 28px;
  178. font-weight: bold;
  179. }
  180. .item .item-title span {
  181. font-weight: 500;
  182. font-size: 14px;
  183. }
  184. .item .item-img {
  185. width: 106px;
  186. height: 106px;
  187. margin-bottom: 9px;
  188. }
  189. .item .item-text {
  190. color: rgba(255, 255, 255, 0.6);
  191. font-size: 14px;
  192. }
  193. .item2 {
  194. width: 50%;
  195. display: flex;
  196. flex-direction: column;
  197. align-items: center;
  198. }
  199. .item2 .item2-title {
  200. font-weight: bold;
  201. font-size: 18px;
  202. }
  203. .item2 .item2-title span {
  204. font-weight: 500;
  205. font-size: 12px;
  206. }
  207. .item2 .item2-img {
  208. width: 67px;
  209. height: 66px;
  210. /* margin-top: -20px; */
  211. }
  212. .item2 .item2-text {
  213. color: rgba(255, 255, 255, 0.6);
  214. font-size: 12px;
  215. }
  216. .item3 {
  217. display: flex;
  218. flex-direction: column;
  219. align-items: center;
  220. }
  221. .item3 .item3-title {
  222. font-weight: bold;
  223. font-size: 24px;
  224. color: #69c0ff;
  225. }
  226. .item3 .item3-title span {
  227. font-size: 14px;
  228. font-weight: 500;
  229. }
  230. .item3 .item3-img {
  231. margin-top: -20px;
  232. width: 100px;
  233. height: 102px;
  234. margin-bottom: 18px;
  235. }
  236. .item3 .item3-text {
  237. font-size: 14px;
  238. color: rgba(255, 255, 255, 0.6);
  239. }
  240. .item4 .item4-title {
  241. position: relative;
  242. padding-left: 10px;
  243. color: #69c0ff;
  244. margin-left: 10px;
  245. margin-top: 5px;
  246. /* margin-bottom: 10px; */
  247. }
  248. .item4 .item4-title::before {
  249. content: '';
  250. position: absolute;
  251. left: 0;
  252. top: 50%;
  253. transform: translate(0, -50%);
  254. width: 5px;
  255. height: 5px;
  256. border-radius: 50%;
  257. background-color: #69c0ff;
  258. }
  259. .item4 .item4-con {
  260. display: flex;
  261. align-items: center;
  262. justify-content: space-around;
  263. height: 100%;
  264. }
  265. .item4 .item4-con .item {
  266. display: flex;
  267. flex-direction: column;
  268. align-items: center;
  269. justify-content: center;
  270. }
  271. .item4 .item4-con .item .title {
  272. color: #69c0ff;
  273. font-weight: bold;
  274. font-size: 28px;
  275. height: 30px !important;
  276. line-height: 30px !important;
  277. }
  278. .item4 .item4-con .item .title span {
  279. font-weight: 500;
  280. font-size: 14px;
  281. }
  282. .item4 .item4-con .item .text {
  283. font-size: 14px;
  284. color: rgba(255, 255, 255, 0.6);
  285. }
  286. .item5 {
  287. padding: 14px;
  288. height: 100%;
  289. }
  290. .item5 .title {
  291. height: 30px;
  292. color: #69c0ff;
  293. border: 1px solid #40a9ff;
  294. border-radius: 5px;
  295. display: flex;
  296. align-items: center;
  297. justify-content: end;
  298. padding: 0 6px;
  299. }
  300. .content {
  301. /* display: flex;
  302. align-items: center; */
  303. }
  304. .left .content .content-con {
  305. margin-right: 10px;
  306. }
  307. /* .left .content .content-left, */
  308. /* .left .content .content-right, */
  309. .topChange2,
  310. .left .content .content-con {
  311. /* background-color: rgb(18 81 128 / 22%); */
  312. background-color: #05183c;
  313. flex: 1;
  314. }
  315. .content-con {
  316. background-color: #05183c;
  317. margin: 0 10px;
  318. }
  319. .topChange1 {
  320. background-color: #05183c;
  321. }
  322. .left .content .content-right,
  323. .left .content .content-left {
  324. flex: 1;
  325. background-color: #05183c;
  326. }
  327. .left .content .content-right {
  328. width: 40%;
  329. }
  330. .left .content .content-left {
  331. width: 100%;
  332. }
  333. .right .title {
  334. position: relative;
  335. text-align: center;
  336. height: 50px;
  337. line-height: 50px;
  338. }
  339. .right .title .text {
  340. font-size: 20px;
  341. font-weight: 600;
  342. color: #05fbfe;
  343. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  344. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  345. -webkit-background-clip: text;
  346. -webkit-text-fill-color: transparent;
  347. position: relative;
  348. }
  349. .right .title .text::before {
  350. position: absolute;
  351. content: ' ';
  352. top: 10px;
  353. left: -40px;
  354. width: 30px;
  355. height: 10px;
  356. background: url('../images/title-left2.png') no-repeat;
  357. }
  358. .right .title .text::after {
  359. position: absolute;
  360. content: ' ';
  361. top: 10px;
  362. right: -40px;
  363. width: 30px;
  364. height: 10px;
  365. background: url('../images/title-right2.png') no-repeat;
  366. }
  367. .right .content {
  368. height: calc(100% - 60px);
  369. padding: 0 17px 14px;
  370. display: flex;
  371. }
  372. .right .content .content-left {
  373. margin-right: 10px;
  374. }
  375. .right .content .content-left,
  376. .right .content .content-right {
  377. display: flex;
  378. flex: 1;
  379. }
  380. .right .content .content-top {
  381. margin-bottom: 10px;
  382. }
  383. .right .content .content-top,
  384. .right .content .content-bot {
  385. /* background-color: rgb(18 81 128 / 22%); */
  386. background-color: #05183c;
  387. flex: 1;
  388. }
  389. .right .content .content-right {
  390. background-color: #05183c;
  391. flex: 1;
  392. }
  393. .right .content .content-left .content-left-l {
  394. /* background-color: rgb(18 81 128 / 22%); */
  395. background-color: #05183c;
  396. flex: 1;
  397. margin-right: 10px;
  398. display: flex;
  399. align-items: center;
  400. justify-content: center;
  401. }
  402. .right .content .content-left .content-left-r {
  403. flex: 2;
  404. display: flex;
  405. flex-direction: column;
  406. }
  407. .right .content .content-left .content-left-r .content-left-r-t {
  408. margin-bottom: 10px;
  409. }
  410. .right .content .content-left .content-left-r .content-left-r-t,
  411. .right .content .content-left .content-left-r .content-left-r-b {
  412. /* background-color: rgb(18 81 128 / 22%); */
  413. background-color: #05183c;
  414. flex: 1;
  415. }
  416. .right .content .content-right .content-right-l {
  417. margin-right: 10px;
  418. }
  419. .right .content .content-right .content-right-l,
  420. .right .content .content-right .content-right-r {
  421. /* background-color: rgb(18 81 128 / 22%); */
  422. background-color: #05183c;
  423. flex: 1;
  424. }
  425. .tip-window {
  426. display: inline-flex;
  427. align-items: center;
  428. justify-content: center;
  429. position: absolute;
  430. right: 15px;
  431. top: 10px;
  432. height: 30px;
  433. padding: 0 10px;
  434. color: #69c0ff;
  435. background-color: rgba(64, 169, 255, 0.12);
  436. border: 2px solid #40a9ff;
  437. border-radius: 5px;
  438. border-top-right-radius: 10px;
  439. cursor: pointer;
  440. box-sizing: border-box;
  441. }
  442. .fourPie {
  443. width: 100%;
  444. height: 100%;
  445. display: grid;
  446. grid-template-columns: repeat(4, minmax(0, 1fr));
  447. }
  448. .content-right table {
  449. width: 100%;
  450. height: 100%;
  451. text-align: center;
  452. border: #f0d2d180;
  453. background-color: rgba(60, 99, 99, 0.409);
  454. }
  455. .topChange1 {
  456. display: grid;
  457. grid-template-columns: repeat(2, minmax(0, 1fr));
  458. grid-template-rows: repeat(2, minmax(0, 1fr));
  459. width: 80%;
  460. height: 100%;
  461. padding: 10px;
  462. }
  463. .topChange1 .item2 {
  464. width: 100%;
  465. }
  466. .topChange0 {
  467. width: 16%;
  468. height: 100%;
  469. text-align: center;
  470. color: #ffffff;
  471. font-size: 22px;
  472. display: flex;
  473. justify-content: center;
  474. align-items: center;
  475. background-color: #05183c;
  476. margin-right: 10px;
  477. }
  478. .topChange0 > div {
  479. writing-mode: tb-rl;
  480. }
  481. .content-right {
  482. display: flex;
  483. align-items: center;
  484. }
  485. .content-right-l,
  486. .content-right-r {
  487. height: 100%;
  488. }
  489. .tip {
  490. z-index: 9999999999;
  491. position: fixed;
  492. /* top: 35%;
  493. left: 32.5%; */
  494. /* width: 35%;
  495. height: 30%; */
  496. width: 900px;
  497. height: 56vh;
  498. top: calc(50% - 26vh);
  499. left: calc(50% - 450px);
  500. background: url('../images/popup.png') no-repeat center;
  501. background-color: #133b65;
  502. background-size: 100% 100%;
  503. padding: 100px 60px 50px;
  504. }
  505. .tip1 {
  506. position: absolute;
  507. font-weight: bold;
  508. width: 150px;
  509. top: 17px;
  510. height: 30px;
  511. line-height: 30px;
  512. font-size: 20px;
  513. text-align: center;
  514. left: 50%;
  515. transform: translate(-50%);
  516. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  517. -webkit-background-clip: text;
  518. -webkit-text-fill-color: transparent;
  519. }
  520. .tip2 {
  521. width: 100%;
  522. height: 100%;
  523. display: grid;
  524. grid-template-columns: 60% 40%;
  525. /* grid-template-rows: 1fr 1fr; */
  526. grid-gap: 10px;
  527. }
  528. /* .tip2 > div {
  529. width: 100%;
  530. height: 100%;
  531. display: grid;
  532. grid-template-columns: 10% 90%;
  533. } */
  534. .tip2-list {
  535. height: 100%;
  536. display: grid;
  537. grid-template-rows: repeat(5, minmax(0, 1fr));
  538. background-color: #04224c;
  539. padding: 0 10px;
  540. }
  541. .tip2-list > div {
  542. width: 100%;
  543. height: 100%;
  544. display: flex;
  545. justify-content: space-between;
  546. align-items: center;
  547. }
  548. .tip2-list > div:nth-child(2),
  549. .tip2-list > div:nth-child(4) {
  550. border-top: 1px solid #69c0ff;
  551. border-bottom: 1px solid #69c0ff;
  552. }
  553. .tip2-title {
  554. writing-mode: vertical-rl;
  555. display: flex;
  556. justify-content: center;
  557. align-items: center;
  558. background-color: #133156;
  559. }
  560. .pie {
  561. background-color: #04224c;
  562. }
  563. .tip-down {
  564. position: absolute;
  565. top: 10px;
  566. right: 30px;
  567. width: 50px;
  568. text-align: center;
  569. height: 50px;
  570. line-height: 50px;
  571. cursor: pointer;
  572. font-size: 44px;
  573. }
  574. .title-left {
  575. position: absolute;
  576. top: 0px;
  577. left: 20px;
  578. color: #447ed2;
  579. font-weight: bold;
  580. font-size: 22px;
  581. }
  582. .topChange2 {
  583. margin-right: 15px;
  584. }
  585. /* .rows > .row-item:nth-child(2) {
  586. background-color: #79a4db6c !important;
  587. } */
  588. .light {
  589. background-color: #79a4db6c !important;
  590. }
  591. .header {
  592. color: #2abbff;
  593. font-weight: bold;
  594. }
  595. .row-item {
  596. color: #ffffff;
  597. }
  598. .swiper {
  599. width: 600px;
  600. height: 300px;
  601. --swiper-theme-color: #ff004c;
  602. /* 设置Swiper风格 */
  603. --swiper-navigation-color: #008cff;
  604. /* 单独设置按钮颜色 */
  605. --swiper-navigation-size: 40px;
  606. /* 设置按钮大小 */
  607. }
  608. .swiperChange {
  609. display: flex;
  610. width: 100%;
  611. height: 100%;
  612. align-items: center;
  613. }
  614. .mySwiper {
  615. /* width: 100%; */
  616. overflow: hidden;
  617. }
  618. .text {
  619. width: 100%;
  620. }
  621. .total {
  622. text-align: center;
  623. width: 200px;
  624. height: 30px;
  625. position: absolute;
  626. left: calc(50% - 100px);
  627. bottom: 7%;
  628. font-weight: bold;
  629. color: #2cb7e0;
  630. }
  631. .total3 {
  632. bottom: 15%;
  633. }
  634. .tipb {
  635. z-index: 9999999999;
  636. position: fixed;
  637. /* top: 35%;
  638. left: 32.5%; */
  639. /* width: 35%;
  640. height: 30%; */
  641. width: 700px;
  642. height: 45vh;
  643. top: calc(50% - 20vh);
  644. left: calc(50% - 350px);
  645. background: url('../images/popup.png') no-repeat center;
  646. background-color: #133b65;
  647. background-size: 100% 100%;
  648. padding: 100px 60px 50px;
  649. }
  650. .content-left-top{
  651. width: 100%;
  652. display: flex;
  653. align-items: center;
  654. }
  655. .content-left-bottom{
  656. width: 100%;
  657. }
  658. .content-left-bottom>.item2{
  659. margin: 0 auto;
  660. }