@font-face
{
    font-family: titleFont;
    src: url("/static/lib/fonts/ruizibigeqingchuntijian2.0.TTF");
}

@font-face
{
    font-family: BNKGOTHL;
    src: url("/static/lib/fonts/BANKGOTHIC LT BT LIGHT.TTF");
}
@font-face
{
    font-family: STXihei;
    src: url("/static/lib/fonts/STXihei.TTF");
}
@font-face
{
    font-family: RuiZiYunXiHeiTi;
    src: url("/static/lib/fonts/RuiZiYunXiHeiTi.TTF");
}
@font-face
{
    font-family: RuiZiRuiXinJiXianHeiJian;
    src: url("/static/lib/fonts/RuiZiRuiXinJiXianHeiJian.TTF");
}
*{
	/*font-family: RuiZiRuiXinJiXianHeiJian;*/
	font-family: inherit;
	/*font-weight: 600;*/
}
/********************************************************************************/
input::-webkit-input-placeholder{
    color:#ffffff;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#ffffff;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#ffffff;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color:#ffffff;
}
html,body,.main{
    width: 100%;
    height: 100%;
    color: #ffffff;
}
input{
    margin-top: 0;
}
.main>div{
    height: 100%;
    background-color: #211f30;
}
.form{
    max-width: 314px;
    width: 100%;
    margin: auto;
}
.form-container{
    display: flex;
    position: relative;
}
.img-box{
    background-image: url("/static/images/login-bg-min.png");
    background-size: 100% auto;
}
.login-logo{
    margin-bottom:50px;
}
.login-logo img{
    margin: 0 auto;
    display: block;
}
.form-input-container{
    margin-bottom: 30px;
    position: relative;
}
.form-input{
    border: 1px solid #fff;
    padding-left: 45px;
    font-size: 14px;
    width: 100%;
    height: 44px;
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.form-input#user{
    background-image: url(" /static/images/user.png");
    background-position: 6px center;
    background-repeat: no-repeat;
}
.form-input#pwd,.form-input#confirm-pwd,.form-input#new-pwd{
    background-image: url(" /static/images/password.png");
    background-position: 6px center;
    background-repeat: no-repeat;
 }
.form-input.error{
    border-color: #a9288d;
}
.form-input:focus{
    border-color: #a9288d;
}
.form-input#code {
    padding: 0 10px;
    float: left;
    margin-right: 4%;
    width: 48%;
}
.form-input-container>.eye{
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background-image: url( /static/images/icon_eye-min.png);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    /*z-index: 2;*/
}
.form-input-container>.eye-open{
    background-image: url(" /static/images/icon_eye1-min.png");
}
#verify-btn{
    font-size: 14px;
    background-color: #a9288d;
    text-align: center;
    line-height: 46px;
    border: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 48%;
    border-radius: 4px;
}
#verify-btn:hover{
    background-color: #c32297;
    color:#dddddd;
}
#verify-btn:active{
    background-color: #a82284;
    color:#eeeeee;
}

