index.css 6.6 KB

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