login.css
1.22 KB
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
@charset "utf-8";
/* CSS Document */
* { font: 13px/1.5 '微软雅黑'; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -box-sizing: border-box; padding:0; margin:0; list-style:none; box-sizing: border-box; }
html, body {
height: 100%;
}
.bai_img {
display: flex;
flex-direction: column;
justify-content: center;
background: url('/resource/bai_img.png') no-repeat;
height: 250px;
}
body {
background: url('/resource/bg_img.png') no-repeat;
background-size: cover;
}
.login {
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
width: 100%;
}
.login_box {
background: url('/resource/frame_img.png') no-repeat;
height: 385px;
width: 583px;
position: absolute;
right: calc(20% - 50px);
padding: 30px;
}
.input {
padding-top: 48px;
padding-left: 68px;
}
.input label {
font-size: 20px;
margin-right: 19px;
padding-top: 2px;
}
.input input {
width: 320px;
height: 39px;
font-size: 14px;
}
.input img {
position: absolute;
margin-left: -25px;
margin-top: 10px;
}
.login_btn {
margin-left: 131px;
width: 320px;
height: 46px;
margin-top: 60px;
background-color: #3366cc;
color: white;
font-size: 16px;
border-radius: 5px;
}