zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
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
#login_wrap{
    width: 100%;
    height: 100%;
    background: url("../image/login_bg.png") center center no-repeat;
    background-size: cover;
    position: fixed;
}
#login_area{
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* /* bottom: 0; */
    margin: auto;
    padding-top: 60px;
    width: 520px;
    /* height: 540px; */
    background: #FFFFFF;
    /* background: #fff url("../image/left_img_area.png") left top no-repeat;
    background-size: contain; */
    box-shadow:0px 26px 36px 0px rgba(0,0,0,0.36);
    border-radius:6px;
}
#login_area_inner_wrap{
    text-align: center;
    /* position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 380px; */
}
#system_logo_img{
    margin: 60px auto 24px;
    width: 180px;
    height: auto;
    /* display: block;
    margin-left: 58px;
    margin-top: 35px; */
}
.login_title {
    margin-bottom: 24px;
    font-size: 30px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #000000;
}
.login_input{
    /* display: block; */
    margin-bottom: 24px;
    width:440px;
    height:56px;
    background:#fff;
    border: 0;
    font-size:16px;
    font-family:PingFangSC-Regular;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:48px;
    text-indent: 16px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
}
.login_input:focus{
    border-color: #0281F0;
}
.login_input::-webkit-input-placeholder{
    color:#e5e5e5;
}
.login_input_img{
    position: absolute;
    right: 56px;
    top: 14px;
    width: 20px;
}
#graphical_verification_code_input{
    display: inline-block;
    /* margin-top: 26px; */
    width:260px;
    height:48px;
    /* background:rgba(248,248,248,1); */
    /* border-radius:6px; */
    /* border: 0; */
    /* font-size:14px; */
    /* font-family:PingFangSC-Regular; */
    /* font-weight:bold; */
    /* color:rgba(34,34,34,1); */
    /* line-height:48px; */
    /* text-indent: 16px; */
    margin-right: 10px;
}
#short_message_verification_code_input{
    display: inline-block;
    /* margin-top: 26px; */
    width:260px;
    height:48px;
    /* background:rgba(248,248,248,1); */
    /* border-radius:6px; */
    /* border: 0; */
    /* font-size:14px;
    font-family:PingFangSC-Regular;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:48px;
    text-indent: 16px; */
    margin-right: 10px;
}
#get_short_message_verification_code_btn{
    cursor: pointer;
    display: inline-block;
    width:160px;
    height:48px;
    line-height: 48px;
    background:rgba(248,236,218,1);
    border-radius:6px;
    font-size:14px;
    font-family:PingFangSC-Regular;
    font-weight:400;
    color:rgba(162,116,52,1);
    text-align: center;
    cursor: pointer;
}
.retrieve{
    background:rgba(238,238,238,1) !important;
    color:rgba(170,170,170,1) !important;
}
#verification_code_img{
    display: inline-block;
    width:160px;
    height:40px;
}
#login_commit_btn{
    display: block;
    text-align: center;
    width:440px;
    height:56px;
    font-size:20px;
    font-family:PingFangSC-Regular;
    font-weight:400;
    color:rgba(255,255,255,1);
    line-height: 56px;
    margin: 24px auto 60px;
    cursor: pointer;
    background: #0281F0;
    border-radius: 10px;
}