html {
    width: 100%;
    height: 100%;
}
.register-box * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.text-center {
    text-align: center;
}
.padding-top {
    padding-top: 20px;
}
.padding-right {
    padding-right: 20px;
}
.blur {
    /*filter: url(blur.svg#blur);*/
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
}
.page-bg {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(/resources/common/images/login-bg2.jpg);
    background-size: cover;
}
.register-box {
    height: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding-top: 5%;
	background-image: url(/resources/common/images/login-bg2.jpg);
    background-size: cover;
}
.register-wrapper {
    width: 100%;
    height: 100%;
}
/* 登陆注册 */
.register-body-container {
    width: 560px;
    margin: 0 auto;
    background-color: #F5F8FD;
    padding: 40px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
   /*  behavior: url(/resources/common/css/PIE.htc); */
}
.register-body-container .button, .register-body-container .item-input input {
    width: 100%;
    height: 50px;
    
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
   /*  behavior: url(/resources/common/css/PIE.htc); */
    
    font-size: 18px;
    padding-left: 14px;
    border:none;
    /*border: 1px solid #ddd;*/
}
/*----------------------------------------------header-----------------------------------------*/
/* 标题 */
.register-body-container > .register-header {
    padding-bottom: 40px;
}

/* 注册页面的进度条 */
.register-step {
    height: 34px;
    margin-top: 20px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}
.register-step.step-1 {
     background-image: url(/resources/common/images/step-1.png);
}
.register-step.step-2 {
     background-image: url(/resources/common/images/step-2.png);
}
.register-step.step-3 {
     background-image: url(/resources/common/images/step-3.png);
}


/*----------------------------------------------body-----------------------------------------*/
.item-input-right-border {
    border: 1px solid #ddd;
    border-left-width: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
button:hover, .button:hover {
    cursor: pointer;
}
.register-body {
    display: none;
}
.register-body.active {
    display: block;
}

/* 登陆输入框 */
.register-body > .item-input {
    display: block;
    width: 100%;
}
/* 输入框 */
.register-body > .item-input > input {
    padding-left: 14px;
    padding-right: 20px;
    border: 1px solid #ddd;
    line-height: 50px;
    
}
/* 用户名 */
.register-body >  .item-input.user-name {
    margin-bottom: 20px;
}
/* 密码, 识别码 */
.register-body >  .item-input.password, .item-input.check-code {
    position: relative;
}


.register-body > .item-input.password > .forget-pwd > a {
    color: #3d5266;
}
.register-body > .item-input.password > .forget-pwd > a:hover {
    color: #3399ff;
}

/* focu状态时 input的边框 */
.register-body > .item-input > input:focus {
    border: 2px solid #3399ff;
}

/* 错误消息 */
.register-body > .item-input > .error-msg {
    padding: 13px 0 0 20px;
    font-size: 14px;
    color: #ef473a;
    display: none;
}
/* 错误消息显示 */
.register-body > .item-input.error .error-msg {
    display: block;
}


/* 识别码输入框 */
.register-body > .item-input.check-code input,
.register-body > .item-input.password input{
    width: 70%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    /*border-right: 1px solid #ddd;*/
}

/* 右边有操作的input */
.item-input.check-code .check-code-img,
.item-input.check-code .reget-check-code,
.item-input.password .forget-pwd {
    border: 1px solid #ddd;
    border-left-width: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin: 0 auto;
    width: 30%;
    background-color: #fff;
    text-align: center;
    
    position: absolute;
    font-size: 16px;
    top: 0;
    right: 0;
    line-height: 50px;
    height: 50px;
    z-index: 2;
}
/* 选中时　*/
.register-body > .item-input:not(.error) > input:focus + .check-code-img,  
.register-body > .item-input:not(.error) > input:focus + .reget-check-code,
.register-body > .item-input:not(.error) > input:focus + .forget-pwd {
    border: 2px solid #3399ff;
    border-left-width : 0;
} 

/* 报错时的边框 */
.register-body > .item-input.error  input,
.register-body > .item-input.error  .forget-pwd,
.register-body > .item-input.error  .reget-check-code,
.register-body > .item-input.error .check-code-img {
     border: 2px solid #ef473a !important;
}
.register-body > .item-input.error .check-code-img,  
.register-body > .item-input.error  .reget-check-code,
.register-body > .item-input.error   .forget-pwd {
    border-left-width : 0 !important;
} 
.register-body > .item-input.error  .reget-check-code {
    color: #fff;
    background-color: rgba(239, 111, 59, 1) !important;
}

/* 密码 */
.register-body > .item-input.password input {
    border-right-width: 0 !important;
}
.register-body > .item-input.error.password input {
    border-right-width: 0 !important;
    
}
.register-body >  .item-input.password input:focus {
    border-right-width: 0 !important;
}

.item-input.check-code .check-code-img img {
    height: 43px;
    padding-top: 4px;
    cursor: pointer;
}
.register-body > .prompt-msg {
    font-size: 18px;
}
.register-body > .prompt-msg p {
    padding-bottom: 10px;
}
.register-body >  .prompt-msg span {
    color: #3399ff;
}
.item-input.check-code .reget-check-code {
    font-size: 18px;
}

/* 重新获取验证码*/
.register-body > .item-input > input + .reget-check-code  {
    background-color: #3399ff;
    color: #fff;
    text-decoration: none;
}
/* 找回密码界面获取验证码 */
.item-input.check-code .reget-check-code.get-check-code {
    background-color: #3399ff;
    border-color: #3399ff;
    color: #fff;
}
.item-input.check-code.error > .reget-check-code:active{
    background-color:  rgba(239, 111, 59, 0.8) !important;
}
.item-input.check-code:not(.error) .reget-check-code.get-check-code:active {
    background-color: rgba(56, 126, 261, 0.7);
    
}

/*-----------------------------------------register footer-----------------------------------------------------*/
.register-footer {
    display: none;
}
.register-footer.active {
    display: block;
}
/*　button样式 */
.register-footer .button {
    background-color:  #3399ff;
    color: #fff;
}
.register-footer  .button:hover {
    background-color: #387ef5;
}

/* 登陆 按钮*/
.register-footer > .button.login-button {
    margin-top: 20px;
}

.register-footer .button:active {
    /*background-color:  rgba(49, 201, 240, 0.7);*/
    background-color:  rgba(56, 126, 261, 0.7);
}

/* 注册 */
.register-footer > .text-link {
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}
.register-footer > .text-link > a {
    color: #3399ff;
} 

.register-footer > .text-link > a.return {
    color: #3d5266;
    pointer-events: auto;
    cursor: pointer;
}

/* 使用条款 */
 .register-footer .accept-regulation {
    text-align: center;
    padding: 20px 0 10px 0;
    font-size: 14px;
}
 .register-footer .button {
    margin-top: 0;
}
