index.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  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/page-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. display: flex;
  135. justify-content: space-between;
  136. margin: 0px -10px 20px;
  137. }
  138. .center .top .box {
  139. flex: 1;
  140. padding: 20px 0;
  141. background-color: rgba(105,192,255,0.2);
  142. display: flex;
  143. align-items: center;
  144. padding-left: 8%;
  145. margin: 0 10px;
  146. }
  147. .box > div {
  148. margin-left: 30px;
  149. }
  150. .box > img {
  151. width: 138px;
  152. }
  153. .box > div p {
  154. font-size: 24px;
  155. color: #E4F8FF;
  156. }
  157. .box > div i {
  158. display: inline-block;
  159. font-size: 48px;
  160. margin-right: 5px;
  161. font-weight: 600;
  162. margin-top: 5px;
  163. }
  164. .footer {
  165. position: relative;
  166. padding-bottom: 20px;
  167. display: flex;
  168. width: 60%;
  169. margin: 0 auto;
  170. }
  171. .footer a {
  172. flex: 1;
  173. height: 70px;
  174. line-height: 70px;
  175. text-align: center;
  176. align-items: center;
  177. justify-content: center;
  178. display: flex;
  179. color: #fff;
  180. font-weight: 600;
  181. font-size: 22px;
  182. background: url('../images/footer-item.png') no-repeat;
  183. background-size: 100% 100%;
  184. }
  185. .footer a img {
  186. width: 35px;
  187. height: 35px;
  188. margin-right: 15px;
  189. }
  190. .footer a:hover {
  191. background: url('../images/footer-item-checked.png') no-repeat;
  192. background-size: 100% 100%;
  193. color: #15F7FF;
  194. }
  195. .my-panel .content {
  196. height: calc(100% - 60px);
  197. }
  198. .panel-title {
  199. position: relative;
  200. height: 60px;
  201. line-height: 60px;
  202. padding-left: 6%;
  203. background: url('../images/title-bg.png') no-repeat;
  204. background-size: 100% 100%;
  205. }
  206. .panel-title .text {
  207. font-size: 22px;
  208. font-weight: 600;
  209. color: #DAF9FF;
  210. }
  211. .panel-title .right-opr {
  212. position: absolute;
  213. right: 0;
  214. width: 80px;
  215. }
  216. .list {
  217. flex: 1;
  218. padding: 15px;
  219. }
  220. .list .list-item {
  221. display: flex;
  222. align-items: center;
  223. margin: 15px 0;
  224. border: 1px solid #69c0ff3f;
  225. padding: 20px;
  226. }
  227. .list .list-item > i {
  228. margin-right: 15px;
  229. width: 35px;
  230. height: 35px;
  231. line-height: 35px;
  232. text-align: center;
  233. background: #69c0ff3f;
  234. border-radius: 4px;
  235. color: #69C0FF;
  236. }
  237. .list-item i.num {
  238. font-size: 30px;
  239. color: #69C0FF;
  240. margin-right: 10px;
  241. }
  242. .s-title {
  243. text-align: center;
  244. font-size: 24px;
  245. margin-bottom: 20px;
  246. font-weight: 600;
  247. }
  248. .yujing {
  249. display: flex;
  250. padding: 15px 10px 12px;
  251. }
  252. .yujing > div {
  253. background-color: #05507b4c;
  254. margin: 0 15px;
  255. padding: 15px 30px;
  256. border-radius: 10px;
  257. }
  258. .el-progress-bar__outer {
  259. background-color: #17436d!important;
  260. }
  261. .el-progress__text {
  262. color: #f5f7fa;
  263. }
  264. .box-center {
  265. flex: 1;
  266. display: flex;
  267. flex-direction: column;
  268. background: url('../images/sex-bg.png') no-repeat center;
  269. background-size: 100% 100%;
  270. padding: 1.5%;
  271. margin: 0 10px;
  272. }
  273. .box-center > div {
  274. text-align: center;
  275. flex: 1;
  276. height: 150px;
  277. }
  278. .box-center > div.t {
  279. background-color: rgb(18 81 128 / 22%);
  280. margin-bottom: 20px;
  281. padding-top: 1%;
  282. }
  283. .box-center > div.flex {
  284. margin: 0 -10px;
  285. }
  286. .box-center > div.flex > div {
  287. flex: 1;
  288. margin: 0 10px;
  289. padding-top: 1.3%;
  290. background-color: rgb(18 81 128 / 22%);
  291. }
  292. .box-center > div p:nth-child(1) {
  293. font-size: 45px;
  294. font-weight: 800;
  295. color: #69C0FF;
  296. margin-bottom: 15px;
  297. }
  298. .box-center > div p:nth-child(2) {
  299. font-size: 24px;
  300. color: #E4F8FF;
  301. }
  302. .box-center > div span {
  303. font-size: 24px;
  304. margin-left: 10px;
  305. }
  306. .dv-scroll-board .header {
  307. font-size: 18px!important;
  308. font-weight: 600!important;
  309. background-color: rgba(105, 192, 255, 0.1)!important;
  310. }
  311. .dv-scroll-board .rows .row-item {
  312. font-size: 18px!important;
  313. }