investHome.css 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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', 'Hiragino Sans GB', Arial, sans-serif;
  14. }
  15. .flex {
  16. display: flex;
  17. }
  18. .flex1 {
  19. flex: 1;
  20. }
  21. .flex2 {
  22. flex: 2;
  23. }
  24. .flex-around {
  25. display: flex;
  26. justify-content: space-around;
  27. }
  28. .flex-between {
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. }
  33. .flex-end {
  34. display: flex;
  35. justify-content: flex-end;
  36. }
  37. .flex-align-center {
  38. display: flex;
  39. align-items: center;
  40. }
  41. .text-center {
  42. text-align: center;
  43. }
  44. .font12 {
  45. font-size: 12px;
  46. }
  47. .main-color {
  48. color: #40A9FF;
  49. }
  50. .danger-color {
  51. color: #f15450 !important;
  52. }
  53. .error-color {
  54. color: #ffc704 !important;
  55. }
  56. .btm10 {
  57. margin-bottom: 10px;
  58. }
  59. .btm20 {
  60. margin-bottom: 20px;
  61. }
  62. a {
  63. text-decoration: none;
  64. cursor: pointer;
  65. }
  66. [v-cloak] {
  67. display: none;
  68. }
  69. #app {
  70. background: url('../images/page-bg.png') center center no-repeat;
  71. background-size: 100% 100%;
  72. padding-top: 10px;
  73. height: 100vh;
  74. overflow: hidden;
  75. color: #fff;
  76. }
  77. .my-header {
  78. position: relative;
  79. height: 70px;
  80. line-height: 70px;
  81. background: url('../images/header-bg.png') center center no-repeat;
  82. background-size: 100% 100%;
  83. text-align: center;
  84. font-weight: bold;
  85. font-size: 32px;
  86. font-weight: 600;
  87. }
  88. .my-header span {
  89. background: linear-gradient(-3deg, #99EEFF 0%, #99EEFF 30%, #FFFFFF 91%);
  90. -webkit-background-clip: text;
  91. -webkit-text-fill-color: transparent;
  92. }
  93. .my-header span.right {
  94. position: absolute;
  95. right: 60px;
  96. top: 0px;
  97. font-size: 16px;
  98. }
  99. .main {
  100. padding: 15px;
  101. display: flex;
  102. height: calc(100vh - 65px);
  103. background: url('../images/content-bg.png') no-repeat center bottom;
  104. background-size: 100% 100%;
  105. display: flex;
  106. padding-bottom: 65px;
  107. }
  108. .left,
  109. .right {
  110. flex: 3;
  111. display: flex;
  112. flex-direction: column;
  113. }
  114. .left .my-panel,
  115. .right .my-panel {
  116. background-color: #0050943f;
  117. height: 100%;
  118. overflow: hidden;
  119. }
  120. .dv-border-box-8 {
  121. margin-bottom: 10px;
  122. }
  123. .center {
  124. flex: 4;
  125. }
  126. .center .top {
  127. display: flex;
  128. justify-content: space-between;
  129. }
  130. .center .top .box {
  131. flex: 1;
  132. margin: 0 10px;
  133. display: flex;
  134. flex-direction: column;
  135. align-items: center;
  136. color: #40A9FF;
  137. }
  138. .t {
  139. padding: 15px 0;
  140. display: flex;
  141. align-items: center;
  142. font-size: 20px;
  143. font-weight: 600;
  144. background-color: rgba(59,211,255,0.05);
  145. }
  146. .t {
  147. padding: 15px 0;
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. background-color: rgba(18, 61, 98, .6);
  152. }
  153. .b {
  154. padding: 15px 0;
  155. display: flex;
  156. align-items: center;
  157. justify-content: space-around;
  158. background-color: rgba(7, 42, 76, .6);
  159. padding: 15px 0;
  160. }
  161. .b span {
  162. color: #40A9FF;
  163. font-size: 34px;
  164. font-weight: 900;
  165. }
  166. .t img {
  167. margin-right: 10px;
  168. }
  169. .box > div {
  170. width: 100%;
  171. }
  172. .box > img {
  173. width: 40px;
  174. }
  175. .box > div p {
  176. font-size: 16px;
  177. color: #e1e3ef;
  178. }
  179. .box > div span {
  180. display: inline-block;
  181. font-size: 28px;
  182. margin-right: 5px;
  183. font-weight: 600;
  184. margin-top: 5px;
  185. }
  186. .footer {
  187. position: fixed;
  188. bottom: 0;
  189. padding: 10px;
  190. display: flex;
  191. background-color: rgba(0, 0, 0, 0.5);
  192. width: 100%;
  193. }
  194. .footer a {
  195. flex: 1;
  196. height: 40px;
  197. line-height: 40px;
  198. text-align: center;
  199. color: #fff;
  200. background: url('../images/footer-item.png') no-repeat;
  201. background-size: 100% 100%;
  202. }
  203. .footer a:hover {
  204. background: url('../images/footer-item-checked.png') no-repeat;
  205. background-size: 100% 100%;
  206. }
  207. .my-panel .content {
  208. height: calc(100% - 100px);
  209. }
  210. .panel-title {
  211. position: relative;
  212. text-align: center;
  213. height: 100px;
  214. line-height: 100px;
  215. }
  216. .panel-title .text {
  217. font-size: 20px;
  218. font-weight: 600;
  219. color: #05fbfe;
  220. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  221. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  222. -webkit-background-clip: text;
  223. -webkit-text-fill-color: transparent;
  224. position: relative;
  225. }
  226. .panel-title .text::before {
  227. position: absolute;
  228. content: ' ';
  229. top: 10px;
  230. left: -40px;
  231. width: 30px;
  232. height: 10px;
  233. background: url('../images/title-left.png') no-repeat;
  234. }
  235. .panel-title .text::after {
  236. position: absolute;
  237. content: ' ';
  238. top: 10px;
  239. right: -40px;
  240. width: 30px;
  241. height: 10px;
  242. background: url('../images/title-right.png') no-repeat;
  243. }
  244. .panel-title .right-opr {
  245. position: absolute;
  246. right: 0;
  247. width: 80px;
  248. }
  249. .boxs {
  250. /* display: flex;
  251. flex-wrap: wrap; */
  252. display: grid;
  253. grid-template-columns: repeat(2, 1fr);
  254. grid-template-rows: repeat(2, 1fr);
  255. padding: 10px;
  256. color: #40A9FF;
  257. height: 100%;
  258. }
  259. .boxs > div {
  260. flex: 0 0 50%;
  261. background: url('../images/left1-bg.png') no-repeat center;
  262. background-size: 106% 124%;
  263. padding: 20px 30px;
  264. }
  265. .boxs > div > p {
  266. display: flex;
  267. justify-content: space-between;
  268. align-items: flex-end;
  269. }
  270. .boxs > div > p:nth-child(2) {
  271. margin-top: 10px;
  272. }
  273. .boxs .name {
  274. color: #f3f3f3;
  275. font-size: 18px;
  276. }
  277. .boxs .change {
  278. color: #32EDAA;
  279. }
  280. .boxs .change.up {
  281. color: #ED3248;
  282. }
  283. .boxs .num {
  284. font-size: 30px;
  285. font-weight: 600;
  286. margin-right: 5px;
  287. }
  288. .boxs .el-icon-more {
  289. font-size: 25px;
  290. }
  291. .list {
  292. padding: 15px;
  293. }
  294. .list .list-item {
  295. display: flex;
  296. margin-bottom: 15px;
  297. }
  298. .list .list-item i {
  299. padding: 8px 10px;
  300. color: #40A9FF;
  301. border: 1px solid #40A9FF;
  302. border-radius: 8px;
  303. margin-right: 15px;
  304. }
  305. .list-item .value {
  306. align-self: end;
  307. margin-left: 10px;
  308. }
  309. .list-item .flex1 p {
  310. margin-bottom: 10px;
  311. }
  312. .el-progress-bar__outer {
  313. background-color: #005094;
  314. }
  315. .tooltip-cont {
  316. margin: -15px;
  317. border: 1px solid #3699FF;
  318. border-radius: 8px;
  319. padding: 15px;
  320. background-color: rgb(39 122 145 / 0.36);
  321. }
  322. .tooltip-cont p {
  323. line-height: 1.8;
  324. color: #f3f3f3;
  325. position: relative;
  326. padding-left: 12px;
  327. }
  328. .tooltip-cont p::before {
  329. position: absolute;
  330. display: inline-block;
  331. content: '';
  332. left: 0px;
  333. top: 10px;
  334. width: 5px;
  335. height: 5px;
  336. border-radius: 50%;
  337. background-color: #40A9FF;
  338. }
  339. .tooltip-cont span{
  340. color: #69C0FF;
  341. }
  342. .right-date {
  343. position: absolute;
  344. right: 15px;
  345. width: 85px;
  346. }
  347. .date-popper {
  348. background-color: #20414b;
  349. border: 1px solid #3699FF;
  350. border-radius: 8px;
  351. }
  352. .el-popper[x-placement^=bottom] .popper__arrow {
  353. border-bottom-color: #3699FF;
  354. }
  355. .el-popper[x-placement^="bottom"] .popper__arrow::after {
  356. border-bottom-color: #20414b;
  357. }
  358. .date-popper .el-date-picker__header-label {
  359. color: #d6cfcf;
  360. }
  361. .el-picker-panel__icon-btn {
  362. color: #fff;
  363. }
  364. .date-popper .el-year-table td {
  365. padding: 10px 3px;
  366. }
  367. .date-popper .el-year-table td .cell {
  368. color: #d6cfcf;
  369. }
  370. .right-date .el-date-editor--year {
  371. width: 100%;
  372. }
  373. .right-date .el-date-editor--year .el-input__inner{
  374. background: rgba(0,80,148,0.3);
  375. border: 1px solid #21C1FF;
  376. border-radius: 4px 12px 4px 4px;
  377. color: #fff;
  378. padding: 0 15px;
  379. }
  380. .right-date .el-date-editor--year .el-input__prefix {
  381. left: auto;
  382. right: 5px;
  383. color: #40A9FF;
  384. }
  385. .el-progress__text {
  386. color: #fff;
  387. }
  388. .map-box {
  389. height: 100%;
  390. position: relative;
  391. padding: 30px 0;
  392. }
  393. .status {
  394. position: absolute;
  395. /* bottom: 20px; */
  396. bottom: 200px;
  397. left: 15px;
  398. background-color: rgba(3,10,12,0.46);
  399. border: 1px solid #4A57CF;
  400. }
  401. .status p {
  402. background-color: #02397F;
  403. line-height: 35px;
  404. text-align: center;
  405. font-size: 16px;
  406. color: #40A9FF;
  407. }
  408. .status li {
  409. line-height: 25px;
  410. padding-right: 15px;
  411. list-style: none;
  412. position: relative;
  413. }
  414. .status li::before {
  415. content: '';
  416. position: absolute;
  417. left: -15px;
  418. top: 50%;
  419. transform: translate(0, -50%);
  420. width: 5px;
  421. height: 5px;
  422. background-color: #00FFFF;
  423. border-radius: 50%;
  424. }
  425. .status i {
  426. font-size: 16px;
  427. font-weight: 600;
  428. color: #40A9FF;
  429. }
  430. .dv-scroll-board .header {
  431. font-weight: 600 !important;
  432. color: #2ABBFF;
  433. }
  434. .warp {
  435. height: 190px;
  436. overflow: hidden;
  437. }
  438. .tip-window {
  439. margin-right: 50px;
  440. margin-top: 10px;
  441. color: #69c0ff;
  442. display: inline-block;
  443. width: 142px;
  444. height: 50px;
  445. line-height: 50px;
  446. text-align: center;
  447. background-color: rgba(64, 169, 255, 0.12);
  448. border: 2px solid #40a9ff;
  449. border-radius: 8px;
  450. cursor: pointer;
  451. }
  452. .tip {
  453. /* position: fixed;
  454. background-color: rgba(0, 0, 0, 0.5);
  455. width: 100%;
  456. height: 100%;
  457. top: 0;
  458. left: 0; */
  459. }
  460. .tip-box {
  461. z-index: 99999999;
  462. position: fixed;
  463. /* top: 35%;
  464. left: 32.5%; */
  465. /* width: 35%;
  466. height: 30%; */
  467. width: 900px;
  468. height: 56vh;
  469. top: calc(50% - 26vh);
  470. left: calc(50% - 450px);
  471. background: url('../images/popup.png') no-repeat center;
  472. /* background-color: #133b65; */
  473. background-size: 100% 100%;
  474. padding: 100px 60px 50px;
  475. }
  476. .tip-title {
  477. position: absolute;
  478. top:-2px;
  479. left: calc(50% - 200px);
  480. width: 400px;
  481. text-align: center;
  482. font-size: 24px;
  483. }
  484. .tip-down {
  485. position: absolute;
  486. top:10px;
  487. right: 30px;
  488. width: 50px;
  489. text-align: center;
  490. height: 50px;
  491. line-height: 50px;
  492. cursor: pointer;
  493. font-size: 44px;
  494. }
  495. .tip-box > div {
  496. font-size: 42px;
  497. line-height: 70px;
  498. }
  499. .tip-content {
  500. height: 50vh;
  501. overflow: auto;
  502. padding-right: 15px;
  503. margin-top: 1%;
  504. }
  505. .tip-content .content {
  506. height: calc(56vh - 60px);
  507. width: 750px;
  508. }
  509. .tip-content .content2 {
  510. height: 20vh;
  511. width: 750px;
  512. }
  513. div::-webkit-scrollbar {
  514. width: 4px;
  515. }
  516. div::-webkit-scrollbar-thumb {
  517. border-radius: 10px;
  518. background: rgba(64, 169, 255, 0.6);
  519. }
  520. div::-webkit-scrollbar-track {
  521. border-radius: 0;
  522. background: rgba(64, 169, 255, 0.3);
  523. }
  524. .high {
  525. display: block;
  526. color: red;
  527. }