1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
@charset "utf-8";
/* CSS Document */
body {
    height: 100%;
    overflow-y: hidden;
}
/*登录界面样式*/
#main{
    width:100%;
    height:500px;
    position:relative;
    border:1px solid #fafafa;
    background:url(../image/main_bg.png) no-repeat 30% 0;
    background-color:#ccc;
    }
#main_cont{
    width:294px;
    background-color:#FFF;
    border:1px solid #CCC;
    position:absolute;
    left:70%;
    margin-left:-135px;
    margin-top:60px;
    }
#main_top{
    width:100%;
    height:48px;
    background:url(../image/main_top_bg.jpg) repeat-x;
    color:#7e7e76;
    font-size:18px;
    font-weight:bold;
    text-align:center;
    }
#main_top p{
    display:block;
    width:100%;
    height:48px;
    line-height:56px;
    }
#user_t,#password_t{
    margin-left:20px;
    margin-top:30px;
    }
#user,#password{
    width:220px;
    height:42px;
    border:1px solid #666;
    margin-top:6px;
    margin-left:20px;
    line-height:42px;
    text-align:left;
    border:1px solid #ebebeb;
    }
#user{
    background:url(../image/user_ac_bg.gif) no-repeat 6px 12px;
    padding-left: 30px;
    }
.user_bg{
    background:url(../image/user_ac_bg.gif) no-repeat 6px 12px;
}
 
#password{
    background:url(../image/psd_ac_bg.gif) no-repeat 6px 12px;
    padding-left: 30px;
    }
.pwd_bg{
    background:url(../image/psd_ac_bg.gif) no-repeat 6px 12px;
}
#check{
    margin:10px 8px 10px 20px;
    }
#msg{
    margin-left:80px;
    color:#F00;
    }
#sub{
    width:200px;
    height:38px;
    background-color:white;
    background:url(../image/btn_bg.gif) repeat-x;
    color:#FFF;
    font-size:16px;
    letter-spacing:12px;
    overflow:hidden;
    -moz-border-radius: 3px;      /* Gecko browsers */
    -webkit-border-radius: 3px;   /* Webkit browsers */
    border-radius:3px;            /* W3C syntax */
    margin-top:20px;
    margin-bottom:30px;
    margin-left:47px;
    cursor:pointer;
    }
 
#main_footer{
    width:100%;
    height:30px;
    background:url(../image/main_footer_bg.gif) repeat-x;
    margin-top:30px;
}
 
.user-img {
    position:absolute;
    width: 30px;
    height: 42px;
    margin-top:7px;
    margin-left:21px;
    background:url(../image/user_ac_bg.gif) no-repeat 6px 12px;
    background-color: #fff;
}
.psd-img {
    position:absolute;
    width: 30px;
    height: 42px;
    margin-top:7px;
    margin-left:21px;
    background:url(../image/psd_ac_bg.gif) no-repeat 6px 12px;
    background-color: #fff;
}
 
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}