@charset "utf-8";
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
.hide {
  display: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.font_arial {
  font-family: 'Arial';
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Microsoft YaHei';
}
html,
body {
  font-size: 12px;
}
li {
  list-style: none;
}
img {
  border: none;
}
input,
select,
textarea {
  outline: none;
  border: none;
  background: none;
  -webkit-appearance: none;
}
textarea {
  resize: none;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 12px;
  font-weight: normal;
}
i {
  font-style: normal;
}
/*登录*/
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background: url('../i/bodyBg.png') no-repeat top 64px center;
  background-size: 100% 100%;
  background-attachment: fixed;
}
.wrapInner {
  width: 1040px;
  margin: 0 auto;
}
.loginTop {
  width: 100%;
  height: 64px;
  background: #fffdfd;
  line-height: 64px;
  color: #00a0e9;
  font-size: 22px;
  overflow: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
}
.loginTop .logoIcon {
  display: inline-block;
  width: 210px;
  height: 64px;
  background: url('../i/logoIcon.png') no-repeat left center;
  background-size: 174px auto;
  vertical-align: middle;
  margin-bottom: 4px;
}
.loginTop span {
  display: inline-block;
  width: 390px;
  font-size: 20px;
  color: #343c44;
  padding-left: 26px;
  position: relative;
  background: #fffdfd url('../i/point.png') no-repeat right center;
}
.loginTop span:before {
  content: '';
  height: 30px;
  width: 1px;
  background: #959595;
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -15px;
}
.loginTop .pointBg {
  width: 100%;
  position: absolute;
  left: 50%;
  margin-left: 55px;
  top: 0px;
  height: 64px;
  background: url('../i/pointBg.png') repeat-x;
}
.loginCon {
  width: 444px;
  height: 500px;
  background: #f2f6f8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  margin-top: -250px;
  left: 50%;
  margin-left: -222px;
}
.loginCon .title {
  color: #4d4d4d;
  font-size: 40px;
  height: 83px;
  line-height: 109px;
  font-family: '宋体';
  text-align: center;
  font-weight: bold;
}
.loginCon .formInner {
  width: 100%;
  padding: 0px 36px;
}
.loginCon .formInner li.inputWarp {
  height: 91px;
  border-bottom: 1px solid #8db8de;
  width: 100%;
  padding-top: 40px;
  position: relative;
}
.loginCon .formInner li.inputWarp input {
  z-index: 2;
  height: 50px;
  width: 100%;
  font-size: 18px;
  text-align: center;
  color: #00223f;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 0px 26px;
}
.loginCon .formInner li.inputWarp span.labelText {
  display: block;
  height: 50px;
  line-height: 50px;
  width: 100%;
  font-size: 18px;
  text-align: center;
  color: #004986;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 0px 26px;
  transition: all ease 0.3s;
}
.loginCon .formInner li.inputWarp span.active {
  top: 7px;
  font-size: 14px;
}
.loginCon .formInner li.inputWarp i {
  width: 26px;
  height: 50px;
  position: absolute;
  left: 0px;
  top: 40px;
}
.loginCon .formInner li.inputWarp i.userIcon {
  background: url('../i/login_userIcon.png') no-repeat left center;
}
.loginCon .formInner li.inputWarp i.pwdIcon {
  background: url('../i/login_pwdIcon.png') no-repeat left center;
}
.loginCon .formInner li.inputWarp input:focus + i {
  background-position: right center;
}
.loginCon .formInner .remPwd {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #75a7d4;
}
.loginCon .formInner .remPwd i {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #75a7d4;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
  overflow: hidden;
}
.loginCon .formInner .remPwd i.checked {
  background: url('../i/checkbox_okIcon.png') no-repeat center center;
}
.loginCon .formInner .remPwd a {
  float: right;
  color: #75a7d4;
  font-size: 16px;
}
.loginCon .formInner .tip {
  height: 39px;
  font-size: 16px;
  color: #e62234;
  line-height: 22px;
  font-weight: bold;
  text-align: center;
}
.loginCon .formInner .tip i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../i/tipIcon.png') no-repeat center center;
  vertical-align: middle;
  margin-right: 3px;
  margin-bottom: 3px;
}
.loginCon .formInner a.loginBtn {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #004986;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 22px;
  color: #ffffff;
}
.loginCon .registTip {
  height: 46px;
  line-height: 46px;
  color: #75a7d4;
  font-size: 16px;
  text-align: center;
}
.loginCon .registTip a {
  color: #75a7d4;
  font-size: 16px;
}
.loginCon .warnTip {
  height: 49px;
  line-height: 49px;
  font-size: 12px;
  color: #e62234;
  text-align: center;
}
.loginCon .warnTip i {
  display: inline-block;
  width: 13px;
  height: 100%;
  background: url('../i/warnIcon.png') no-repeat center center;
  background-size: 100% auto;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 3px;
}
.loginBottom {
  width: 100%;
  height: 60px;
  bottom: 0px;
  position: fixed;
  left: 0px;
  z-index: 10;
  text-align: center;
  color: #4d7ca4;
  font-size: 13.5px;
  line-height: 60px;
}
/*忘记密码*/
.findPwdCon {
  width: 920px;
  height: 600px;
  background: #f2f6f8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  margin-top: -300px;
  left: 50%;
  margin-left: -460px;
}
.findPwdCon .title {
  height: 119px;
  line-height: 109px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #4d4d4d;
}
.findPwdCon .statusNav {
  height: 96px;
  width: 100%;
  width: 616px;
  margin: 0 auto;
}
.findPwdCon .statusNav li {
  width: 25%;
  float: left;
  position: relative;
  padding-top: 54px;
}
.findPwdCon .statusNav li i {
  display: block;
  width: 54px;
  height: 54px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -27px;
  z-index: 2;
  background: #dae2e8;
}
.findPwdCon .statusNav li p {
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  color: #aaaaaa;
}
.findPwdCon .statusNav li:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #cfd4e0;
  position: absolute;
  top: 27px;
  left: -50%;
  z-index: 1;
}
.findPwdCon .statusNav li:nth-child(1):before {
  display: none;
}
.findPwdCon .statusNav li.active:before {
  background: #8db8de;
}
.findPwdCon .statusNav li.active i {
  background: #004986;
}
.findPwdCon .statusNav li.active p {
  color: #004986;
}
.findPwdCon .statusNav li.actived i {
  background: #8db8de;
}
.findPwdCon .statusNav li.actived p {
  color: #8db8de;
}
.findPwdCon .formCon {
  padding-top: 37px;
  width: 710px;
  margin: 0 auto;
}
.findPwdCon .formCon li {
  height: 36px;
  line-height: 36px;
}
.findPwdCon .formCon .inputWarp span.inputTitle {
  display: block;
  width: 175px;
  height: 36px;
  line-height: 36px;
  text-align: right;
  font-size: 18px;
  color: #004986;
  float: left;
}
.findPwdCon .formCon .inputWarp input {
  color: #00223f;
  width: 418px;
  border: 1px solid #8db8de;
  height: 34px;
  padding-left: 14px;
}
.findPwdCon .formCon .twoCode {
  width: 100px;
  height: 38px;
  border: 1px solid #e6e9e8;
  margin-left: 12px;
  vertical-align: middle;
  margin-bottom: 3px;
}
.findPwdCon .formCon .twoCodeTip {
  font-size: 14px;
  color: #8db8de;
  margin-left: 7px;
}
.findPwdCon .formCon .getCodeBtn {
  display: inline-block;
  width: 106px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #8db8de;
  color: #fcfdfd;
  font-size: 16px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-left: 12px;
}
.findPwdCon .formCon li.tip {
  font-size: 16px;
  color: #e62234;
  padding-left: 175px;
}
.findPwdCon .formCon li.tip i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../i/tipIcon.png') no-repeat center center;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 3px;
}
.findPwdCon .formCon li.tip2 {
  height: 88px;
  line-height: 88px;
}
.findPwdCon .formCon li.tip2 span.inputTitle {
  display: block;
  width: 175px;
  height: 88px;
  line-height: 88px;
  text-align: right;
  font-size: 18px;
  color: #004986;
  float: left;
}
.findPwdCon .formCon li.tip2 .phone {
  font-size: 16px;
  color: #004986;
}
.findPwdCon .formCon li.tip2 .phone i {
  font-size: 18px;
  color: #00223f;
  margin-right: 35px;
}
.findPwdCon .formCon .fpbtn {
  display: block;
  width: 372px;
  height: 50px;
  line-height: 50px;
  background: #004986;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  margin: 0 auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.findPwdCon .selectWarp {
  padding-left: 175px;
  width: 593px;
  position: relative;
}
.findPwdCon .selectWarp span {
  display: block;
  width: 418px;
  height: 36px;
  border: 1px solid #8db8de;
  font-size: 16px;
  color: #00223f;
  padding-left: 14px;
  position: relative;
  padding-right: 48px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.findPwdCon .selectWarp span:after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  background: url('../i/arrowIcon.png') no-repeat center center;
  right: 12px;
  top: 0px;
}
.findPwdCon .selectPop {
  border: 1px solid #8db8de;
  width: 418px;
  position: absolute;
  top: 43px;
  right: 0px;
  z-index: 10;
  background: #fff;
  display: none;
}
.findPwdCon .selectPop:before {
  content: '';
  width: 8px;
  height: 5px;
  background: url('../i/upArrow_pop.png') no-repeat center center;
  position: absolute;
  top: -5px;
  right: 24px;
}
.findPwdCon .selectPop li {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #00223f;
  padding-left: 14px;
}
.findPwdCon .selectPop li.selected {
  background: #8db8de;
  color: #ffffff;
}
.findPwdCon .openSelect .selectPop {
  display: block;
}
.findPwdCon .openSelect span:after {
  transform: rotate(180deg);
}
.findPwdCon .passWarp {
  padding-left: 175px;
  width: 593px;
  position: relative;
  padding-right: 55px;
}
.findPwdCon .passWarp i.eyeIcon {
  display: block;
  width: 36px;
  height: 36px;
  background: url('../i/eyeIcon.png') no-repeat top center;
  position: absolute;
  top: 0px;
  right: 18px;
}
.findPwdCon .passWarp i.open {
  background-position: bottom center;
}
.findPwdCon .succCon i {
  display: block;
  width: 82px;
  height: 82px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
  background: #8db8de url('../i/okIcon_succ.png') no-repeat center center;
}
.findPwdCon .succCon h3 {
  height: 73px;
  line-height: 73px;
  font-size: 26px;
  color: #004986;
  text-align: center;
}
.findPwdCon .succCon p.succTip {
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  color: #004986;
  text-align: center;
}
.findPwdCon .succCon p.succTip a {
  color: #e62234;
  margin-left: 16px;
}
.findPwdCon .succCon p.succTip a img {
  margin-left: 5px;
}
.findPwdCon .succBtnWarp {
  width: 244px;
  margin: 0 auto;
  height: 36px;
}
.findPwdCon .succBtnWarp a {
  display: block;
  width: 106px;
  height: 36px;
  line-height: 36px;
  background: #004986;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}
/*注册*/
.registCon {
  width: 690px;
  height: 600px;
  background: #f2f6f8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  margin-top: -300px;
  left: 50%;
  margin-left: -345px;
}
.registCon .title {
  height: 109px;
  line-height: 109px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #4d4d4d;
}
.registCon .formCon li {
  height: 36px;
  line-height: 36px;
}
.registCon .formCon .inputWarp span.inputTitle {
  display: block;
  width: 175px;
  height: 36px;
  line-height: 36px;
  text-align: right;
  font-size: 18px;
  color: #004986;
  float: left;
}
.registCon .formCon .inputWarp input {
  color: #00223f;
  width: 418px;
  border: 1px solid #8db8de;
  height: 34px;
  padding-left: 14px;
}
.registCon .formCon .twoCode {
  width: 61px;
  height: 34px;
  border: 1px solid #e6e9e8;
  margin-left: 12px;
  vertical-align: middle;
  margin-bottom: 3px;
}
.registCon .formCon .twoCodeTip {
  font-size: 14px;
  color: #8db8de;
  margin-left: 7px;
}
.registCon .formCon .getCodeBtn {
  display: inline-block;
  width: 106px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #8db8de;
  color: #fcfdfd;
  font-size: 16px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-left: 12px;
}
.registCon .formCon li.tip {
  font-size: 16px;
  color: #e62234;
  padding-left: 175px;
}
.registCon .formCon li.tip i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../i/tipIcon.png') no-repeat center center;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 3px;
}
.registCon .formCon li.tip2 {
  height: 88px;
  line-height: 88px;
}
.registCon .formCon li.tip2 span.inputTitle {
  display: block;
  width: 175px;
  height: 88px;
  line-height: 88px;
  text-align: right;
  font-size: 18px;
  color: #004986;
  float: left;
}
.registCon .formCon li.tip2 .phone {
  font-size: 16px;
  color: #004986;
}
.registCon .formCon li.tip2 .phone i {
  font-size: 18px;
  color: #00223f;
  margin-right: 35px;
}
.registCon .formCon .registBtn {
  display: block;
  width: 372px;
  height: 50px;
  line-height: 50px;
  background: #004986;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  margin: 0 auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.registCon .succCon {
  padding-top: 20px;
}
.registCon .succCon i {
  display: block;
  width: 82px;
  height: 82px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
  background: #8db8de url('../i/okIcon_succ.png') no-repeat center center;
}
.registCon .succCon h3 {
  height: 73px;
  line-height: 73px;
  font-size: 26px;
  color: #004986;
  text-align: center;
}
.registCon .succCon p.successTip {
  padding-top: 20px;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  color: #004986;
  text-align: center;
}
.registCon .succCon p.succTip {
  padding-top: 50px;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  color: #004986;
  text-align: center;
}
.registCon .succCon p.succTip a {
  color: #e62234;
  margin-left: 16px;
}
.registCon .succCon p.succTip a img {
  margin-left: 5px;
}
.registCon .succBtnWarp {
  width: 244px;
  margin: 0 auto;
  height: 36px;
}
.registCon .succBtnWarp a {
  display: block;
  width: 106px;
  height: 36px;
  line-height: 36px;
  background: #004986;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}
.registCon .selectWarp {
  width: 152px;
  position: relative;
  margin-left: 95px;
}
.registCon .selectWarp span {
  display: block;
  width: 152px;
  height: 36px;
  background: #8db8de;
  font-size: 16px;
  color: #ffffff;
  padding-left: 14px;
  position: relative;
  padding-right: 22px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.registCon .selectWarp span:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 36px;
  background: url('../i/arrowIcon_white.png') no-repeat center center;
  right: 12px;
  top: 0px;
}
.registCon .selectPop {
  border: 1px solid #8db8de;
  width: 152px;
  position: absolute;
  top: 43px;
  right: 0px;
  z-index: 10;
  background: #fff;
  display: none;
}
.registCon .selectPop:before {
  content: '';
  width: 8px;
  height: 5px;
  background: url('../i/upArrow_pop.png') no-repeat center center;
  position: absolute;
  top: -5px;
  right: 24px;
}
.registCon .selectPop li {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #00223f;
  padding-left: 14px;
}
.registCon .selectPop li.selected {
  background: #8db8de;
  color: #ffffff;
}
.registCon .openSelect .selectPop {
  display: block;
}
.registCon .openSelect span:after {
  transform: rotate(180deg);
}
.canUse {
  background: #004986 !important;
}
