index.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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. position: relative;
  81. }
  82. .my-header {
  83. position: relative;
  84. height: 140px;
  85. line-height: 140px;
  86. background: url('../images/header-bg2.png') center center no-repeat;
  87. background-size: 100% 100%;
  88. text-align: center;
  89. font-weight: bold;
  90. font-size: 56px;
  91. font-weight: 600;
  92. }
  93. .my-header span {
  94. background: linear-gradient(-3deg, #99EEFF 0%, #99EEFF 30%, #FFFFFF 91%);
  95. -webkit-background-clip: text;
  96. -webkit-text-fill-color: transparent;
  97. }
  98. .my-header span.left {
  99. position: absolute;
  100. left: 100px;
  101. top: 40px;
  102. font-size: 30px;
  103. cursor: pointer;
  104. }
  105. .my-header span.right {
  106. position: absolute;
  107. right: 100px;
  108. top: 0px;
  109. font-size: 30px;
  110. }
  111. .main {
  112. padding: 15px 15px 0;
  113. display: flex;
  114. height: calc(100vh - 280px);
  115. }
  116. .left,
  117. .right {
  118. flex: 1;
  119. display: flex;
  120. flex-direction: column;
  121. }
  122. .left .my-panel,
  123. .right .my-panel {
  124. height: 100%;
  125. overflow: hidden;
  126. }
  127. .dv-border-box-8 {
  128. margin-bottom: 25px;
  129. padding: 15px;
  130. box-sizing: border-box;
  131. }
  132. .center {
  133. flex: 1;
  134. margin: 0 20px;
  135. display: flex;
  136. flex-direction: column;
  137. }
  138. .center .my-panel {
  139. height: 100%;
  140. }
  141. .center .top {
  142. display: flex;
  143. justify-content: space-between;
  144. margin: 0px -10px 20px;
  145. }
  146. .center .top .box {
  147. flex: 1;
  148. padding: 20px 0;
  149. background-color: rgba(105,192,255,0.2);
  150. display: flex;
  151. align-items: center;
  152. padding-left: 8%;
  153. margin: 0 10px;
  154. }
  155. .box > div {
  156. margin-left: 30px;
  157. }
  158. .box > img {
  159. width: 138px;
  160. }
  161. .box > div p {
  162. font-size: 24px;
  163. color: #E4F8FF;
  164. }
  165. .box > div i {
  166. display: inline-block;
  167. font-size: 48px;
  168. margin-right: 5px;
  169. font-weight: 600;
  170. margin-top: 5px;
  171. }
  172. .footer {
  173. position: relative;
  174. padding-bottom: 20px;
  175. display: flex;
  176. width: 60%;
  177. margin: 0 auto;
  178. }
  179. .footer a {
  180. flex: 1;
  181. height: 70px;
  182. line-height: 70px;
  183. text-align: center;
  184. align-items: center;
  185. justify-content: center;
  186. display: flex;
  187. color: #fff;
  188. font-weight: 600;
  189. font-size: 22px;
  190. background: url('../images/footer-item.png') no-repeat;
  191. background-size: 100% 100%;
  192. }
  193. .footer a img {
  194. width: 35px;
  195. height: 35px;
  196. margin-right: 15px;
  197. }
  198. .footer a:hover {
  199. background: url('../images/footer-item-checked.png') no-repeat;
  200. background-size: 100% 100%;
  201. color: #15F7FF;
  202. }
  203. .my-panel .content {
  204. height: calc(100% - 60px);
  205. }
  206. .panel-title {
  207. position: relative;
  208. height: 60px;
  209. line-height: 60px;
  210. padding-left: 6%;
  211. background: url('../images/title-bg.png') no-repeat;
  212. background-size: 100% 100%;
  213. }
  214. .panel-title .text {
  215. font-size: 22px;
  216. font-weight: 600;
  217. color: #DAF9FF;
  218. }
  219. .panel-title .right-opr {
  220. position: absolute;
  221. right: 0;
  222. width: 80px;
  223. }
  224. .list {
  225. flex: 1;
  226. padding: 15px;
  227. }
  228. .list .list-item {
  229. display: flex;
  230. align-items: center;
  231. margin: 15px 0;
  232. border: 1px solid #69c0ff3f;
  233. padding: 20px;
  234. }
  235. .list .list-item > i {
  236. margin-right: 15px;
  237. width: 35px;
  238. height: 35px;
  239. line-height: 35px;
  240. text-align: center;
  241. background: #69c0ff3f;
  242. border-radius: 4px;
  243. color: #69C0FF;
  244. }
  245. .list-item i.num {
  246. font-size: 30px;
  247. color: #69C0FF;
  248. margin-right: 10px;
  249. }
  250. .s-title {
  251. text-align: center;
  252. font-size: 24px;
  253. margin-bottom: 20px;
  254. font-weight: 600;
  255. }
  256. .yujing {
  257. display: flex;
  258. padding: 15px 10px 12px;
  259. }
  260. .yujing > div {
  261. background-color: #05507b4c;
  262. margin: 0 15px;
  263. padding: 15px 30px;
  264. border-radius: 10px;
  265. }
  266. .el-progress-bar__outer {
  267. background-color: #17436d!important;
  268. }
  269. .el-progress__text {
  270. color: #f5f7fa;
  271. }
  272. .box-center {
  273. flex: 1;
  274. display: flex;
  275. flex-direction: column;
  276. background: url('../images/sex-bg.png') no-repeat center;
  277. background-size: 100% 100%;
  278. padding: 1.5%;
  279. margin: 0 10px;
  280. }
  281. .box-center > div {
  282. text-align: center;
  283. flex: 1;
  284. height: 150px;
  285. }
  286. .box-center > div.t {
  287. background-color: rgb(18 81 128 / 22%);
  288. margin-bottom: 20px;
  289. padding-top: 1%;
  290. }
  291. .box-center > div.flex {
  292. margin: 0 -10px;
  293. }
  294. .box-center > div.flex > div {
  295. flex: 1;
  296. margin: 0 10px;
  297. padding-top: 1.3%;
  298. background-color: rgb(18 81 128 / 22%);
  299. }
  300. .box-center > div p:nth-child(1) {
  301. font-size: 45px;
  302. font-weight: 800;
  303. color: #69C0FF;
  304. margin-bottom: 15px;
  305. }
  306. .box-center > div p:nth-child(2) {
  307. font-size: 24px;
  308. color: #E4F8FF;
  309. }
  310. .box-center > div span {
  311. font-size: 24px;
  312. margin-left: 10px;
  313. }
  314. .dv-scroll-board .header {
  315. font-size: 18px!important;
  316. font-weight: 600!important;
  317. background-color: rgba(105, 192, 255, 0.1)!important;
  318. }
  319. .dv-scroll-board .rows .row-item {
  320. font-size: 18px!important;
  321. }
  322. .tip-window{
  323. margin-right: 50px;
  324. margin-top: 10px;
  325. color: #69C0FF;
  326. display: inline-block;
  327. width: 142px;
  328. height: 50px;
  329. line-height: 50px;
  330. text-align: center;
  331. background-color: rgba(64,169,255,0.12);
  332. border: 2px solid #40A9FF;
  333. border-radius: 8px;
  334. cursor: pointer;
  335. }
  336. .tip {
  337. position: fixed;
  338. background-color: rgba(0, 0, 0, 0.5);
  339. width: 100%;
  340. height: 100%;
  341. top: 0;
  342. left: 0;
  343. }
  344. .tip-box {
  345. position: absolute;
  346. /* top: 35%;
  347. left: 32.5%; */
  348. /* width: 35%;
  349. height: 30%; */
  350. width: 1200px;
  351. height: 850px;
  352. top: calc(50% - 375px);
  353. left: calc(50% - 600px);
  354. background: url('../images/alert.png') no-repeat center;
  355. /* background-color: #133B65; */
  356. background-size: 100% 100%;
  357. padding: 100px 60px 50px;
  358. }
  359. .tip-box > div {
  360. font-size: 42px;
  361. line-height: 70px;
  362. }
  363. .tip-content {
  364. height: 95%;
  365. overflow: auto;
  366. padding-right: 15px;
  367. margin-top: 2%;
  368. }
  369. div::-webkit-scrollbar{
  370. width: 4px;
  371. }
  372. div::-webkit-scrollbar-thumb {
  373. border-radius: 10px;
  374. background: rgba(64, 169, 255, 0.6);
  375. }
  376. div::-webkit-scrollbar-track {
  377. border-radius: 0;
  378. background: rgba(64, 169, 255, 0.3);
  379. }