index.css 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  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. }
  165. .center .top .box {
  166. flex: 1;
  167. padding: 20px 0;
  168. padding-bottom: 10px;
  169. /* background-color: rgba(105, 192, 255, 0.2); */
  170. /* padding-left: 8%; */
  171. display: flex;
  172. flex-direction: column;
  173. justify-content: center;
  174. margin: 0 10px;
  175. }
  176. .box-content {
  177. display: flex;
  178. align-items: center;
  179. justify-content: center;
  180. margin-top: 20px;
  181. }
  182. .box-content > div {
  183. margin-left: 30px;
  184. }
  185. .box-content > img {
  186. width: 138px;
  187. }
  188. .box-content > div p {
  189. font-size: 24px;
  190. color: #e4f8ff;
  191. }
  192. .box-content > div i {
  193. display: inline-block;
  194. font-size: 48px;
  195. margin-right: 5px;
  196. font-weight: 600;
  197. margin-top: 5px;
  198. }
  199. .tip-box-img {
  200. position: absolute;
  201. /* top: 35%;
  202. left: 32.5%; */
  203. /* width: 35%;
  204. height: 30%; */
  205. width: 2400px;
  206. height: 1250px;
  207. top: calc(50% - 640px);
  208. left: calc(50% - 1200px);
  209. background: url('../images/alert.png') no-repeat center;
  210. background-color: #133b65;
  211. background-size: 100% 100%;
  212. /* padding: 100px 60px 50px; */
  213. padding: 160px 50px 0px 50px ;
  214. }
  215. .footer {
  216. position: relative;
  217. padding-bottom: 20px;
  218. display: flex;
  219. justify-content: center;
  220. width: 100%;
  221. margin: 0 auto;
  222. }
  223. .footer a {
  224. /* flex: 1; */
  225. height: 70px;
  226. line-height: 70px;
  227. text-align: center;
  228. /* display: flex; */
  229. padding: 0 20px;
  230. color: #fff;
  231. font-weight: 600;
  232. font-size: 22px;
  233. background: url('../images/footer-item.png') no-repeat;
  234. background-size: 100% 100%;
  235. width: calc( 100% / 10);
  236. overflow: hidden;
  237. text-overflow: ellipsis;
  238. white-space: nowrap;
  239. }
  240. .footer a img {
  241. width: 35px;
  242. height: 35px;
  243. margin-right: 15px;
  244. }
  245. .footer a:hover {
  246. background: url('../images/footer-item-checked.png') no-repeat;
  247. background-size: 100% 100%;
  248. color: #15f7ff;
  249. }
  250. .my-panel .content {
  251. height: calc(100% - 60px);
  252. }
  253. .panel-title {
  254. position: relative;
  255. height: 60px;
  256. line-height: 60px;
  257. padding-left: 6%;
  258. background: url('../images/title-bg.png') no-repeat;
  259. background-size: 100% 100%;
  260. }
  261. .panel-title .text {
  262. font-size: 32px;
  263. font-weight: 600;
  264. color: #daf9ff;
  265. }
  266. .panel-title .right-opr {
  267. position: absolute;
  268. right: 0;
  269. width: 80px;
  270. }
  271. .list {
  272. flex: 1;
  273. padding: 15px;
  274. }
  275. .list .list-item {
  276. display: flex;
  277. align-items: center;
  278. margin: 15px 0;
  279. border: 1px solid #69c0ff3f;
  280. padding: 20px;
  281. }
  282. .list .list-item > i {
  283. margin-right: 15px;
  284. width: 35px;
  285. height: 35px;
  286. line-height: 35px;
  287. text-align: center;
  288. background: #69c0ff3f;
  289. border-radius: 4px;
  290. color: #69c0ff;
  291. }
  292. .list-item i.num {
  293. font-size: 30px;
  294. color: #69c0ff;
  295. margin-right: 10px;
  296. }
  297. .s-title {
  298. text-align: center;
  299. font-size: 24px;
  300. margin-bottom: 20px;
  301. font-weight: 600;
  302. }
  303. .yujing {
  304. display: flex;
  305. padding: 15px 10px 12px;
  306. }
  307. .yujing > div {
  308. background-color: #05507b4c;
  309. margin: 0 15px;
  310. padding: 15px 30px;
  311. border-radius: 10px;
  312. }
  313. .el-progress-bar__outer {
  314. background-color: #17436d !important;
  315. }
  316. .el-progress__text {
  317. color: #f5f7fa;
  318. }
  319. .box-center {
  320. flex: 1;
  321. display: flex;
  322. flex-direction: column;
  323. background: url('../images/sex-bg.png') no-repeat center;
  324. background-size: 100% 100%;
  325. padding: 1.5%;
  326. margin: 0 10px;
  327. }
  328. .box-center > div {
  329. text-align: center;
  330. flex: 1;
  331. height: 150px;
  332. }
  333. .box-center > div.t {
  334. background-color: rgb(18 81 128 / 22%);
  335. margin-bottom: 20px;
  336. padding-top: 1%;
  337. }
  338. .box-center > div.flex {
  339. margin: 0 -10px;
  340. }
  341. .box-center > div.flex > div {
  342. flex: 1;
  343. margin: 0 10px;
  344. padding-top: 1.3%;
  345. background-color: rgb(18 81 128 / 22%);
  346. }
  347. .box-center > div p:nth-child(1) {
  348. font-size: 45px;
  349. font-weight: 800;
  350. color: #69c0ff;
  351. margin-bottom: 15px;
  352. }
  353. .box-center > div p:nth-child(2) {
  354. font-size: 24px;
  355. color: #e4f8ff;
  356. }
  357. .box-center > div span {
  358. font-size: 24px;
  359. margin-left: 10px;
  360. }
  361. .dv-scroll-board .header {
  362. font-size: 24px !important;
  363. font-weight: 600 !important;
  364. background-color: rgba(105, 192, 255, 0.1) !important;
  365. }
  366. .dv-scroll-board .rows .row-item {
  367. font-size: 22px !important;
  368. }
  369. .tip-window {
  370. margin-right: 50px;
  371. margin-top: 10px;
  372. color: #69c0ff;
  373. display: inline-block;
  374. width: 142px;
  375. height: 50px;
  376. line-height: 50px;
  377. text-align: center;
  378. background-color: rgba(64, 169, 255, 0.12);
  379. border: 2px solid #40a9ff;
  380. border-radius: 8px;
  381. cursor: pointer;
  382. }
  383. .tip-content-img {
  384. height: 95%;
  385. display: flex;
  386. align-items: center;
  387. justify-content: center;
  388. }
  389. .tip-window2 {
  390. color: #69c0ff;
  391. display: inline-block;
  392. width: 400px;
  393. height: 50px;
  394. line-height: 50px;
  395. text-align: center;
  396. background-color: rgba(64, 169, 255, 0.12);
  397. border: 2px solid #40a9ff;
  398. border-radius: 8px;
  399. cursor: pointer;
  400. margin: 0 auto;
  401. margin-top: 3px;
  402. display: block;
  403. font-size: 30px;
  404. /* margin-left: calc(34% - 85px); */
  405. }
  406. .tip {
  407. /* position: fixed;
  408. background-color: rgba(0, 0, 0, 0.5);
  409. width: 100%;
  410. height: 100%;
  411. top: 0;
  412. left: 0; */
  413. }
  414. .alignCenter {
  415. display: flex;
  416. flex-direction: column;
  417. justify-content: center;
  418. align-items: center;
  419. }
  420. .tip-box {
  421. position: absolute;
  422. /* width: 1800px;
  423. height: 1200px;
  424. top: calc(50% - 600px);
  425. left: calc(50% - 900px); */
  426. width: 2400px;
  427. height: 1250px;
  428. top: calc(50% - 640px);
  429. left: calc(50% - 1200px);
  430. background: url('../images/alert.png') no-repeat center;
  431. background-color: #133b65;
  432. background-size: 100% 100%;
  433. padding: 100px 60px 50px;
  434. }
  435. .tip-box > div {
  436. font-size: 42px;
  437. line-height: 70px;
  438. }
  439. .light {
  440. display: inline-block;
  441. width: 24px;
  442. height: 24px;
  443. border-radius: 50%;
  444. background-size: 100% 100%;
  445. }
  446. .red {
  447. background: url('../images/red.png');
  448. }
  449. .green {
  450. background: url('../images/green.png');
  451. }
  452. .yellow {
  453. background: url('../images/yellow.png');
  454. }
  455. .lightOut {
  456. display: flex;
  457. width: 100%;
  458. height: 100%;
  459. align-items: center;
  460. justify-content: center;
  461. }
  462. .tip-content {
  463. height: 95%;
  464. overflow: auto;
  465. padding-right: 15px;
  466. margin-top: 2%;
  467. }
  468. div::-webkit-scrollbar {
  469. width: 4px;
  470. }
  471. div::-webkit-scrollbar-thumb {
  472. border-radius: 10px;
  473. background: rgba(64, 169, 255, 0.6);
  474. }
  475. div::-webkit-scrollbar-track {
  476. border-radius: 0;
  477. background: rgba(64, 169, 255, 0.3);
  478. }
  479. .icon {
  480. width: 35px;
  481. height: 35px;
  482. display: flex;
  483. align-items: center;
  484. justify-content: center;
  485. font-weight: bold;
  486. position: absolute;
  487. top: 8px;
  488. left: 400px;
  489. background-color: rgba(64, 169, 255, 0.12);
  490. border: 2px solid #40a9ff;
  491. cursor: pointer;
  492. border-radius: 50%;
  493. font-size: 24px;
  494. }
  495. * {
  496. -webkit-user-select: none;
  497. -moz-user-select: none;
  498. -ms-user-select: none;
  499. user-select: none;
  500. }