investHome2.css 13 KB

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