index.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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',
  14. 'Hiragino Sans GB', Arial, sans-serif;
  15. height: 100vh;
  16. overflow-y: hidden;
  17. }
  18. [v-cloak] {
  19. display: none;
  20. }
  21. .flex {
  22. display: flex;
  23. }
  24. .flex-wrap {
  25. flex-wrap: wrap;
  26. }
  27. .flex1 {
  28. flex: 1;
  29. }
  30. .flex2 {
  31. flex: 2;
  32. }
  33. .flex-around {
  34. display: flex;
  35. justify-content: space-around;
  36. }
  37. .flex-between {
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. }
  42. .flex-end {
  43. display: flex;
  44. justify-content: flex-end;
  45. }
  46. .flex-column {
  47. display: flex;
  48. flex-direction: column;
  49. }
  50. .flex-align-center {
  51. display: flex;
  52. align-items: center;
  53. }
  54. .text-center {
  55. text-align: center;
  56. }
  57. .font12 {
  58. font-size: 12px;
  59. }
  60. .main-color {
  61. color: #69c0ff;
  62. }
  63. .danger-color {
  64. color: #f15450 !important;
  65. }
  66. .error-color {
  67. color: #ffc704 !important;
  68. }
  69. .btm10 {
  70. margin-bottom: 10px;
  71. }
  72. .btm20 {
  73. margin-bottom: 20px;
  74. }
  75. a {
  76. text-decoration: none;
  77. cursor: pointer;
  78. }
  79. [v-cloak] {
  80. display: none;
  81. }
  82. #app {
  83. background: url('../images/page-bg.png') center center no-repeat;
  84. background-size: 100% 100%;
  85. padding-top: 10px;
  86. position: relative;
  87. height: 100vh;
  88. overflow-y: hidden;
  89. }
  90. .my-header {
  91. position: relative;
  92. height: 140px;
  93. line-height: 140px;
  94. background: url('../images/header-bg2.png') center center no-repeat;
  95. background-size: 100% 100%;
  96. text-align: center;
  97. font-weight: bold;
  98. font-size: 60px;
  99. font-weight: 600;
  100. }
  101. .my-header span {
  102. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  103. -webkit-background-clip: text;
  104. -webkit-text-fill-color: transparent;
  105. }
  106. .my-header span.left {
  107. position: absolute;
  108. left: 100px;
  109. height: 50px;
  110. top: 40px;
  111. font-size: 30px;
  112. cursor: pointer;
  113. }
  114. .my-header span.left2 {
  115. position: absolute;
  116. left: 300px;
  117. top: 20px;
  118. height: 100px;
  119. line-height: 100px;
  120. display: inline-block;
  121. width: 180px;
  122. font-size: 36px;
  123. cursor: pointer;
  124. }
  125. .my-header span.right {
  126. position: absolute;
  127. right: 100px;
  128. top: 0px;
  129. font-size: 30px;
  130. }
  131. .main {
  132. padding: 15px 15px 0;
  133. display: flex;
  134. height: calc(100vh - 280px);
  135. }
  136. .left,
  137. .right {
  138. flex: 1;
  139. display: flex;
  140. flex-direction: column;
  141. }
  142. .left .my-panel,
  143. .right .my-panel {
  144. height: 100%;
  145. overflow: hidden;
  146. }
  147. .dv-border-box-8 {
  148. margin-bottom: 25px;
  149. padding: 15px;
  150. box-sizing: border-box;
  151. }
  152. .center {
  153. flex: 1;
  154. margin: 0 20px;
  155. display: flex;
  156. flex-direction: column;
  157. }
  158. .center .my-panel {
  159. height: 100%;
  160. }
  161. .center .top {
  162. display: flex;
  163. justify-content: space-between;
  164. margin: 0px -10px 20px;
  165. }
  166. .center .top .box {
  167. flex: 1;
  168. padding: 20px 0;
  169. background-color: rgba(105, 192, 255, 0.2);
  170. padding-left: 8%;
  171. margin: 0 10px;
  172. }
  173. .box-content {
  174. display: flex;
  175. align-items: center;
  176. }
  177. .box-content > div {
  178. margin-left: 30px;
  179. }
  180. .box-content > img {
  181. width: 138px;
  182. }
  183. .box-content > div p {
  184. font-size: 24px;
  185. color: #e4f8ff;
  186. }
  187. .box-content > div i {
  188. display: inline-block;
  189. font-size: 48px;
  190. margin-right: 5px;
  191. font-weight: 600;
  192. margin-top: 5px;
  193. }
  194. .footer {
  195. position: relative;
  196. padding-bottom: 20px;
  197. display: flex;
  198. width: 60%;
  199. margin: 0 auto;
  200. }
  201. .footer a {
  202. flex: 1;
  203. height: 70px;
  204. line-height: 70px;
  205. text-align: center;
  206. align-items: center;
  207. justify-content: center;
  208. display: flex;
  209. color: #fff;
  210. font-weight: 600;
  211. font-size: 22px;
  212. background: url('../images/footer-item.png') no-repeat;
  213. background-size: 100% 100%;
  214. }
  215. .footer a img {
  216. width: 35px;
  217. height: 35px;
  218. margin-right: 15px;
  219. }
  220. .footer a:hover {
  221. background: url('../images/footer-item-checked.png') no-repeat;
  222. background-size: 100% 100%;
  223. color: #15f7ff;
  224. }
  225. .my-panel .content {
  226. height: calc(100% - 60px);
  227. }
  228. .panel-title {
  229. position: relative;
  230. height: 60px;
  231. line-height: 60px;
  232. padding-left: 6%;
  233. background: url('../images/title-bg.png') no-repeat;
  234. background-size: 100% 100%;
  235. }
  236. .panel-title .text {
  237. font-size: 32px;
  238. font-weight: 600;
  239. color: #daf9ff;
  240. }
  241. .panel-title .right-opr {
  242. position: absolute;
  243. right: 0;
  244. width: 80px;
  245. }
  246. .list {
  247. flex: 1;
  248. padding: 15px;
  249. }
  250. .list .list-item {
  251. display: flex;
  252. align-items: center;
  253. margin: 15px 0;
  254. border: 1px solid #69c0ff3f;
  255. padding: 20px;
  256. }
  257. .list .list-item > i {
  258. margin-right: 15px;
  259. width: 35px;
  260. height: 35px;
  261. line-height: 35px;
  262. text-align: center;
  263. background: #69c0ff3f;
  264. border-radius: 4px;
  265. color: #69c0ff;
  266. }
  267. .list-item i.num {
  268. font-size: 30px;
  269. color: #69c0ff;
  270. margin-right: 10px;
  271. }
  272. .s-title {
  273. text-align: center;
  274. font-size: 24px;
  275. margin-bottom: 20px;
  276. font-weight: 600;
  277. }
  278. .yujing {
  279. display: flex;
  280. padding: 15px 10px 12px;
  281. }
  282. .yujing > div {
  283. background-color: #05507b4c;
  284. margin: 0 15px;
  285. padding: 15px 30px;
  286. border-radius: 10px;
  287. }
  288. .el-progress-bar__outer {
  289. background-color: #17436d !important;
  290. }
  291. .el-progress__text {
  292. color: #f5f7fa;
  293. }
  294. .box-center {
  295. flex: 1;
  296. display: flex;
  297. flex-direction: column;
  298. background: url('../images/sex-bg.png') no-repeat center;
  299. background-size: 100% 100%;
  300. padding: 1.5%;
  301. margin: 0 10px;
  302. }
  303. .box-center > div {
  304. text-align: center;
  305. flex: 1;
  306. height: 150px;
  307. }
  308. .box-center > div.t {
  309. background-color: rgb(18 81 128 / 22%);
  310. margin-bottom: 20px;
  311. padding-top: 1%;
  312. }
  313. .box-center > div.flex {
  314. margin: 0 -10px;
  315. }
  316. .box-center > div.flex > div {
  317. flex: 1;
  318. margin: 0 10px;
  319. padding-top: 1.3%;
  320. background-color: rgb(18 81 128 / 22%);
  321. }
  322. .box-center > div p:nth-child(1) {
  323. font-size: 45px;
  324. font-weight: 800;
  325. color: #69c0ff;
  326. margin-bottom: 15px;
  327. }
  328. .box-center > div p:nth-child(2) {
  329. font-size: 24px;
  330. color: #e4f8ff;
  331. }
  332. .box-center > div span {
  333. font-size: 24px;
  334. margin-left: 10px;
  335. }
  336. .dv-scroll-board .header {
  337. font-size: 24px !important;
  338. font-weight: 600 !important;
  339. background-color: rgba(105, 192, 255, 0.1) !important;
  340. }
  341. .dv-scroll-board .rows .row-item {
  342. font-size: 22px !important;
  343. }
  344. .tip-window {
  345. margin-right: 50px;
  346. margin-top: 10px;
  347. color: #69c0ff;
  348. display: inline-block;
  349. width: 142px;
  350. height: 50px;
  351. line-height: 50px;
  352. text-align: center;
  353. background-color: rgba(64, 169, 255, 0.12);
  354. border: 2px solid #40a9ff;
  355. border-radius: 8px;
  356. cursor: pointer;
  357. }
  358. .tip-window2 {
  359. margin-right: 50px;
  360. margin-top: 10px;
  361. color: #69c0ff;
  362. display: inline-block;
  363. width: 170px;
  364. height: 50px;
  365. line-height: 50px;
  366. text-align: center;
  367. background-color: rgba(64, 169, 255, 0.12);
  368. border: 2px solid #40a9ff;
  369. border-radius: 8px;
  370. cursor: pointer;
  371. margin-left: calc(34% - 85px);
  372. }
  373. .tip {
  374. /* position: fixed;
  375. background-color: rgba(0, 0, 0, 0.5);
  376. width: 100%;
  377. height: 100%;
  378. top: 0;
  379. left: 0; */
  380. }
  381. .tip-box {
  382. position: absolute;
  383. /* top: 35%;
  384. left: 32.5%; */
  385. /* width: 35%;
  386. height: 30%; */
  387. width: 1200px;
  388. height: 850px;
  389. top: calc(50% - 375px);
  390. left: calc(50% - 600px);
  391. background: url('../images/alert.png') no-repeat center;
  392. background-color: #133b65;
  393. background-size: 100% 100%;
  394. padding: 100px 60px 50px;
  395. }
  396. .tip-box > div {
  397. font-size: 42px;
  398. line-height: 70px;
  399. }
  400. .light {
  401. display: inline-block;
  402. width: 24px;
  403. height: 24px;
  404. border-radius: 50%;
  405. background-size: 100% 100%;
  406. }
  407. .red {
  408. background: url('../images/red.png');
  409. }
  410. .green {
  411. background: url('../images/green.png');
  412. }
  413. .yellow {
  414. background: url('../images/yellow.png');
  415. }
  416. .lightOut {
  417. display: flex;
  418. width: 100%;
  419. height: 100%;
  420. align-items: center;
  421. justify-content: center;
  422. }
  423. .tip-content {
  424. height: 95%;
  425. overflow: auto;
  426. padding-right: 15px;
  427. margin-top: 2%;
  428. }
  429. div::-webkit-scrollbar {
  430. width: 4px;
  431. }
  432. div::-webkit-scrollbar-thumb {
  433. border-radius: 10px;
  434. background: rgba(64, 169, 255, 0.6);
  435. }
  436. div::-webkit-scrollbar-track {
  437. border-radius: 0;
  438. background: rgba(64, 169, 255, 0.3);
  439. }
  440. .icon {
  441. width: 35px;
  442. height: 35px;
  443. display: flex;
  444. align-items: center;
  445. justify-content: center;
  446. font-weight: bold;
  447. position: absolute;
  448. top: 8px;
  449. left: 400px;
  450. background-color: rgba(64, 169, 255, 0.12);
  451. border: 2px solid #40a9ff;
  452. cursor: pointer;
  453. border-radius: 50%;
  454. font-size: 24px;
  455. }
  456. * {
  457. -webkit-user-select: none;
  458. -moz-user-select: none;
  459. -ms-user-select: none;
  460. user-select: none;
  461. }