index.css 7.5 KB

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