121 lines
2.3 KiB
CSS
121 lines
2.3 KiB
CSS
@charset "utf-8";
|
|
.loginWrapperBg {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background-image: url("../../images/newImage/loginBg.png");
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
z-index: -1;
|
|
}
|
|
.loginWrapper {
|
|
padding: 2.8rem 1.55rem 0;
|
|
}
|
|
.loginTitle {
|
|
font-size: 1.4rem;
|
|
color: #121c32;
|
|
padding: 0 0.45rem;
|
|
margin-bottom: 1.5rem;
|
|
position: relative;
|
|
}
|
|
.loginTitle img{
|
|
width: 3.13rem;
|
|
margin-right: 0.5rem;
|
|
vertical-align: middle;
|
|
}
|
|
.bindRole {
|
|
font-weight: bold;
|
|
margin-top: 1.34rem;
|
|
color: #575765;
|
|
}
|
|
.loginForm {
|
|
padding: 0 0.28rem;
|
|
}
|
|
.loginFormItem {
|
|
display: flex;
|
|
margin-top: 0.5rem;
|
|
padding: 0.5rem 0.22rem;
|
|
position: relative;
|
|
}
|
|
.loginFormItem:after {
|
|
height: 1px;
|
|
content: '';
|
|
width: 100%;
|
|
border-top: 1px solid #b9b8b8;
|
|
position: absolute;
|
|
bottom: -1px;
|
|
right: 0;
|
|
transform: scaleY(0.5);
|
|
-webkit-transform: scaleY(0.5);
|
|
}
|
|
.itemTitle {
|
|
/* width: 4rem; */
|
|
height: 2rem;
|
|
padding-right: 0.5rem;
|
|
font-size: 1rem;
|
|
line-height: 2rem;
|
|
color: #575765;
|
|
}
|
|
.itemInput {
|
|
width: 100%;
|
|
height: 2rem;
|
|
background: none;
|
|
padding-left: 0.5rem;
|
|
color: #575765;
|
|
font-size: 1rem;
|
|
flex: 1;
|
|
}
|
|
input.itemInput::-webkit-input-placeholder{
|
|
color:#cbcbcb;
|
|
}
|
|
input.itemInput::-moz-placeholder{ /* Mozilla Firefox 19+ */
|
|
color:#cbcbcb;
|
|
}
|
|
input.itemInput:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
|
|
color:#cbcbcb;
|
|
}
|
|
input.itemInput:-ms-input-placeholder{ /* Internet Explorer 10-11 */
|
|
color:#cbcbcb;
|
|
}
|
|
.loginFormSubmit {
|
|
width: 100%;
|
|
margin-top: 3rem;
|
|
margin-bottom:1rem;
|
|
height: 2.8rem;
|
|
background: rgba(96,96,96,0.18);
|
|
color: #fff;
|
|
font-size: 1rem;
|
|
border-radius: 3px;
|
|
font-weight: bold;
|
|
border-radius: 1.4rem;
|
|
}
|
|
.loginBtnActive {
|
|
background:#1589f9;
|
|
}
|
|
.loginTitle img.checkImg {
|
|
width: 1.26rem;
|
|
margin-right: 0.3rem;
|
|
}
|
|
.checkItem {
|
|
font-size: 0.95rem;
|
|
position: absolute;
|
|
right: -0.1rem;
|
|
top: 0.435rem;
|
|
border: 1px solid #ffb533;
|
|
color: #ffb533;
|
|
padding: 0.25rem 0.8rem 0.25rem 0.3rem;
|
|
border-radius: 1rem;
|
|
}
|
|
.arrowPosition {
|
|
position: absolute;
|
|
top: 1.4rem;
|
|
right: 0;
|
|
}
|
|
.arrow {
|
|
width: 0.5rem;
|
|
display: inline-block;
|
|
float: right;
|
|
}
|