index.css 9.3 KB

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