index.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. *,
  2. *:before,
  3. *:after {
  4. padding: 0;
  5. margin: 0;
  6. box-sizing: border-box;
  7. }
  8. html,
  9. body {
  10. min-width: 7640px;
  11. font-size: 20px;
  12. color: #fff;
  13. font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
  14. }
  15. .flex {
  16. display: flex;
  17. }
  18. .flex-wrap {
  19. flex-wrap: wrap;
  20. }
  21. .flex1 {
  22. flex: 1;
  23. }
  24. .flex2 {
  25. flex: 2;
  26. }
  27. .flex-around {
  28. display: flex;
  29. justify-content: space-around;
  30. }
  31. .flex-between {
  32. display: flex;
  33. justify-content: space-between;
  34. align-items: center;
  35. }
  36. .flex-end {
  37. display: flex;
  38. justify-content: flex-end;
  39. }
  40. .flex-column {
  41. display: flex;
  42. flex-direction: column;
  43. }
  44. .flex-align-center {
  45. display: flex;
  46. align-items: center;
  47. }
  48. .text-center {
  49. text-align: center;
  50. }
  51. .font12 {
  52. font-size: 12px;
  53. }
  54. .main-color {
  55. color: #69C0FF;
  56. }
  57. .danger-color {
  58. color: #f15450 !important;
  59. }
  60. .error-color {
  61. color: #ffc704 !important;
  62. }
  63. .btm10 {
  64. margin-bottom: 10px;
  65. }
  66. .btm20 {
  67. margin-bottom: 20px;
  68. }
  69. a {
  70. text-decoration: none;
  71. cursor: pointer;
  72. }
  73. [v-cloak] {
  74. display: none;
  75. }
  76. #app {
  77. background: url('../images/home-bg.png') center center no-repeat;
  78. background-size: 100% 100%;
  79. padding-top: 10px;
  80. }
  81. .my-header {
  82. position: relative;
  83. height: 140px;
  84. line-height: 140px;
  85. background: url('../images/header-bg2.png') center center no-repeat;
  86. background-size: 100% 100%;
  87. text-align: center;
  88. font-weight: bold;
  89. font-size: 56px;
  90. font-weight: 600;
  91. }
  92. .my-header span {
  93. background: linear-gradient(-3deg, #99EEFF 0%, #99EEFF 30%, #FFFFFF 91%);
  94. -webkit-background-clip: text;
  95. -webkit-text-fill-color: transparent;
  96. }
  97. .my-header span.right {
  98. position: absolute;
  99. right: 100px;
  100. top: 0px;
  101. font-size: 30px;
  102. }
  103. .main {
  104. padding: 15px 15px 0;
  105. display: flex;
  106. height: calc(100vh - 280px);
  107. }
  108. .left,
  109. .right {
  110. flex: 1;
  111. display: flex;
  112. flex-direction: column;
  113. }
  114. .left .my-panel,
  115. .right .my-panel {
  116. height: 100%;
  117. overflow: hidden;
  118. }
  119. .dv-border-box-8 {
  120. margin-bottom: 25px;
  121. padding: 15px;
  122. box-sizing: border-box;
  123. }
  124. .center {
  125. flex: 1;
  126. margin: 0 20px;
  127. display: flex;
  128. flex-direction: column;
  129. }
  130. .center .my-panel {
  131. height: 100%;
  132. }
  133. .center .top {
  134. height: 183px;
  135. display: flex;
  136. justify-content: space-between;
  137. padding: 0 -5px;
  138. margin-bottom: 10px;
  139. }
  140. .center .top .box {
  141. flex: 1;
  142. margin-bottom: 25px;
  143. background-color: rgba(105,192,255,0.2);
  144. display: flex;
  145. align-items: center;
  146. padding-left: 8%;
  147. margin: 0 10px;
  148. }
  149. .box > div {
  150. margin-left: 30px;
  151. }
  152. .box > img {
  153. width: 138px;
  154. }
  155. .box > div p {
  156. font-size: 24px;
  157. color: #E4F8FF;
  158. }
  159. .box > div i {
  160. display: inline-block;
  161. font-size: 48px;
  162. margin-right: 5px;
  163. font-weight: 600;
  164. margin-top: 5px;
  165. }
  166. .footer {
  167. position: relative;
  168. padding-bottom: 20px;
  169. display: flex;
  170. width: 60%;
  171. margin: 0 auto;
  172. }
  173. .footer a {
  174. flex: 1;
  175. height: 70px;
  176. line-height: 70px;
  177. text-align: center;
  178. color: #fff;
  179. font-size: 20px;
  180. background: url('../images/footer-item.png') no-repeat;
  181. background-size: 100% 100%;
  182. }
  183. .footer a:hover {
  184. background: url('../images/footer-item-checked.png') no-repeat;
  185. background-size: 100% 100%;
  186. color: #15F7FF;
  187. }
  188. .my-panel .content {
  189. height: calc(100% - 60px);
  190. }
  191. .panel-title {
  192. position: relative;
  193. height: 60px;
  194. line-height: 60px;
  195. padding-left: 6%;
  196. background: url('../images/title-bg.png') no-repeat;
  197. background-size: 100% 100%;
  198. }
  199. .panel-title .text {
  200. font-size: 22px;
  201. font-weight: 600;
  202. color: #DAF9FF;
  203. }
  204. .panel-title .right-opr {
  205. position: absolute;
  206. right: 0;
  207. width: 80px;
  208. }
  209. .list {
  210. flex: 1;
  211. padding: 15px;
  212. }
  213. .list .list-item {
  214. display: flex;
  215. align-items: center;
  216. margin: 15px 0;
  217. border: 1px solid #69c0ff3f;
  218. padding: 20px;
  219. }
  220. .list .list-item > i {
  221. margin-right: 15px;
  222. width: 35px;
  223. height: 35px;
  224. line-height: 35px;
  225. text-align: center;
  226. background: #69c0ff3f;
  227. border-radius: 4px;
  228. color: #69C0FF;
  229. }
  230. .list-item i.num {
  231. font-size: 30px;
  232. color: #69C0FF;
  233. margin-right: 10px;
  234. }
  235. .s-title {
  236. text-align: center;
  237. font-size: 20px;
  238. margin-bottom: 20px;
  239. }
  240. .yujing {
  241. display: flex;
  242. padding: 15px 10px 12px;
  243. }
  244. .yujing > div {
  245. background-color: #05507b4c;
  246. margin: 0 15px;
  247. padding: 15px 30px;
  248. border-radius: 10px;
  249. }
  250. .el-progress-bar__outer {
  251. background-color: #17436d!important;
  252. }
  253. .el-progress__text {
  254. color: #f5f7fa;
  255. }
  256. .box-center {
  257. display: flex;
  258. }
  259. .box-center > div {
  260. background-color: #17436d;
  261. text-align: center;
  262. flex: 1;
  263. height: 150px;
  264. padding-top: 30px;
  265. margin: 15px;
  266. }
  267. .box-center > div p:nth-child(1) {
  268. font-size: 45px;
  269. font-weight: 800;
  270. color: #69C0FF;
  271. margin-bottom: 15px;
  272. }