index.css 6.2 KB

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