index.css 8.4 KB

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