1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| .mk-app-check {
| background: #fff;
| min-height: 100vh;
| padding: 70px 30px;
|
| .ant-spin {
| position: fixed;
| z-index: 2;
| left: calc(50% - 22px);
| top: 50%;
| }
| .view-wrap {
| width: 100%;
| position: relative;
|
| .action {
| .ant-btn {
| color: #fff!important;
| background-color: #1890ff!important;
| border-color: #1890ff!important;
| }
| }
| .menu-msg {
| margin-top: 15px;
| color: #1890ff;
| span {
| display: inline-block;
| width: 20px;
| height: 15px;
| }
| }
| .item-wrap {
| width: 50%;
| display: inline-block;
| margin-top: 30px;
| color: rgba(0, 0, 0, 0.85);
| vertical-align: top;
| .title {
| color: #1890ff;
| border-bottom: 1px solid rgba(0, 0, 0, 0.1);
| margin-bottom: 10px;
| margin-right: 20px;
| padding-bottom: 5px;
| }
| span {
| display: inline-block;
| width: 20px;
| height: 15px;
| }
| }
| }
| }
|
|