index5.css 7.6 KB

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