*{
    margin: 0;
    padding: 0;
}
html {
    height: 100%;
    background-image: url("../../../Content/img/page_bg.png");
    background-repeat: no-repeat;
    font-size: 16px !important;
    background-size: cover;
    background-position: center 0;
    background-attachment: fixed;
}
body {
    height:100%;
}
header{
    width: 100%;
    padding: 48px 56px 0;
    box-sizing: border-box;
}
header h2 {
    font: 19px/48px "";
    color: #a5a5a5;
}
footer{
    width: 100%;
    position: fixed;
    bottom: 0;
}
footer .copy {
    width: 100%;
    font: 12px/72px "";
    color: #DFE6EA;
    text-align: center;
}
.container {
    width: 100%;
    height: calc(100% - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .titleBox{
   margin-right:5%;
}
    .container .titleBox .mainTitle {
        font-size: 3rem;
        margin-bottom: 30px;
        color: #ffffff;
        font-weight: bold;
        text-align: right;
    }
.container .titleBox .sub{
    font: 24px/48px "";
    color: #ffffff;
    text-align: right;
    font-weight:bold;
}
    .container .loginBox {
        width: 420px;
        min-width: 420px;
        height: 523px;
        background-color: #ffffff;
        border-radius: 9px;
        box-sizing: border-box;
        padding: 0 40px;
    }
.container .loginBox .logoBar{
    height: 240px;
    text-align: center;
    position: relative;
}
.container .loginBox .logoBar img{
    left: 50%;
    margin-left: -42px;
    top:60px;
    position: absolute;
}
    .container .loginBox .logoBar .welcome {
        font-size: 16px;
        line-height: 72px;
        font-weight: bold;
        color: #333333;
        position: absolute;
        bottom: 24px;
        left: 0;
        width: 100%;
        text-align: center;
    }
.container .loginBox #login{
    width: 100%;
}
.container .loginBox #login .inputBox{
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding-left:48px;
    border-radius: 10px;
    border: 1px solid #90a8cc;
    position: relative;
}
.container .loginBox #login .inputBox span{
    position: absolute;
    width: 48px;
    height: 48px;
    border-right: 1px solid #90a8cc;
    left: 0;
    top: 0;
    background-size: 16px 16px;
}
.container .loginBox #login .inputBox span.iconUser{
    background: url("../../../Content/img/icon-userName.png") no-repeat center center;
}
.container .loginBox #login .inputBox span.iconPwd{
    background: url("../../../Content/img/icon-password.png") no-repeat center center;
}
::-webkit-input-placeholder {

    color: #7f90a4;

}
:-moz-placeholder {/* Firefox 18- */

    color: #7f90a4;
}

::-moz-placeholder{/* Firefox 19+ */

    color: #7f90a4;

}

:-ms-input-placeholder {

    color: #7f90a4;

}
.container .loginBox #login .inputBox input{
    width: 98%;
    height: 100%;
    border: none;
    outline: none;
    text-indent: 16px;
    border-radius: 5px;
}
.container .loginBox #login .checkInfo{
    height: 56px;
    position: relative;
}
.container .loginBox #login .checkRegister a {
    font: 12px/56px "";
    color: #50A2FE;
    float: right;
    text-decoration: underline;
}
.container .loginBox #login .checkInfo .checkIn{
    position: absolute;
    top: 50%;
    margin-top: -5px;
}
.container .loginBox #login .checkInfo ._sub{
    display: inline-block;
    text-indent: 18px;
    color: #666666;
    font: 12px/56px "";
}
.container .loginBox #login .loginBtn{
    width: 100%;
    height: 48px;
    border: none;
    text-align: center;
    font: 18px/48px "";
    color: #ffffff;
    border-radius: 5px;
    background: -webkit-linear-gradient(left, #1fc4fe , #0cabfa); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #1fc4fe, #0cabfa); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #1fc4fe, #0cabfa); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #1fc4fe , #0cabfa); /* 标准的语法 */
    cursor:pointer;
}



.container .loginBox #login .loginList {
    height: 75px;
}
.container .loginBox #login .loginList .error_prompt {
    color: red;
    margin-left: 48px;
    display: none;
    font-size:10px;
}