#login-btn,.next-btn,.submit-btn{
    width:100%;
    height: 46px;
    border-radius: 23px;
    color:#ffffff;
    background: -webkit-linear-gradient(left, #e0227d , #2e64c2);
    background: -o-linear-gradient(right, #e0227d, #2e64c2);
    background: -moz-linear-gradient(right, #e0227d, #2e64c2);
    background: linear-gradient(to right, #e0227d , #2e64c2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#login-btn:hover,.next-btn:hover,.submit-btn:hover{
    background: -webkit-linear-gradient(left, #a9288d , #2955a0);
    background: -o-linear-gradient(right, #a9288d, #2955a0);
    background: -moz-linear-gradient(right, #a9288d, #2955a0);
    background: linear-gradient(to right, #a9288d , #2955a0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: .8;
}
#login-btn:active,.next-btn:active,.submit-btn:active{
    color:#eeeeee;
    background: -webkit-linear-gradient(left, #a9288d , #28539e);
    background: -o-linear-gradient(right, #a9288d, #28539e);
    background: -moz-linear-gradient(right, #a9288d, #28539e);
    background: linear-gradient(to right, #a9288d , #28539e);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: .8;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.8) inset;
}
#login-btn[disabled],.next-btn[disabled],.submit-btn[disabled]{
    color:#dddddd;
    background: -webkit-linear-gradient(left, #a9288d , #28539e);
    background: -o-linear-gradient(right, #a9288d, #28539e);
    background: -moz-linear-gradient(right, #a9288d, #28539e);
    background: linear-gradient(to right, #a9288d , #28539e);
    cursor: not-allowed;
}
.i-checks {
    display: inline-block;
    padding-left: 20px;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}
.i-checks input[type=checkbox] {
    position: absolute;
    margin-left: -20px;
    opacity: 0;
    width: 16px;
    height: 16px;
}
.i-checks > i {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    margin-right: 4px;
    margin-left: -20px;
    line-height: 1;
    vertical-align: middle;
    /* border-radius: 4px; */
    border: 1px solid #cfdadd;
}
.i-checks input:checked + i {
    border-color: #e31cac;
    background-color: #e31cac;
}
.i-checks > i {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    margin-right: 4px;
    margin-left: -20px;
    line-height: 1;
    vertical-align: middle;
    border-radius: 2px;
    border: 1px solid #cfdadd;
}
.i-checks input:checked + i:before {
    left: 0px;
    width: 7px;
    height: 2px;
    background-color: #ffffff;
    top: 8px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.i-checks > i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: transparent;
    content: "";
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.i-checks input:checked + i:after {
    left: 4px;
    width: 10px;
    height: 2px;
    background-color: #ffffff;
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
    top: 6px;
}
.i-checks > i:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: transparent;
    content: "";
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
}
.hint{
    font-size: 12px;
}
.text-error{
    color: #db247f;
}
.agreement-btn{
    color: #ffffff;
}
.agreement-btn:focus{
    color: #ffffff;
}
.agreement{
    width: 80%;
    height: 80%;
    margin: auto;
    display: none;
    border: 2px solid #ffffff;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.agreementCot{
    line-height: 35px;
    padding: 30px 30px 80px;
    overflow-y: auto;
    height: 100%;
    margin-right: -21px;
}
.agreement-footer{
    position: absolute;
    bottom: 0;
    height: 40px;
    width: 100%;
    text-align: center;
    background: #211f30;
    border-top: 2px solid #ffffff;
}
.agreement-footer .agreement-close{
    font-size: 12px;
    background-color: #a9288d;
    text-align: center;
    line-height: 24px;
    border: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 90px;
    border-radius: 4px;
    margin-top: 7px;
}

.tncode_div{
    width: 314px;
    height: 44px;
    position: relative;
    border-radius: 4px;
    color: #ffffff;
    background: -webkit-linear-gradient(left, #e0227d , #2e64c2);
    background: -o-linear-gradient(right, #e0227d, #2e64c2);
    background: -moz-linear-gradient(right, #e0227d, #2e64c2);
    background: linear-gradient(to right, #e0227d , #2e64c2);
}
.tncode_content{
    position: absolute;
    width: 314px;
    height: 206px;
    top: -230px;
    overflow: hidden;
    box-shadow: 0 0 9px 1px rgba(255, 255, 255, 0.25);
}
.tncode_div canvas {
    width: 100%;
    position: absolute;
    top: 0;
}
.tncode_div .loading {
    background-color: #ccc;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
    line-height: 206px;
}
.tncode_div .tncode_loading {
    background-color: rgba(204, 204, 204, 0.53);
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
    line-height: 206px;
    display: none;
    position: absolute;
    top: 0;
    z-index: 999999;
}
.slide {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0px 0px 13.67%;
}
.tools {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0px;
    z-index: 999999;
}
.tools .tncode_close {
    background-position: 0 50%;
    height: 30px;
    width: 30px;
    float: right;
    cursor: pointer;
}
.tools .tncode_refresh {
    background-position: 0 94%;
    height: 30px;
    width: 30px;
    float: right;
    cursor: pointer;
}
.slide_block_text {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
    font-size: 14px;
    color: rgb(255, 255, 255);
}
.slide_block {
    width: 50px;
    height: 48px;
    position: absolute;
    left: -2px;
    top: -2px;
    cursor: pointer;
    background: -webkit-linear-gradient(left, #a9288d , #28539e);
    background: -o-linear-gradient(right, #a9288d, #28539e);
    background: -moz-linear-gradient(right, #a9288d, #28539e);
    background: linear-gradient(to right, #a9288d , #28539e);
    border-radius: 10px;
    border: 2px solid #ffffff;
    z-index: 999;
}
.succee-message{
     font-size: 28px;
     text-align: center;

 }
.succee-message-2{
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}
.copyright{
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    font-size: 12px;
    margin-bottom: 20px;
    left: 0;
}