html{
    width: 100%;
    height: 100%;
}
body{
    width: 100%;
    height: 100%;
    background: url(images/bg.png);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.logo{
    width: 100%;
    display: flex;
    justify-content: center;
}
.logo-img{
    width: 43px;
    height: 43px;
}
.logo-name{
    font-size: 24px;
    color: #1890ff;
    line-height: 43px;
    margin-left: 15px;
}
.logo-show{
    width: 100%;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    text-align: center;
    margin-top: 20px;
}
.login-form{
    width: 368px;
    margin: 45px auto;
}
.input-username{
    width: 368px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 4px;
    border: solid 1px #d9d9d9;
    line-height: 24px;
    font-size: 16px;
    text-indent: 40px;
}
.input-password{
    width: 368px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 4px;
    border: solid 1px #d9d9d9;
    line-height: 24px;
    font-size: 16px;
    margin-top: 13px;
    text-indent: 40px;
}

input::-webkit-input-placeholder {
    /* 修改字体颜色 */
    color: rgba(0, 0, 0, 0.25);
    /* 修改字号，默认继承input */
    font-size: 16px;
}

.input-icon{
    position: relative;
    top: -31px;
    left: 13px;
}
.login-helper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


input[type="checkbox"]{
    position: relative;
    top: -2px;
    width: 16px;
	height: 16px;
	background-color: #ffffff;
	border-radius: 2px;
	border: solid 1px #d9d9d9;
}
input[type="checkbox"]::before{content: "";position: absolute;top: 0;left: 0;background: #fff;width: 100%;height: 100%;border: 1px solid #d9d9d9}
input[type="checkbox"]:checked::before{
    content: "\2713";
    background-color: #fff;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    border: 1px solid skyblue;
    color:skyblue;
    font-size: 10px;
    font-weight: bold;
    text-indent: 2px;
    line-height: 16px;
}

.rember-font{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    margin-left: 8px;
    cursor: pointer;
}
.forget-font{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
}
.rember-font:hover{
    color: #1890ff;
}
.forget-font:hover{
    color: #1890ff;
}
.login-kong{
    width: 100%;
    height: 100px;
}
.login-form button{
    background-color: #1890ff;
    border-radius: 4px;
    width: 100%;
    color: #fff;
    height: 40px;
    border: none;
    margin-top: 15px;
}
.login-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    color: rgba(0, 0, 0, 0.45);
    font-size: 12px;
}
.copy-top{
    margin-top: 25px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}
.mid-font{
    margin-left: 40px;
    margin-right: 40px;
}