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
78
79
80
81
| // 背景图
| .c0{
| background-image:url('../assets/img/loginBackground.jpg');
| height:100vh;
| background-size: cover;
| }
|
| // 背景图
| .c{
| // background-image:url('../assets/img/loginBackground.jpg');
| width:100vw;
| height:100%;
| // background-size: cover;
| }
| .bg{
| width:100%;
| height:100vh;
| background: rgba(255,255,255,0.2);
| display: flex;
| justify-content: center;
|
| }
|
| .main{
| margin-top: 70px;
| // 返回上一頁的樣式
| .main-title {
| border-left: 5px solid rgb(16, 71, 247);
| padding-left: 10px;
| margin: 20px 0;
| position: relative;
| & p {
| font-weight: 700;
| }
| }
| }
|
| // 按钮
| .deepBlue{
| background:rgb(16,71,247);
| color:white;
| border:none;
| &:hover{
| background-color:rgb(45, 92, 248) ;
| 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-track {
| // background-color: #ccc;
| // }
| ::-webkit-scrollbar-thumb {
| background-color: #666;
| }
| ul,li{
| list-style: none;
| }
|
|