investHome2.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  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. 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: 100px;
  126. line-height: 100px;
  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% - 100px);
  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: 100px;
  209. height: 100px;
  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. margin: 0 30px;
  271. }
  272. .item4 .item4-con .item .title {
  273. color: #69c0ff;
  274. font-weight: bold;
  275. font-size: 28px;
  276. height: 30px !important;
  277. line-height: 30px !important;
  278. }
  279. .item4 .item4-con .item .title span {
  280. font-weight: 500;
  281. font-size: 14px;
  282. }
  283. .item4 .item4-con .item .text {
  284. font-size: 14px;
  285. color: rgba(255, 255, 255, 0.6);
  286. }
  287. .item5 {
  288. padding: 14px;
  289. height: 100%;
  290. }
  291. .item5 .title {
  292. height: 30px;
  293. color: #69c0ff;
  294. border: 1px solid #40a9ff;
  295. border-radius: 5px;
  296. display: flex;
  297. align-items: center;
  298. justify-content: end;
  299. padding: 0 6px;
  300. }
  301. .content {
  302. /* display: flex;
  303. align-items: center; */
  304. }
  305. .left .content .content-con {
  306. margin-right: 10px;
  307. }
  308. /* .left .content .content-left, */
  309. /* .left .content .content-right, */
  310. .topChange2,
  311. .left .content .content-con {
  312. /* background-color: rgb(18 81 128 / 22%); */
  313. background-color: #05183c;
  314. flex: 1;
  315. }
  316. .content-con {
  317. background-color: #05183c;
  318. margin: 0 10px;
  319. }
  320. .topChange1 {
  321. background-color: #05183c;
  322. }
  323. .left .content .content-right,
  324. .left .content .content-left {
  325. flex: 1;
  326. background-color: #05183c;
  327. }
  328. .left .content .content-right {
  329. width: 40%;
  330. }
  331. .left .content .content-left {
  332. width: 100%;
  333. }
  334. .right .title {
  335. position: relative;
  336. text-align: center;
  337. height: 100px;
  338. line-height: 100px;
  339. }
  340. .right .title .text {
  341. font-size: 20px;
  342. font-weight: 600;
  343. color: #05fbfe;
  344. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  345. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  346. -webkit-background-clip: text;
  347. -webkit-text-fill-color: transparent;
  348. position: relative;
  349. }
  350. .right .title .text::before {
  351. position: absolute;
  352. content: ' ';
  353. top: 10px;
  354. left: -40px;
  355. width: 30px;
  356. height: 10px;
  357. background: url('../images/title-left2.png') no-repeat;
  358. }
  359. .right .title .text::after {
  360. position: absolute;
  361. content: ' ';
  362. top: 10px;
  363. right: -40px;
  364. width: 30px;
  365. height: 10px;
  366. background: url('../images/title-right2.png') no-repeat;
  367. }
  368. .right .content {
  369. height: calc(100% - 100px);
  370. padding: 0 17px 14px;
  371. display: flex;
  372. }
  373. .right .content .content-left {
  374. margin-right: 10px;
  375. }
  376. .right .content .content-left,
  377. .right .content .content-right {
  378. display: flex;
  379. flex: 1;
  380. }
  381. .right .content .content-top {
  382. margin-bottom: 10px;
  383. }
  384. .right .content .content-top,
  385. .right .content .content-bot {
  386. /* background-color: rgb(18 81 128 / 22%); */
  387. background-color: #05183c;
  388. flex: 1;
  389. }
  390. .right .content .content-right {
  391. background-color: #05183c;
  392. flex: 1;
  393. }
  394. .right .content .content-left .content-left-l {
  395. /* background-color: rgb(18 81 128 / 22%); */
  396. background-color: #05183c;
  397. flex: 1;
  398. margin-right: 10px;
  399. display: flex;
  400. align-items: center;
  401. justify-content: center;
  402. }
  403. .right .content .content-left .content-left-r {
  404. flex: 2;
  405. display: flex;
  406. flex-direction: column;
  407. }
  408. .content-left-r-t,.content-left-r-b{
  409. display: flex;
  410. justify-content: center;
  411. align-items: center;
  412. }
  413. .right .content .content-left .content-left-r .content-left-r-t {
  414. margin-bottom: 10px;
  415. }
  416. .right .content .content-left .content-left-r .content-left-r-t,
  417. .right .content .content-left .content-left-r .content-left-r-b {
  418. /* background-color: rgb(18 81 128 / 22%); */
  419. background-color: #05183c;
  420. flex: 1;
  421. }
  422. .right .content .content-right .content-right-l {
  423. margin-right: 10px;
  424. }
  425. .right .content .content-right .content-right-l,
  426. .right .content .content-right .content-right-r {
  427. /* background-color: rgb(18 81 128 / 22%); */
  428. background-color: #05183c;
  429. flex: 1;
  430. }
  431. .tip-window {
  432. display: inline-flex;
  433. align-items: center;
  434. justify-content: center;
  435. position: absolute;
  436. right: 15px;
  437. top: 10px;
  438. height: 30px;
  439. padding: 0 10px;
  440. color: #69c0ff;
  441. background-color: rgba(64, 169, 255, 0.12);
  442. border: 2px solid #40a9ff;
  443. border-radius: 5px;
  444. border-top-right-radius: 10px;
  445. cursor: pointer;
  446. box-sizing: border-box;
  447. }
  448. .fourPie {
  449. width: 100%;
  450. height: 100%;
  451. display: grid;
  452. grid-template-columns: repeat(4, minmax(0, 1fr));
  453. }
  454. .content-right table {
  455. width: 100%;
  456. height: 100%;
  457. text-align: center;
  458. border: #f0d2d180;
  459. background-color: rgba(60, 99, 99, 0.409);
  460. }
  461. .topChange1 {
  462. display: grid;
  463. grid-template-columns: repeat(2, minmax(0, 1fr));
  464. grid-template-rows: repeat(2, minmax(0, 1fr));
  465. width: 80%;
  466. height: 100%;
  467. padding: 10px;
  468. }
  469. .topChange1 .item2 {
  470. width: 100%;
  471. }
  472. .topChange0 {
  473. width: 16%;
  474. height: 100%;
  475. text-align: center;
  476. color: #ffffff;
  477. font-size: 22px;
  478. display: flex;
  479. justify-content: center;
  480. align-items: center;
  481. background-color: #05183c;
  482. margin-right: 10px;
  483. }
  484. .topChange0 > div {
  485. writing-mode: tb-rl;
  486. }
  487. .content-right {
  488. display: flex;
  489. align-items: center;
  490. }
  491. .content-right-l,
  492. .content-right-r {
  493. height: 100%;
  494. }
  495. .tip {
  496. z-index: 9999999999;
  497. position: fixed;
  498. /* top: 35%;
  499. left: 32.5%; */
  500. /* width: 35%;
  501. height: 30%; */
  502. width: 900px;
  503. height: 56vh;
  504. top: calc(50% - 26vh);
  505. left: calc(50% - 450px);
  506. background: url('../images/popup.png') no-repeat center;
  507. background-color: #133b65;
  508. background-size: 100% 100%;
  509. padding: 100px 60px 50px;
  510. }
  511. .tip1 {
  512. position: absolute;
  513. font-weight: bold;
  514. width: 150px;
  515. top: 17px;
  516. height: 30px;
  517. line-height: 30px;
  518. font-size: 20px;
  519. text-align: center;
  520. left: 50%;
  521. transform: translate(-50%);
  522. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  523. -webkit-background-clip: text;
  524. -webkit-text-fill-color: transparent;
  525. }
  526. .tip2 {
  527. width: 100%;
  528. height: 100%;
  529. display: grid;
  530. grid-template-columns: 60% 40%;
  531. /* grid-template-rows: 1fr 1fr; */
  532. grid-gap: 10px;
  533. }
  534. /* .tip2 > div {
  535. width: 100%;
  536. height: 100%;
  537. display: grid;
  538. grid-template-columns: 10% 90%;
  539. } */
  540. .tip2-list {
  541. height: 100%;
  542. display: grid;
  543. grid-template-rows: repeat(5, minmax(0, 1fr));
  544. background-color: #04224c;
  545. padding: 0 10px;
  546. }
  547. .tip2-list > div {
  548. width: 100%;
  549. height: 100%;
  550. display: flex;
  551. justify-content: space-between;
  552. align-items: center;
  553. }
  554. .tip2-list > div:nth-child(2),
  555. .tip2-list > div:nth-child(4) {
  556. border-top: 1px solid #69c0ff;
  557. border-bottom: 1px solid #69c0ff;
  558. }
  559. .tip2-title {
  560. writing-mode: vertical-rl;
  561. display: flex;
  562. justify-content: center;
  563. align-items: center;
  564. background-color: #133156;
  565. }
  566. .pie {
  567. background-color: #04224c;
  568. }
  569. .tip-down {
  570. position: absolute;
  571. top: 10px;
  572. right: 30px;
  573. width: 50px;
  574. text-align: center;
  575. height: 50px;
  576. line-height: 50px;
  577. cursor: pointer;
  578. font-size: 44px;
  579. }
  580. .title-left {
  581. position: absolute;
  582. top: 0px;
  583. left: 20px;
  584. color: #447ed2;
  585. font-weight: bold;
  586. font-size: 22px;
  587. }
  588. .topChange2 {
  589. margin-right: 15px;
  590. }
  591. /* .rows > .row-item:nth-child(2) {
  592. background-color: #79a4db6c !important;
  593. } */
  594. .light {
  595. background-color: #79a4db6c !important;
  596. }
  597. .header {
  598. color: #2abbff;
  599. font-weight: bold;
  600. }
  601. .row-item {
  602. color: #ffffff;
  603. }
  604. .swiper {
  605. width: 600px;
  606. height: 300px;
  607. --swiper-theme-color: #ff004c;
  608. /* 设置Swiper风格 */
  609. --swiper-navigation-color: #008cff;
  610. /* 单独设置按钮颜色 */
  611. --swiper-navigation-size: 40px;
  612. /* 设置按钮大小 */
  613. }
  614. .swiperChange {
  615. display: flex;
  616. width: 100%;
  617. height: 100%;
  618. align-items: center;
  619. }
  620. .mySwiper {
  621. /* width: 100%; */
  622. overflow: hidden;
  623. }
  624. .text {
  625. width: 100%;
  626. }
  627. .total {
  628. text-align: center;
  629. width: 200px;
  630. height: 30px;
  631. position: absolute;
  632. left: calc(50% - 150px);
  633. bottom: 7%;
  634. font-weight: bold;
  635. color: #2cb7e0;
  636. }
  637. .total3 {
  638. bottom: 15%;
  639. }
  640. .tipb {
  641. z-index: 9999999999;
  642. position: fixed;
  643. /* top: 35%;
  644. left: 32.5%; */
  645. /* width: 35%;
  646. height: 30%; */
  647. width: 700px;
  648. height: 45vh;
  649. top: calc(50% - 20vh);
  650. left: calc(50% - 350px);
  651. background: url('../images/popup.png') no-repeat center;
  652. background-color: #133b65;
  653. background-size: 100% 100%;
  654. padding: 100px 60px 50px;
  655. }
  656. .content-left-top{
  657. width: 100%;
  658. display: flex;
  659. align-items: center;
  660. height: 45%;
  661. }
  662. .content-left-bottom{
  663. width: 100%;
  664. height: 45%;
  665. }
  666. .content-left-bottom>.item2{
  667. margin: 0 auto;
  668. }