body{
    background: url(../img/login_background.jpg) no-repeat center center;
    background-size:cover;
    background-attachment:fixed;
    padding: 0;
    margin: 0;
    font-family: "Microsoft YaHei", sans-serif;
}
.container{
    width: 100%;
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-bottom: 126px;
}
.login-box{
    width: 360px;
    min-height: 240px;
    border: 1px solid white;
    padding: 9px 9px 9px 9px;
    margin: 60px auto 60px auto;
    display: flex;
    background: rgba(255,255,255,0.3);
}
.login-main-part{
    background: white;
    width: 100%;
    box-sizing: border-box;
    padding-top: 36px;
}

.login-img{
    text-align: center;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
}

.login-btn-line{
    display: flex;
    justify-content: center;
    width: 280px;
    margin: 0 auto;
}
.login-btn{
    width: 280px;
    height: 36px;
    border: 0;
    line-height: 36px;
    background: linear-gradient(to right, #00A1E0, #1C8DC8);
    font-size: 16px;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

h1{
	color: white;
	position: absolute;
	width: 200px;
    margin: auto;
    left: 200px;
    line-height: 32px;
    font-size: 30px;
    padding-bottom: 18px;
}
.login-f-one-line{
    display: flex;
    align-items: center;
    width: 280px;
    height: 36px;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    position: relative;
}
.login-f-one-line>div:first-of-type{
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-f-one-line>input{
    height: 32px;
    line-height: 32px;
    padding-left: 0px;
    font-size: 16px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    border: none;
    outline: none;
    flex-grow: 1;
    position: relative;
    z-index: 100;
    background: none;
}

.login-f-one-line>input:focus+span{
    opacity: 0;
}
.login-f-one-line>input.input-has-value+span{
    opacity: 0;
}
.login-f-one-line>div>img{
    user-select: none;
}

.form-input-placeholder{
    position: absolute;
    color: #d9d9d9;
    height: 30px;
    top: 3px;
    left: 36px;
    display: flex;
    align-items: center;
    user-select: none;
    pointer-events: none;
    z-index: 10;
    font-size: 16px;
}
.login-user-icon{
    width: 20px;
    height: 20px;
}
.login-pwd-icon{
    width: 22px;
    height: 22px;
}

.sp-msg-line{
    padding-top: 5px;
    padding-bottom: 5px;
    width: 280px;
    margin: 0 auto;
    font-size: 14px;
}
.sp-msg-line>span{
    color: #ff3300;
    line-height: 18px;
    font-size: 14px;
    display: inline-block;
}
