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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| @charset "UTF-8";
| .c0 {
| background-image: url("../assets/img/loginBackground.jpg");
| height: 100vh;
| background-size: cover;
| }
|
| .c {
| width: 100vw;
| height: 100%;
| }
|
| .bg {
| width: 100%;
| height: 100vh;
| background: rgba(255, 255, 255, 0.2);
| display: flex;
| justify-content: center;
| }
|
| .main {
| margin-top: 70px;
| }
|
| .main .main-title {
| border-left: 5px solid #1047f7;
| padding-left: 10px;
| margin: 20px 0;
| position: relative;
| }
|
| .main .main-title p {
| font-weight: 700;
| }
|
| .deepBlue {
| background: #1047f7;
| color: white;
| border: none;
| }
|
| .deepBlue:hover {
| background-color: #2d5cf8;
| color: white;
| }
|
| .flex {
| display: flex;
| }
|
| .back {
| position: absolute;
| top: 0px;
| left: -30px;
| cursor: pointer;
| }
|
| .content {
| width: 1262px;
| margin-bottom: 80px;
| background-color: #fff;
| padding: 20px 40px;
| border-radius: 10px;
| }
|
| /* //element-ui table的去除右侧滚动条的样式 */
| ::-webkit-scrollbar {
| width: 4px;
| }
|
| ::-webkit-scrollbar-thumb {
| background-color: #666;
| }
|
| ul, li {
| list-style: none;
| }
|
|