index.css 7.0 KB

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