index.css 6.1 KB

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