index.css 7.3 KB

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