*{
    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;
    display: flex;
    justify-content: center;
    align-items: center;
}
header {
    width: 100%;
    padding: 48px 56px 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
}
header h2 {
    font: 19px/48px "";
    color: #a5a5a5;
}
footer{
    width: 100%;
    position: fixed;
    bottom: 0;
    left:0;
}
footer .copy {
    width: 100%;
    font: 12px/72px "";
    color: #DFE6EA;
    text-align: center;
}
.container{
    width: 100%;
    position: relative;
}
.container .registerBox{
    margin :28px auto;
    width: 600px;
    background-color: #ffffff;
    border-radius: 9px;
    box-sizing: border-box;
    padding: 0 70px;
    overflow:hidden;
}
.container .registerBox .logoBar{
    height: 200px;
    text-align: center;
    position: relative;
}
.container .registerBox .logoBar img{
    width:75px;
    left: 50%;
    margin-left: -42px;
    top:48px;
    position: absolute;
}
.container .registerBox .logoBar .welcome{
    font-size:17px;
    line-height:72px;
    font-weight:bold;
    color: #333333;
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    text-align: center;
}

.container .registerBox #register {
    width: 100%;
}
.container .registerBox #register .inputBox{
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    padding-left:48px;
    border-radius: 10px;
    border: 1px solid #90a8cc;
    position: relative;
    //margin-top: 10px;
}
.container .registerBox #register .code {
    width: 75%;
    float:left;
}
.container .registerBox #register .inputBox span{
    position: absolute;
    width: 45px;
    height: 45px;
    border-right: 1px solid #90a8cc;
    left: 0;
    top: 0;
    background-size: 16px 16px;
}
.container .registerBox #register .inputBox span.iconUser{
    background: url("../../../Content/img/icon-userName.png") no-repeat center center;
}
.container .registerBox #register .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 .registerBox #register .inputBox input{
    width: 98%;
    height: 100%;
    border: none;
    outline: none;
    text-indent: 16px;
    border-radius: 5px;
}
.container .registerBox #register .registerBtn{
    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); /* 标准的语法 */
    margin-top:20px;
    cursor:pointer;
}

.container .registerBox .checkRegister{
    margin-bottom: 15px;
}
    .container .registerBox .checkRegister a {
        font: 12px/56px "";
        color: #50A2FE;
        text-decoration: underline;
    }

.container .registerBox #register .error_prompt {
    color:red;
    margin-left:48px;
    display:none;
    float:left;
    font-size:10px;
}
.container .registerBox #register .registerList {
    height:70px;
}