html, body {
    width: 100%;
    overflow-x: hidden;
    height: 100%;
}
.login-main {
  position: relative;
  background: url("../images/login/u491.png") no-repeat;
  height: 800px;
  width: 100%;
  background-size: 100% 100%;
}
.navbar-nav > li {
  padding: 10px 15px;
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 20px;
}
.navbar {
  height: 40px;
  min-height: 40px;
  background-color: rgba(0, 0, 0, 0.298039215686275);
  border: none;
  margin-bottom: 40px;
}
.navbar-nav > li > img {
  width: 16px;
  height: 16px;
}
.navbar-nav > li {
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838290;
}
.navbar-nav > li > span {
  color: #0587e6;
}
.navbar-nav > li > span:hover {
  color: rgb(0, 204, 255);
  text-decoration: underline;
}
.navbar-right {
  margin-right: 65px;
}
.navbar-right > li {
  padding: 0;
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
  width: 69px;
  height: 26px;
  border-radius: 26px;
  -moz-border-radius: 26px; /* Firefox */
    -webkit-border-radius: 26px; /* Safari 和 Chrome */
    behavior: url(ie-css3.htc); /* 通知IE浏览器调用脚本作用于'box'类 */
  box-sizing: border-box;
  padding: 0;
  text-align: center;
  line-height: 26px;
}
.navbar-default .navbar-nav > li > a:hover {
  background-color: rgba(0, 102, 255, 1);
  color: #fff;
}
.login-con {
  display: flex;
  flex-direction: row;
  padding: 20px 100px 0 210px;
  justify-content: space-between;
}
.login-con-left > img {
  width: 550px;
  height: 432px;
}
.login-con-right {
  margin-left: 100px;
  width: 398px;
  height: 500px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 8px;
  box-sizing: border-box;
  padding: 20px 60px;
}
.login-con-right-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.login-con-right-top > img {
  width: 24px;
  height: 20px;
}
.login-con-right-top > span {
  font-size: 16px;
  color: #213ffb;
  font-weight: 600;
  margin-left: 10px;
}
.login-con-right-title {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 40px;
}
.login-con-right-input {
  display: flex;
  flex-direction: column;
}
.login-con-right-input > div {
  width: 100%;
  height: 34px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 35px;
  position: relative;
}
.login-con-right-input > div > img {
  width: 25px;
  height: 25px;
}
.login-con-right-input > div > input {
  border: none;
  outline: none;
  margin-left: 5px;
  font-size: 16px;
  color: #333;
}
.login-con-right-input > div > p {
    position: absolute;
    bottom: -34px;
    left: 10px;
    color: #FF9900;
    font-size: 12px;
    display: none;
}
.login-con-right-input>.right-input-code {
    border: none;
    display: flex;
    flex-direction: row;
}
.login-con-right-input>.right-input-code>div {
    flex: 1;
    height: 100%;
}
.right-input-code-left {
    margin-right: 10px;
}
.right-input-code>div {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #ccc;

}
.right-input-code-left>img {
    width: 21px;
    height: 21px;
}
.right-input-code-left>input {
    width: 70%;
    outline: none;
    border: none;
    margin-left: 20px;
}
.right-input-code>.right-input-code-right {
    border-bottom: none;
    justify-content: space-between;
    align-items: center;
}
.right-input-code-num {
    width: 70%;
    background-color: rgba(242, 242, 242, 1);
    height: 100%;
    text-align: center;
    line-height: 34px;
}
.right-input-code-refresh {
    width: 21px;
    height: 21px;
}
.login-con-right-btn {
    width: 100%;
    height: 36px;
    margin-top: 20px;
}
.btn-login {
    width: 100%;
    height: 100%;
}
.btn-login>button {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    background-color: rgba(33, 63, 251, 1);
    color: #fff;
    border: none;
    font-size: 16px;
}
.btn-login>button:hover {
    background-color: #38b2ff;
}
.btn-registerOrForget {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}
.btn-forget {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.btn-forget >img {
    width: 8px;
    height: 8px;
    margin-right: 8px;
}
.btn-forget >span {
    font-size: 12px;
}
.btn-register {
    cursor: pointer;
}
.btn-register>span:first-child {
    color: #999;
    font-size: 12px;
}
.btn-register>span:last-child {
    color: #213ffb;
    font-size: 12px;
}
/* ------------------------------------------------ 注册   */
.login-con-register{
    position: absolute;
    top: 0;
    right: 0;
    width: 520px;
    box-sizing: border-box;
    height: 800px;
    background-color: #fff;
    padding: 30px 100px 0 50px;
    transition-property: transform;
    transition-duration: 1s;    
    -webkit-transform: translateX(600px);
    transform: translateX(600px);
}

.register-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
}
.register-title>img {
    width: 24px;
    height: 20px;
}
.register-title>.register-title-e {
    font-weight: 600;
    color: #213FFB;
    margin: 0 10px;
}
.register-title>span:last-child {
    font-weight: 600;
    color: #333;
}
.register-form {
    margin-top: 20px;
}
.form-title {
    font-size: 20px;
    font-weight: 500;
}
.form-phone {
    position: relative;
}
.form-select {
    width: 81px;
    border: 1px solid #d9d9d9;
    border-right: 0;
    border-radius: 4px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: rgba(250, 250, 250, 1);
}
#form-phone {
    margin: 0;
    padding: 0;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-left: 10px;
}
.register-form>div {
    position: relative;
}
.register-form>div>input {
    width: 100%;
    height: 38px;
    border-radius: 4px;
}
.register-form>div>select {
    height: 38px;
}
.register-form>div>p {
    position: absolute;
    bottom: 0 ;
    left: 10px;
    color: #FF9900;
    font-size: 12px;
    display: none;
}
/* .form-phone>img {
    position: absolute;
    top: 0;
    left: 0;
} */
.register-form>div {
    height: 70px;
    display: flex;
    flex-direction: row;
}
.p-displayN {
    display: none;
}
.form-phoneCode {
    position: relative;
}
.getPhoneCode {
    position: absolute;
    top: 0;
    right: 0;
    height: 38px;
    width: 124px;
    background-color: #fff;
    background-color: rgba(0, 102, 255, 1);
    color: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
#phoneCode {
    border-radius: 4px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-left: 10px;
}
input[type='checkbox']{
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    outline: none;
    margin-right: 8px;
}
.clause-check > label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.clause-con>a {
    color: #0066FF;
}

