cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
@charset "utf-8";
/* CSS Document */
body{
    margin:0;
    padding:0;
    background:url("../images/login.jpg") center 100px no-repeat;
    }
    
.loginwrap{
    width:1000px;
    margin:0 auto;
    }    
.logintop{
    background:url("../images/logo.jpg") left 20px no-repeat;
    height:100px;
    font-size:32px;
    font-family:microsoft yahei;
    color:#333;
    padding-left:100px;
    line-height:100px;
    }
.logincon{
    height:600px;
    }
.loginuser{
    float:right;
    margin:121px 26px 0 0;
    background:#fff;
    width:350px;
    height:360px;
    box-sizing:border-box;
    -webkit-box-shadow:0 3px 0px rgba(28, 127, 182, .5);
    -moz-box-shadow:0 3px 0px rgba(28, 127, 182, .5);
    box-shadow:0 3px 0px rgba(28, 127, 182, .5);    
    }
.loginuser h2{
    font-weight:normal;
    color:#222;
    margin:0;
    padding:12px 20px;
    border-bottom:solid 1px #dedede;
    margin-bottom:29px;
    }
.loginuser h2 span{
    display:inline-block;
    border-left:solid 4px #039be1;
    padding-left:15px;
    font-size:20px;
    color:#444;
    font-family: "Microsoft YaHei", sans-serif;
    line-height:23px;
    float:lelft;
    }    
.loginuser h2 em{
    font-style:normal;
    font-size:12px;
    color:#999;
    float:right;
    font-family: "Microsoft YaHei", sans-serif;
    padding-top:11px;
    }    
.loginuser div{
    box-sizing:border-box;
    margin:0 35px 20px 35px;
    padding:0;
    height:40px;
    border:solid 1px #d2d2d2;
    }
.loginuser div:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    overflow: hidden;
}
.loginuser div .icon{
    width:40px;
    height:40px;
    float:left;
    background:url("../images/user.png") 5px 6px no-repeat;
    margin:0;
    border:0;
    }
.loginuser div .icon2{
    width:40px;
    height:40px;
    float:left;
    background:url("../images/lock.png") 5px 6px no-repeat;
    margin:0;
    border:0;
    }    
.loginuser div p{
    float:left;
    width:237px;
    height:40px;
    position:relative;
    margin:0;
    padding:0;
    }    
.loginuser div p input{
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
    height:38px;
    line-height: 38px;
    width: 100%;
    border: 0;
    font-family: "Microsoft YaHei", sans-serif;
    
    background:#fff;
    position:absolute;
    left:0;
    top:0;
}    
.loginuser div p span{
    position:absolute;
    top:8px;
    color:#999;
    z-index:3;
    font-family: "Microsoft YaHei", sans-serif;
    }    
.loginuser div.small{
    border:0;
    }
.loginuser div.small p{
    width:124px;
    height:38px;
    border:solid 1px #d2d2d2;
    float:left;
    }    
.loginuser div.small input{
    width:100%;
    height:38px;
    line-height:38px;
    float:left;
    background:none;
    padding-left:6px;
    }    
.loginuser div p span.small{
    left:8px;
    }    
.loginuser div em{
    font-style:normal;
    font-size:12px;
    line-height:14px;
    color:#999;
    float:left;
    padding-top:7px;
    }
.loginuser div em.yzm{
    width:83px;
    height:38px;
    display:inline-block;
    margin:0 3px;
    float:left;
    padding-top:4px;
    }    
    
.loginuser div em a{color:#005aa0;display:block;}        
.loginbtn,.loginreset{
    background:#2face6;
    color:#fff;
    font-size:16px;
    height:36px;
    line-height:36px;
    width:123px;
    border:0;
    cursor:pointer;
    font-family: "Microsoft YaHei", sans-serif;
    margin:5px 0 0 35px;
    float:left;
    }
.loginreset{
    background:#bbb;
    float:right;
    margin:5px 35px 0 0;
    }    
.loginuser div.login-msg {
     margin:70px 35px 20px 35px;
    overflow: hidden;
    zoom:1;
    clear:both;    
    border:0;
    white-space: normal;
    word-wrap: break-word;
    padding:0 0 0 30px;
    height:34px;
    line-height:34px;
    font-size:12px;
    color:#333;
    border: 1px solid #ffb4a8;
    background: #fef2f2 url("../images/error.png") 8px 8px no-repeat;
    font-family: "Microsoft YaHei", sans-serif;
}                        
footer{
    font-size:12px;
    font-family: "Microsoft YaHei", sans-serif;
    color:#333;
    line-height:24px;
    text-align:center;
    padding-top:40px;
    }
footer p{margin:0;padding:0;}
footer p:first-child{color:#555}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #333;
}