investHome.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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: #0bf1ff;
  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. height: 70px;
  79. line-height: 70px;
  80. background: url('../images/header-bg.png') center center no-repeat;
  81. background-size: 100% 100%;
  82. color: #0bf1ff;
  83. text-align: center;
  84. font-size: 25px;
  85. font-weight: 600;
  86. }
  87. .main {
  88. padding: 15px;
  89. display: flex;
  90. height: calc(100% - 70px);
  91. background: url('../images/content-bg.png') no-repeat center bottom;
  92. background-size: 80%;
  93. display: flex;
  94. padding-bottom: 65px;
  95. }
  96. .left,
  97. .right {
  98. flex: 3;
  99. display: flex;
  100. flex-direction: column;
  101. }
  102. .left .my-panel,
  103. .right .my-panel {
  104. background-color: #0050943f;
  105. height: 100%;
  106. overflow: hidden;
  107. }
  108. .dv-border-box-8 {
  109. margin-bottom: 10px;
  110. }
  111. .center {
  112. flex: 4;
  113. }
  114. .center .top {
  115. height: 90px;
  116. display: flex;
  117. justify-content: space-between;
  118. }
  119. .center .top .box {
  120. flex: 1;
  121. margin: 0 10px;
  122. background-color: #0050943f;
  123. display: flex;
  124. align-items: center;
  125. padding-left: 15px;
  126. }
  127. .box > div {
  128. margin-left: 10px;
  129. }
  130. .box > img {
  131. width: 70px;
  132. }
  133. .box > div p {
  134. font-size: 16px;
  135. color: #e1e3ef;
  136. }
  137. .box > div span {
  138. display: inline-block;
  139. font-size: 28px;
  140. margin-right: 5px;
  141. font-weight: 600;
  142. margin-top: 5px;
  143. }
  144. .footer {
  145. position: fixed;
  146. bottom: 0;
  147. padding: 10px;
  148. display: flex;
  149. background-color: rgba(0, 0, 0, 0.5);
  150. width: 100%;
  151. }
  152. .footer a {
  153. flex: 1;
  154. height: 40px;
  155. line-height: 40px;
  156. text-align: center;
  157. color: #fff;
  158. background: url('../images/footer-item.png') no-repeat;
  159. background-size: 100% 100%;
  160. }
  161. .footer a:hover {
  162. background: url('../images/footer-item-checked.png') no-repeat;
  163. background-size: 100% 100%;
  164. }
  165. .my-panel .content {
  166. height: calc(100% - 60px);
  167. }
  168. .panel-title {
  169. position: relative;
  170. text-align: center;
  171. height: 50px;
  172. line-height: 50px;
  173. }
  174. .panel-title .text {
  175. font-size: 20px;
  176. font-weight: 600;
  177. color: #05fbfe;
  178. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  179. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  180. -webkit-background-clip: text;
  181. -webkit-text-fill-color: transparent;
  182. position: relative;
  183. }
  184. .panel-title .text::before {
  185. position: absolute;
  186. content: ' ';
  187. top: 10px;
  188. left: -40px;
  189. width: 30px;
  190. height: 10px;
  191. background: url('../images/title-left.png') no-repeat;
  192. }
  193. .panel-title .text::after {
  194. position: absolute;
  195. content: ' ';
  196. top: 10px;
  197. right: -40px;
  198. width: 30px;
  199. height: 10px;
  200. background: url('../images/title-right.png') no-repeat;
  201. }
  202. .panel-title .right-opr {
  203. position: absolute;
  204. right: 0;
  205. width: 80px;
  206. }
  207. .boxs {
  208. display: flex;
  209. flex-wrap: wrap;
  210. padding: 10px;
  211. color: #05fbfe;
  212. }
  213. .boxs > div {
  214. flex: 0 0 50%;
  215. background: url('../images/left1-bg.png') no-repeat center;
  216. background-size: 106% 124%;
  217. padding: 20px 30px;
  218. }
  219. .boxs > div > p {
  220. display: flex;
  221. justify-content: space-between;
  222. align-items: flex-end;
  223. }
  224. .boxs > div > p:nth-child(2) {
  225. margin-top: 10px;
  226. }
  227. .boxs .name {
  228. color: #f3f3f3;
  229. }
  230. .boxs .change {
  231. color: #32EDAA;
  232. }
  233. .boxs .change.up {
  234. color: #ED3248;
  235. }
  236. .boxs .num {
  237. font-size: 30px;
  238. font-weight: 600;
  239. margin-right: 5px;
  240. }
  241. .boxs .el-icon-more {
  242. font-size: 25px;
  243. }
  244. .list {
  245. padding: 15px;
  246. }
  247. .list .list-item {
  248. display: flex;
  249. margin-bottom: 15px;
  250. }
  251. .list .list-item i {
  252. padding: 5px 10px;
  253. color: #ffc704;
  254. border: 1px solid #ffc704;
  255. border-radius: 8px;
  256. margin-right: 15px;
  257. }