.clause-con>a:hover {
    color: #0066FF;
}
.form-register-btn>#btn-register {
    width: 100%;
    height: 38px;
    border-radius: 5px;
    background-color: rgba(33, 63, 251, 1);
    color: #fff;
}
.form-register-btn>#btn-register:hover {
    background-color: rgba(76, 110, 251, 1)
}
.form-cancel-btn>#btn-cancel {
    width: 100%;
    border-radius: 5px;
    height: 38px;
    background-color: #fff;
    color: #213FFB;
    border: 1px solid rgba(217, 217, 217, 1);
}
.form-cancel-btn>#btn-cancel:hover {
    background-color: rgba(235, 235, 235, 1)

}
/* ------------------------------------------------ 忘记密码   */
.login-con-forgetPassword{
    position: absolute;
    top: 0;
    right: 0;
    width: 520px;
    box-sizing: border-box;
    height: 800px;
    background-color: #fff;
    padding: 30px 100px 0 50px;
    transition-property: transform;
    transition-duration: 1s;    
    -webkit-transform: translateX(600px); 
    transform: translateX(600px); 
}

.forgetPassword-title>img {
    width: 124px;
    height: 20px;
}
.forgetPassword-title>span {
    font-weight: 600;
    font-size: 14px;
}
.forgetPassword-goOrNo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.forgetPassword-goOrNo>span:first-child {
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
}
.forgetPassword-goOrNo>span:last-child {
    width: 87px;
    height: 24px;
    border-radius: 24px;
    -moz-border-radius: 24px; /* Firefox */
    -webkit-border-radius: 24px; /* Safari 和 Chrome */
    behavior: url(ie-css3.htc); /* 通知IE浏览器调用脚本作用于'box'类 */
    background-color: rgba(223, 232, 251, 1);
    color: #213FFB;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    display: inline-block;
}
.forgetPassword-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.forgetPassword-step>ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.forgetPassword-step>ul>li {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 5px;
}
.forgetPassword-step>ul>li>.step-yuan {
    width: 34px;
    height: 34px;
    border-radius: 34px;
    -webkit-border-radius: 34px; /* Safari 和 Chrome */
    border-radius: 34px; /* Opera 10.5+, 以及使用了IE-CSS3的IE浏览器 */
    behavior: url(ie-css3.htc); /* 通知IE浏览器调用脚本作用于'box'类 */
    border: 2px solid #8c8c8c;
    margin-right: 2px;
    text-align: center;
    line-height: 34px;
    display: inline-block;
}
.forgetPassword-step>ul>li>.step-line {
    width: 10px;
    height: 1px;
    background-color: #ccc;
}
.forgetPassword-step>ul>.active>.step-yuan {
    border: 2px solid #253ffb;
    background-color: #253ffb;
    color: #fff;
}
.step-bottom-line {
    width: 26px;
    height: 4px;
    background-color: rgba(1, 69, 255, 1);
    margin-top: 20px;
}
.forgetPassword-con {
    width: 350px;
    overflow-x: hidden;
    height: 500px;
    position: relative;
    margin-top: 40px;
}
.forgetPassword-con>ul {
    position: absolute;
    width: 1400px;
    display: flex;
    flex-direction: row;
}
.forgetPassword-con>ul>li {
    width: 350px;
}
.forgetPassword-con>ul>li>div {
    position: relative;
    height: 70px;
}
.forgetPassword-con>ul>li>div>p {
    position: absolute;
    bottom: 0;
    left: 10px;
    color: #FF9900;
    font-size: 12px;
    display: none;
}
.forgetPassword-con>ul>li>div>input {
    height: 40px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
}
#forgetPassword-phone {
    width: 100%;
}
#forgetPassword-code {
    width: 198px;
}
.forgetPassword-num {
    height: 40px;
    width: 93px;
    background-color: rgba(242, 242, 242, 1);
    text-align: center;
    line-height: 40px;
    color: #333;
    margin: 0 10px 0 10px;
    display: inline-block;
}
.forgetPassword-code >img {
    width: 21px;
    height: 21px;
}
.forgetPassword-nextStep {
    width: 140px;
    height: 34px !important;
    line-height: 34px;
    text-align: center;
    background-color: rgba(1, 69, 255, 1);
    border-radius: 34px;
    margin-top: 200px;
    margin-left: 150px;
    color: #fff;
}
.forgetPassword-step2 {
    /* background-color: blue; */
}
.forgetPassword-moPhone {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}
.forgetPassword-moPhone>input {
    height: 38px;
    background-color: rgba(250, 250, 250, 1);
    border: none !important;

}
#moPhoneQuhao {
    width: 82px;
}
#moPhone {
    width: 268px;
}
.forgetPassword-codeNum {
    height: 70px;
    position: relative;
    margin-bottom: 150px;
}
#forgetPassword-codeNum {
    width: 100%;
    height: 38px;

}
.forgetPassword-codeNum>p {
    position: absolute;
    bottom: 0;
    left: 10px;
    color: #FF9900;
    font-size: 12px;
}
.forgetPassword-codeNum>button {
    width: 124px;
    height: 38px;
    background-color: rgba(0, 102, 255, 1);
    color: #fff;
    text-align: center;
    line-height: 38px;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#forgetPassword-getCode {
    position: absolute;
    top: 0;
    right: 0;
}
.step2-nextOrPre {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.step2-nextOrPre>button {
    height: 34px;
    width: 140px;
    line-height: 34px;
    text-align: center;
    font-size: 12px;
    border-radius: 34px;
}
.step2-next-step {
    color: #fff;
    background-color: rgba(1, 69, 255, 1);
}
.step2-pre-step {
    background-color: rgba(236, 239, 241, 1);
    color: #666;
    margin-right: 20px;
}
.forgetPassword-step3>div {
    height: 70px;
    position: relative;
}
.forgetPassword-step3>div>input {
    width: 100%;
    height: 40px;
}
.forgetPassword-step3>div>p {
    position: absolute;
    font-size: 12px;
    left: 10px;
    bottom: 0;
    color: #FF9900;
}
.step3-password2 {
    margin-bottom: 150px;
}
.step3-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.step3-btn>button {
    height: 34px;
    width: 140px;
    line-height: 34px;
    text-align: center;
    font-size: 12px;
    border-radius: 34px;
}
.step3-next {
    color: #fff;
    background-color: rgba(1, 69, 255, 1);
}
.step3-pre {
    background-color: rgba(236, 239, 241, 1);
    color: #666;
    margin-right: 20px;
}
.step4-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.forgetPassword-con>ul>li>.step4-con {
    height: 200px;
}
.step4-con>img {
    width: 64px;
    height: 64px;
}
.step4-con>.step4-name {
    margin-top: 40px;
    margin-bottom: 15px;
}
.step4-backLogin {
    margin-top: 160px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
#step4-backLogin-btn {
    width: 140px;
    height: 34px;
    border-radius: 34px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    background-color: rgba(1, 69, 255, 1);
}
.trajsapteX {
    -webkit-transform: translateX(0px);
    transform:translateX(0px);
}
.select-checkbox-p {
    margin-bottom: 0px;
}