/* LESS Document */
/*--------font------------*/
/*--------color------------*/
/*主色*/
/*辅助色*/
/*主的文字颜色灰（20）*/
/*辅助的文字颜色灰(50)*/
/*辅助的文字颜色灰(67)(输入框提示文字)*/
/*辅助的文字颜色灰(40)*/
/*主的边框颜色*/
/*主背景颜色*/
/*-------------默认效果-----------------*/
body {
  font-size: 14px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
  color: #333333;
}
a {
  color: #417df2;
  text-decoration: none;
}
a:hover {
  color: #417df2;
}
/*变量*/
.bs {
  box-sizing: border-box;
}
/*------函数-------*/
/*输入框*/
/*验证码*/
/*上传照片*/
/*select框*/
/*-----------样式--------------*/
/*placeholder*/
::-webkit-input-placeholder {
  color: #ababab;
  font-size: 14px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
}
::-moz-placeholder {
  color: #ababab;
  font-size: 14px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
}
:-ms-input-placeholder {
  color: #ababab;
  font-size: 14px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
}
:moz-placeholder {
  color: #ababab;
  font-size: 14px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
}
/*复选框样式*/
input[type="checkbox"] {
  display: none;
}
.id_checkbox_style {
  display:block;
  height: 16px;
  line-height: 16px;
  background: url(image/icon6.png) 0px 0px no-repeat;
  padding-left: 25px;
  cursor: pointer;
}
.id_checkbox_style.on {
  background: url(image/icon5.png) 0px 0px no-repeat;
}
/*单选框样式*/
input[type="radio"] {
  display: none;
}
.id_radio_style {
  display: inline-block;
  width: 20px;
  height: 15px;
  cursor: pointer;
  color: #999;
  font-size: 12px;
}
.id_radio_style.on {
  color: #417df2;
}
/*table*/
/*对话框*/
.id_dilalog {
  background: #fff;
  width: 800px;
}
.id_dilalog .id_title {
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  padding-left: 15px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
.id_dilalog .id_title .close {
  position: absolute;
  top: 5px;     
  right: 10px;
  cursor: pointer;
}
.id_dilalog .id_title .close:hover i {
  color: #f04a46;
}
.id_dilalog .id_title .close:active {
  backgrond: #f5f5f5;
}
.id_dilalog .id_title .close:active i {
  color: #c01410;
}
/*提示*/
.id_success_tips {
  height: 50px;
  margin-left: 10px;
  float: left;
  line-height: 50px;
  font-size: 12px;
  color: #34cf75;
}
.id_success_tips .iconfont {
  font-size: 20px;
}
.id_error_tips {
  height: 50px;
  margin-left: 10px;
  float: left;
  line-height: 50px;
  font-size: 12px;
  color: #f04a46;
}
.id_error_tips .iconfont {
  font-size: 16px;
  padding-right: 5px;
}
.id_condition_tips {
  height: 50px;
  margin-left: 10px;
  float: left;
  line-height: 50px;
  font-size: 12px;
  color: #808080;
  padding-left: 0px;
}
/*---btn---*/
.id_btn_primary_lg {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #417df2;
  transition: all 0.3s;
  border: none;
  width: 440px;
  height: 56px;
  font-size: 20px;
  line-height: 56px;
}
.id_btn_primary_lg:hover {
  background: #296df0;
  color: #fff;
}
.id_btn_primary_lg:active {
  background: #0d4ac0;
  color: #fff;
}
.id_btn_primary_sm {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #417df2;
  transition: all 0.3s;
  border: none;
  width: 180px;
  height: 46px;
  font-size: 16px;
  line-height: 46px;
}
.id_btn_primary_sm:hover {
  background: #296df0;
  color: #fff;
}
.id_btn_primary_sm:active {
  background: #0d4ac0;
  color: #fff;
}
.id_btn_primary_xs {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #417df2;
  transition: all 0.3s;
  border: none;
  width: 100px;
  height: 36px;
  font-size: 14px;
  line-height: 36px;
}
.id_btn_primary_xs:hover {
  background: #296df0;
  color: #fff;
}
.id_btn_primary_xs:active {
  background: #0d4ac0;
  color: #fff;
}
.id_btn_default_lg {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #d8d8d8;
  transition: all 0.3s;
  border: none;
  width: 440px;
  height: 56px;
  font-size: 20px;
  line-height: 56px;
}
.id_btn_default_lg:hover {
  background: #cbcbcb;
  color: #fff;
}
.id_btn_default_lg:active {
  background: #a5a5a5;
  color: #fff;
}
.id_btn_default_sm {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #d8d8d8;
  transition: all 0.3s;
  border: none;
  width: 180px;
  height: 46px;
  font-size: 16px;
  line-height: 46px;
}
.id_btn_default_sm:hover {
  background: #cbcbcb;
  color: #fff;
}
.id_btn_default_sm:active {
  background: #a5a5a5;
  color: #fff;
}
.id_btn_default_xs {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #d8d8d8;
  transition: all 0.3s;
  border: none;
  width: 100px;
  height: 36px;
  font-size: 14px;
  line-height: 36px;
}
.id_btn_default_xs:hover {
  background: #cbcbcb;
  color: #fff;
}
.id_btn_default_xs:active {
  background: #a5a5a5;
  color: #fff;
}
.id_btn_warning_lg {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #f04a46;
  transition: all 0.3s;
  border: none;
  width: 440px;
  height: 56px;
  font-size: 20px;
  line-height: 56px;
}
.id_btn_warning_lg:hover {
  background: #ee332e;
  color: #fff;
}
.id_btn_warning_lg:active {
  background: #c01410;
  color: #fff;
}
.id_btn_warning_sm {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #f04a46;
  transition: all 0.3s;
  border: none;
  width: 180px;
  height: 46px;
  font-size: 16px;
  line-height: 46px;
}
.id_btn_warning_sm:hover {
  background: #ee332e;
  color: #fff;
}
.id_btn_warning_sm:active {
  background: #c01410;
  color: #fff;
}
.id_btn_warning_xs {
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #f04a46;
  transition: all 0.3s;
  border: none;
  width: 100px;
  height: 36px;
  font-size: 14px;
  line-height: 36px;
}
.id_btn_warning_xs:hover {
  background: #ee332e;
  color: #fff;
}
.id_btn_warning_xs:active {
  background: #c01410;
  color: #fff;
}
/*加载动画*/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.next_loading .ball-clip-rotate {
	width:440px;
	height:56px;
	background:#417df2;
	border-radius:5px;
	text-align:center;
	margin:0 auto;
}
.ball-clip-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  height: 25px;
  width: 25px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
.ball-clip-rotate p {
  color: #fff;
  padding-top: 5px;
  font-size: 12px;
}
/*温馨提示*/
.id_warmtips .id_title {
  font-size: 14px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  margin-bottom: 10px;
  font-weight: bold;
}
.id_warmtips .id_con {
  font-size: 12px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
  color: #808080;
  line-height: 24px;
}
/*外部协议框*/
.id_outer_word {
  box-sizing: border-box;
  width: 100%;
  height: 300px;
  overflow: auto;
  border: 1px solid #d9d9d9;
  background: #fff;
  margin: 20px 0px 10px 0px;
}
.id_reg_body {
  background: #f5f6f7;
}
.id_wrap {
  width: 1000px;
  margin: 0 auto;
}
/*重要文字*/
.id_import_text {
  color: #f04a46;
}
/*前面加*的效果*/
.id_required:before {
  content: '*';
  line-height: normal;
  display: block;
  color: #f04a46;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: -20px;
}
/*头部*/
.id_header {
  width: 100%;
  height: 70px;
  background: #417df2 url(image/id_header_bg.png) center center no-repeat;
}
.id_header:after,
.id_header:before {
  display: table;
  content: '';
}
.id_header:after {
  clear: both;
}
.id_header .id_logo {
  float: left;
  padding-top: 20px;
}
/*进程*/
.id_process {
  width: 796px;
  height: 16px;
  margin: 60px auto;
}
.id_process:after,
.id_process:before {
  display: table;
  content: '';
}
.id_process:after {
  clear: both;
}
.id_process .id_item {
  float: left;
  padding-left: 25px;
  background: url(image/icon1.png) left center no-repeat;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  font-size: 16px;
  color: #ababab;
}
.id_process .id_item.on {
  color: #417df2;
  background: url(image/icon2.png) left center no-repeat;
}
.id_process .id_gap {
  float: left;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: #d9d9d9;
}
.id_process .id_gap.on {
  background: #417df2;
}
/*手机验证*/
.id_telcheck {
  width: 796px;
  margin: 0 auto;
  padding-left: 117px;
  box-sizing: border-box;
}
.id_telcheck .id_tel {
  box-sizing: border-box;
  margin-bottom: 15px;
}
.id_telcheck .id_tel:after,
.id_telcheck .id_tel:before {
  display: table;
  content: '';
}
.id_telcheck .id_tel:after {
  clear: both;
}
.id_telcheck .id_tel .id_inputbox {
  float: left;
  width: 440px;
  height: 50px;
  position: relative;
}
.id_telcheck .id_tel .id_inputbox input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_telcheck .id_tel .id_inputbox input:focus {
  border: 1px solid #417df2;
}
.id_telcheck .id_code:after,
.id_telcheck .id_code:before {
  display: table;
  content: '';
}
.id_telcheck .id_code:after {
  clear: both;
}
.id_telcheck .id_code .id_input_box {
  box-sizing: border-box;
  width: 277px;
  height: 50px;
  float: left;
}
.id_telcheck .id_code .id_input_box input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_telcheck .id_code .id_input_box input:focus {
  border: 1px solid #417df2;
}
.id_telcheck .id_code .id_code_btn {
  box-sizing: border-box;
  width: 153px;
  height: 50px;
  float: left;
  margin-left: 10px;
  text-align: center;
  line-height: 50px;
  border: 1px solid #d9d9d9;
  background: #fff;
  cursor: pointer;
}
.id_telcheck .id_code .id_code_btn:hover {
  border: 1px solid #417df2;
  color: #417df2;
}
.id_telcheck .id_code .id_code_btn:active {
  background: #f5f5f5;
}
.id_telcheck .id_code .id_code_invalbtn {
  box-sizing: border-box;
  width: 153px;
  height: 50px;
  float: left;
  margin-left: 10px;
  text-align: center;
  line-height: 50px;
  border: 1px solid #d9d9d9;
  color: #808080;
}
.id_telcheck .id_btn_wrap {
  margin-top: 30px;
}
.id_telcheck_rightbar {
  position: fixed;
  top: 200px;
  right: 130px;
  text-align: center;
}
.id_telcheck_rightbar .id_title {
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
}
.id_telcheck_rightbar .id_pic {
  margin: 7px 0px;
}
.id_telcheck_rightbar .id_tips {
  font-size: 12px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
  color: #808080;
}
/*阅读风险提示*/
.id_reader_word {
  width: 796px;
  margin: 0 auto;
}
.id_reader_word .id_checkbox_wrap {
  font-size: 12px;
  color: #808080;
}
.id_reader_word .id_import_text {
  font-size: 12px;
  padding-left: 25px;
  padding-top: 10px;
}
.id_reader_word .id_btn_wrap {
  margin-top: 40px;
  text-align: center;
}
/*个人信息和企业信息*/
.id_reg {
  width: 796px;
  margin: 0 auto;
}
.id_reg .id_warmtips {
  margin-bottom: 40px;
}
.id_reg .id_switch {
  height: 50px;
  margin-bottom: 30px;
}
.id_reg .id_switch ul {
  box-sizing: border-box;
  width: 100%;
  height: 49px;
  border-bottom: 1px solid #d9d9d9;
}
.id_reg .id_switch ul:after,
.id_reg .id_switch ul:before {
  display: table;
  content: '';
}
.id_reg .id_switch ul:after {
  clear: both;
}
.id_reg .id_switch li {
  box-sizing: border-box;
  width: 190px;
  height: 49px;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  float: left;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  text-align: center;
  line-height: 49px;
  position: relative;
}
.id_reg .id_switch li a {
  color: #666666;
}
.id_reg .id_switch li:nth-child(2) {
  left: -1px;
}
.id_reg .id_switch li.on {
  background: #f5f6f7;
  border-bottom: none;
  border-top: 2px solid #417df2;
}
.id_reg .id_switch li.on a {
  color: #333333;
}
.id_reg .id_list {
  padding-bottom: 30px;
}
.id_reg .id_list .id_title {
  height: 40px;
  line-height: 40px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: bold;
  background: #f2f2f2;
  padding-left: 15px;
  margin-bottom: 20px;
}
.id_reg .id_list .id_item {
  box-sizing: border-box;
  margin-bottom: 15px;
  padding-left: 170px;
}
.id_reg .id_list .id_item:after,
.id_reg .id_list .id_item:before {
  display: table;
  content: '';
}
.id_reg .id_list .id_item:after {
  clear: both;
}
.id_reg .id_list .id_item .id_inputbox {
  float: left;
  width: 440px;
  height: 50px;
  position: relative;
}
.id_reg .id_list .id_item .id_inputbox input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_reg .id_list .id_item .id_inputbox input:focus {
  border: 1px solid #417df2;
}
.id_reg .id_list .id_selectbox {
  width: 440px;
  height: 50px;
  position: relative;
}
.id_reg .id_list .id_selectbox select {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
  color: #ababab;
  font-family: "宋体", Verdana, Geneva, sans-serif;
  font-size: 14px;
}
.id_reg .id_list .id_selectbox select:focus {
  border: 1px solid #417df2;
}
.id_reg .id_list .id_selectbox.on select {
  color: #333333;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  font-size: 16px;
}
.id_reg .id_list .id_upload {
  padding-left: 170px;
  margin-bottom: 20px;
}
.id_reg .id_list .id_upload .upload_title {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
}
.id_reg .id_list .id_upload .upload_title span {
  font-size: 12px;
  color: #808080;
}
.id_reg .id_list .id_upload .id_con ul:after,
.id_reg .id_list .id_upload .id_con ul:before {
  display: table;
  content: '';
}
.id_reg .id_list .id_upload .id_con ul:after {
  clear: both;
}
.id_reg .id_list .id_upload .id_con li {
  float: left;
  margin-right: 10px;
  text-align: center;
  position: relative;
}
.id_reg .id_list .id_upload .id_file {
  width: 202px;
  height: 151px;
  margin-bottom: 10px;
  box-sizing: border-box;
  position: relative;
}
.id_reg .id_list .id_upload .id_file input[type="file"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
}
.id_reg .id_list .id_upload img {
  width: 202px;
  height: 151px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9;
}
.id_reg .id_list .id_upload .id_reupload {
  position: relative;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 30px;
}
.id_reg .id_list .id_upload .id_reupload input[type="file"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
}
.id_reg .id_list .id_upload .id_reupload span {
  position: absolute;
  top: 15px;
  color: #417df2;
  text-decoration: underline;
  cursor: pointer;
  left: 0px;
  font-size: 12px;
}
.id_reg .id_list .id_textbox {
  font-size: 14px;
  padding-left: 170px;
  margin-bottom: 15px;
}
.id_reg .id_list .city {
  margin-bottom: 15px;
  padding-left: 170px;
}
.id_reg .id_list .city:after,
.id_reg .id_list .city:before {
  display: table;
  content: '';
}
.id_reg .id_list .city:after {
  clear: both;
}
.id_reg .id_list .city .id_citytitle {
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #ababab;
  float: left;
}
.id_reg .id_list .city .id_citybox {
  float: left;
  height: 50px;
}
.id_reg .id_list .city .id_citybox.no1 {
  width: 104px;
  margin-right: 6px;
  position: relative;
  left: -1px;
}
.id_reg .id_list .city .id_citybox.no2 {
  width: 112px;
  margin-right: 6px;
}
.id_reg .id_list .city .id_citybox.no3 {
  width: 112px;
}
.id_reg .id_list .city .id_citybox select {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
  color: #ababab;
  font-size: 14px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
}
.id_reg .id_list .city .id_citybox select:focus {
  border: 1px solid #417df2;
}
.id_reg .id_list .city .id_citybox.on select {
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  color: #333333;
}
.id_reg .btn_wrap {
  text-align: center;
  margin: 10px 0px 70px 0px;
}
/*会员弹出框*/
.id_member_dialog {
 
  background: #fff;
  overflow: auto;
}
.id_member_dialog .id_search {
  margin-bottom: 15px;
  border-bottom:1px dashed #dedede;
}
.id_member_dialog .id_search:after,
.id_member_dialog .id_search:before {
  display: table;
  content: '';
}
.id_member_dialog .id_search:after {
  clear: both;
}
.id_member_dialog .id_search li{
	float:left;
	margin-right:53px;
}
.id_search_btn_wrap{
	float:right;
	padding-top:5px;
}
.id_member_dialog table {
  width: 100%;
  border: 1px solid #d9d9d9;
  text-align: center;
  margin-bottom:50px;
}
.id_member_dialog table th {
  height: 30px;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  font-size: 14px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
}
.id_member_dialog table tr:hover {
  background: #ecf2fe;
}
.id_member_dialog table td {
  height: 30px;
  border: 1px solid #d9d9d9;
  font-size: 12px;
  color: #666666;
}
/*开户完成*/
.id_openaccount_result {
  width: 760px;
  margin: 0 auto;
}
.id_openaccount_result .id_result_text {
  text-align: center;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  border-bottom: 1px solid #d9d9d9;
  padding: 30px 0px;
  margin-bottom: 30px;
}
.id_openaccount_result .id_result_text .id_title {
  height: 36px;
  line-height: 36px;
  font-size: 24px;
  margin-bottom: 30px;
}
.id_openaccount_result .id_result_text .id_title .iconfont {
  font-size: 30px;
  padding-right: 10px;
}
.id_openaccount_result .id_result_text .id_title .iconfont.fail {
  color: #f04a46;
}
.id_openaccount_result .id_result_text .id_title .iconfont.success {
  color: #34cf75;
}
.id_openaccount_result .id_result_text p {
  font-size: 14px;
  color: #808080;
}
.id_openaccount_result .id_table {
  width: 580px;
  margin: 0 auto;
}
.id_openaccount_result .id_table .id_title {
  font-size: 20px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.id_openaccount_result .id_table .id_title .id_time {
  font-size: 12px;
  color: #808080;
  position: absolute;
  bottom: -20px;
  right: 5px;
}
.id_openaccount_result .id_table table {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.id_openaccount_result .id_table table td {
  border: 1px solid #d9d9d9;
}
.id_openaccount_result .id_table table td {
  height: 36px;
}
.id_openaccount_result .id_table table td.id_table_name {
  text-align: right;
  padding-right: 10px;
  color: #808080;
}
.id_openaccount_result .id_table table td.id_table_con {
  text-align: left;
  padding-left: 10px;
}
.id_openaccount_result .btn_wrap {
  padding: 40px 0px;
  text-align: center;
}
.id_openaccount_result .btn_wrap:after,
.id_openaccount_result .btn_wrap:before {
  display: table;
  content: '';
}
.id_openaccount_result .btn_wrap:after {
  clear: both;
}
.id_openaccount_result .btn_wrap .no1 {
  width: 180px;
  float: left;
  margin-right: 15px;
}
.id_openaccount_result .btn_wrap .no2 {
  width: 180px;
  float: left;
  margin-right: 15px;
}
.id_openaccount_result .btn_wrap .no3 {
  width: 180px;
  float: left;
}
/* LESS Document */
/*头部*/
.id_manger_header {
  width: 100%;
  height: 70px;
  background: #417df2 url(image/id_header_bg.png) center center no-repeat;
}
.id_manger_header:after,
.id_manger_header:before {
  display: table;
  content: '';
}
.id_manger_header:after {
  clear: both;
}
.id_manger_header .id_logo {
  float: left;
  padding-top: 20px;
}
.id_manger_header .id_admin {
  float: right;
  position: relative;
  box-sizing: border-box;
  height: 70px;
  padding: 17px 30px 0px 0px;
}
.id_manger_header .id_admin .id_name {
  float: left;
  position: relative;
  padding-right: 16px;
  margin-right: 15px;
  color: #fff;
  line-height: 35px;
  cursor: pointer;
}
.id_manger_header .id_admin .id_name i {
  width: 0px;
  height: 0px;
  position: absolute;
  top: 15px;
  right: 0px;
  zoom: 1;
  border-color: #fff transparent transparent  transparent;
  border-style: solid;
  border-width: 4px 4px 0px 4px;
  _border-style: solid dotted;
  transition: transform 0.2s ease-in;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  -moz-transition: -moz-transform 0.2s ease-in;
  -o-transition: -o-transform 0.2s ease-in;
}
.id_manger_header .id_admin .id_name:hover i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.id_manger_header .id_admin .id_hide_fun {
  display: none;
  position: absolute;
  top: 58px;
  left: -12px;
  width: 140px;
  background: #4775cf;
  border-bottom: 1px solid #44526f;
  z-index: 900;
  font-size: 12px;
}
.id_manger_header .id_admin .id_hide_fun:before {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  top: -8px;
  left: 0px;
  background: #2153b5;
}
.id_manger_header .id_admin .id_hide_fun li {
  box-sizing: border-box;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-bottom: 1px solid #3362bc;
  transition: all 0.3s;
}
.id_manger_header .id_admin .id_hide_fun li em {
  margin-right: 10px;
}
.id_manger_header .id_admin .id_hide_fun li .iconfont {
  font-size: 15px;
}
.id_manger_header .id_admin .id_hide_fun li.id_logoff:hover {
  background: #3362bc;
}
.id_manger_header .id_admin .id_hide_fun li.id_exit:hover {
  background: #3362bc;
}
.id_manger_header .id_admin .id_hide_fun li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.id_manger_header .id_admin .id_hide_fun li a:Hover {
  color: #d9d9d9;
}
.id_manger_header .id_admin .id_pic {
  float: left;
  width: 35px;
  height: 35px;
  border-radius: 100%;
}
.id_manger_header .id_admin .id_pic img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.id_manager_main {
  width: 1000px;
  margin: 0px auto;
}
.id_manager_main:after,
.id_manager_main:before {
  display: table;
  content: '';
}
.id_manager_main:after {
  clear: both;
}
.id_manager_main .id_manager_sidebar {
  box-sizing: border-box;
  width: 200px;
  float: left;
  border: 1px solid #d9d9d9;
  border-top: none;
}
.id_manager_main .id_manager_content {
  box-sizing: border-box;
  width: 800px;
  float: left;
}
/*左侧*/
.id_manager_main .id_manager_sidebar .id_manager_menu li {
  box-sizing: border-box;
  height: 47px;
  position: relative;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
  line-height: 47px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #f5f5f5;
}
.id_manager_main .id_manager_sidebar .id_manager_menu li .iconfont {
  padding-right: 10px;
}
.id_manager_main .id_manager_sidebar .id_manager_menu li a {
  display: block;
  color: #666666;
}
.id_manager_main .id_manager_sidebar .id_manager_menu li:hover {
  background-color: #e8e8e8;
}
.id_manager_main .id_manager_sidebar .id_manager_menu li.on {
  background: #fff;
}
.id_manager_main .id_manager_sidebar .id_manager_menu li.on a {
  color: #417df2;
}
.id_manager_main .id_manager_sidebar .id_manager_menu li.on:after {
  content: '';
  display: block;
  width: 3px;
  height: 47px;
  background: #417df2;
  position: absolute;
  left: 0px;
  top: 0px;
}
.id_manager_main .id_manager_sidebar .id_manager_code {
  margin: 200px 30px 0px 30px;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_QR {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_QR h3 {
  font-size: 14px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  margin-bottom: 10px;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code {
  text-align: center;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code h3 {
  font-size: 14px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  margin-bottom: 3px;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code .id_manager_none {
  font-size: 12px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
  color: #808080;
  line-height: 18px;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code .id_manager_none .id_manager_setcode {
  height: 30px;
  line-height: 30px;
  padding-top: 5px;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code .id_manager_none .id_manager_setcode .iconfont {
  font-size: 12px;
  padding-right: 5px;
  color: #417df2;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code .id_manager_none .id_manager_setcode a {
  text-decoration: underline;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code .id_manager_none .id_manager_setcode a:hover {
  color: #f04a46;
  text-decoration: none;
}
.id_manager_main .id_manager_sidebar .id_manager_code .id_manager_recommend_code .id_manager_have {
  font-size: 20px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  color: #417df2;
}
/*中间*/
.id_manager_infor {
  padding: 30px 0px 0px 30px;
}
.id_manager_infor .id_manager_switch ul {
  border-bottom: 1px solid #d9d9d9;
}
.id_manager_infor .id_manager_switch ul:after,
.id_manager_infor .id_manager_switch ul:before {
  display: table;
  content: '';
}
.id_manager_infor .id_manager_switch ul:after {
  clear: both;
}
.id_manager_infor .id_manager_switch ul li {
  float: left;
  padding: 0px 10px 10px;
  margin: 0px 20px;
  position: relative;
}
.id_manager_infor .id_manager_switch ul li a {
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  color: #808080;
}
.id_manager_infor .id_manager_switch ul li.on:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #417df2;
  position: absolute;
  left: 0px;
  bottom: -1px;
}
.id_manager_infor .id_manager_switch ul li.on a {
  color: #417df2;
}
.id_manager_infor .btn_wrap {
  text-align: center;
  padding-top: 20px;
}
/*基本信息*/
.id_manager_infor .id_manager_base_infor .id_manager_title {
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}
.id_manager_infor .id_manager_base_infor .id_manager_title .id_manager_time {
  color: #808080;
  padding-left: 70px;
}
.id_manager_infor .id_manager_base_infor .id_manager_title a {
  position: absolute;
  right: 10px;
  bottom: -10px;
  font-size: 12px;
  text-decoration: underline;
}
.id_manager_infor .id_manager_base_infor .id_manager_item h3 {
  background: #f5f5f5;
  height: 30px;
  padding-left: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
}
.id_manager_infor .id_manager_base_infor .id_manager_item .id_manager_list {
  padding-left: 60px;
  padding-bottom: 30px;
  font-size: 12px;
  color: #666666;
}
.id_manager_infor .id_manager_base_infor .id_manager_item .id_manager_list li {
  line-height: 28px;
}
.id_manager_infor .id_manager_base_infor .id_manager_item .id_manager_list .id_manager_pic_list img {
  width: 120px;
  height: 70px;
}
/*附属信息*/
.id_manager_infor .id_manager_attach_infor {
  padding: 30px 0px 0px 0px;
}
.id_manager_infor .id_manager_attach_infor table {
  width: 580px;
  margin: 0 auto;
  border: 1px solid #d9d9d9;
}
.id_manager_infor .id_manager_attach_infor table td {
  height: 40px;
  border: 1px solid #d9d9d9;
}
.id_manager_infor .id_manager_attach_infor table td.table_title {
  text-align: right;
  padding-right: 10px;
  color: #808080;
}
.id_manager_infor .id_manager_attach_infor table td.table_con input {
  box-sizing: border-box;
  width: 100%;
  height: 32px;
  padding-left: 10px;
  font-size: 14px;
  border: 1px solid #fff;
  outline: none;
}
.id_manager_infor .id_manager_attach_infor table td.table_con input:focus {
  border: 1px solid #417df2;
}
/*上传头像*/
.id_manager_infor .id_manager_upload_head {
  padding: 70px 0px 0px 220px;
  height: 70px;
}
.id_manager_infor .id_manager_upload_head .id_manager_pic .defalut {
  width: 202px;
  height: 151px;
  margin-bottom: 50px;
  background: url(image/icon16.png) no-repeat;
}
.id_manager_infor .id_manager_upload_head .wrap_btn {
  margin-bottom: 15px;
  position: relative;
}
.id_manager_infor .id_manager_upload_head .wrap_btn input[type="file"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
}
.id_manager_infor .id_manager_upload_head .tips {
  font-size: 12px;
  color: #808080;
}
/*修改密码*/
.id_manager_modify_password {
  padding: 90px 0px 0px 90px;
}
.id_manager_modify_password .id_manager_item {
  box-sizing: border-box;
  margin-bottom: 15px;
}
.id_manager_modify_password .id_manager_item:after,
.id_manager_modify_password .id_manager_item:before {
  display: table;
  content: '';
}
.id_manager_modify_password .id_manager_item:after {
  clear: both;
}
.id_manager_modify_password .id_manager_item .id_inputbox {
  float: left;
  width: 440px;
  height: 50px;
  position: relative;
}
.id_manager_modify_password .id_manager_item .id_inputbox input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_manager_modify_password .id_manager_item .id_inputbox input:focus {
  border: 1px solid #417df2;
}
.id_manager_modify_password .btn_wrap {
  padding-top: 15px;
}
/*找到密码*/
.id_manager_find_password {
  padding: 90px 0px 0px 90px;
}
.id_manager_find_password .id_manager_item {
  box-sizing: border-box;
  margin-bottom: 15px;
}
.id_manager_find_password .id_manager_item:after,
.id_manager_find_password .id_manager_item:before {
  display: table;
  content: '';
}
.id_manager_find_password .id_manager_item:after {
  clear: both;
}
.id_manager_find_password .id_manager_item .id_inputbox {
  float: left;
  width: 440px;
  height: 50px;
  position: relative;
}
.id_manager_find_password .id_manager_item .id_inputbox input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_manager_find_password .id_manager_item .id_inputbox input:focus {
  border: 1px solid #417df2;
}
.id_manager_find_password .id_manager_code {
  margin-bottom: 15px;
}
.id_manager_find_password .id_manager_code:after,
.id_manager_find_password .id_manager_code:before {
  display: table;
  content: '';
}
.id_manager_find_password .id_manager_code:after {
  clear: both;
}
.id_manager_find_password .id_manager_code .id_input_box {
  box-sizing: border-box;
  width: 277px;
  height: 50px;
  float: left;
}
.id_manager_find_password .id_manager_code .id_input_box input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_manager_find_password .id_manager_code .id_input_box input:focus {
  border: 1px solid #417df2;
}
.id_manager_find_password .id_manager_code .id_code_btn {
  box-sizing: border-box;
  width: 153px;
  height: 50px;
  float: left;
  margin-left: 10px;
  text-align: center;
  line-height: 50px;
  border: 1px solid #d9d9d9;
  background: #fff;
  cursor: pointer;
}
.id_manager_find_password .id_manager_code .id_code_btn:hover {
  border: 1px solid #417df2;
  color: #417df2;
}
.id_manager_find_password .id_manager_code .id_code_btn:active {
  background: #f5f5f5;
}
.id_manager_find_password .id_manager_code .id_code_invalbtn {
  box-sizing: border-box;
  width: 153px;
  height: 50px;
  float: left;
  margin-left: 10px;
  text-align: center;
  line-height: 50px;
  border: 1px solid #d9d9d9;
  color: #808080;
}
.id_manager_find_password .btn_wrap {
  margin-top: 30px;
}
/*我的客户*/
.id_manager_myaccount {
  padding: 30px 0px 0px 30px;
}
.id_manager_myaccount .id_manager_search {
  margin-bottom: 30px;
}
.id_manager_myaccount .id_manager_search:after,
.id_manager_myaccount .id_manager_search:before {
  display: table;
  content: '';
}
.id_manager_myaccount .id_manager_search:after {
  clear: both;
}
.id_manager_myaccount .id_manager_search .id_inputbox {
  width: 197px;
  height: 36px;
  float: left;
  margin-right: 20px;
}
.id_manager_myaccount .id_manager_search .id_inputbox input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_manager_myaccount .id_manager_search .id_inputbox input:focus {
  border: 1px solid #417df2;
}
.id_manager_myaccount .id_manager_search .id_btn_primary_xs .iconfon {
  font-size: 14px;
  padding-right: 5px;
}
.id_manager_myaccount table {
  width: 100%;
  border: 1px solid #d9d9d9;
  text-align: center;
}
.id_manager_myaccount table th {
  height: 40px;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  font-size: 14px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
}
.id_manager_myaccount table tr:hover {
  background: #ecf2fe;
}
.id_manager_myaccount table td {
  height: 40px;
  border: 1px solid #d9d9d9;
  font-size: 12px;
  color: #666666;
}
/*设置推荐码*/
.id_set_recommend_code {
  box-sizing: border-box;
  width: 478px;
  height: 279px;
  padding-top: 30px;
  background: #fff;
}
.id_set_recommend_code .title {
  padding-bottom: 5px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 18px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  padding-left: 15px;
  color: #000;
}
.id_set_recommend_code .con p {
  padding: 20px;
  font-size: 12px;
  color: #666666;
}
.id_set_recommend_code .con .input_box {
  width: 250px;
  height: 45px;
  margin: 0 auto;
}
.id_set_recommend_code .con .input_box input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
  text-align: center;
  font-size: 20px;
  line-height: 45px;
}
.id_set_recommend_code .con .input_box input:focus {
  border: 1px solid #417df2;
}
.id_set_recommend_code .btn_wrap {
  text-align: center;
  margin-top: 30px;
}
/*变更申请*/
.id_change_infor .id_list {
  padding: 30px 0px 0px 30px;
}
.id_change_infor .id_list .id_title {
  height: 30px;
  line-height: 30px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: bold;
  background: #f2f2f2;
  padding-left: 15px;
  margin-bottom: 20px;
}
.id_change_infor .id_list .id_item {
  box-sizing: border-box;
  margin-bottom: 15px;
  padding-left: 170px;
  position: relative;
}
.id_change_infor .id_list .id_item:after,
.id_change_infor .id_list .id_item:before {
  display: table;
  content: '';
}
.id_change_infor .id_list .id_item:after {
  clear: both;
}
.id_change_infor .id_list .id_item .id_inputbox {
  float: left;
  width: 300px;
  height: 30px;
  position: relative;
}
.id_change_infor .id_list .id_item .id_inputbox input {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
}
.id_change_infor .id_list .id_item .id_inputbox input:focus {
  border: 1px solid #417df2;
}
.id_change_infor .id_list .id_item .id_inputbox input {
  line-height: 30px;
  font-size: 14px;
  padding-left: 5px;
}
.id_change_infor .id_list .id_item .id_input_title {
  float: left;
  width: 70px;
  text-align: right;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.id_change_infor .id_list .id_upload {
  padding-left: 170px;
  margin-bottom: 20px;
}
.id_change_infor .id_list .id_upload .upload_title {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
}
.id_change_infor .id_list .id_upload .upload_title span {
  font-size: 12px;
  color: #808080;
}
.id_change_infor .id_list .id_upload .id_con ul:after,
.id_change_infor .id_list .id_upload .id_con ul:before {
  display: table;
  content: '';
}
.id_change_infor .id_list .id_upload .id_con ul:after {
  clear: both;
}
.id_change_infor .id_list .id_upload .id_con li {
  float: left;
  margin-right: 10px;
  text-align: center;
  position: relative;
}
.id_change_infor .id_list .id_upload .id_file {
  width: 202px;
  height: 151px;
  margin-bottom: 10px;
  box-sizing: border-box;
  background: url(image/icon7.png) 0px 0px no-repeat;
  position: relative;
}
.id_change_infor .id_list .id_upload .id_file input[type="file"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
}
.id_change_infor .id_list .id_upload img {
  width: 202px;
  height: 151px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9;
}
.id_change_infor .id_list .id_upload .id_reupload {
  position: relative;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 30px;
}
.id_change_infor .id_list .id_upload .id_reupload input[type="file"] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
}
.id_change_infor .id_list .id_upload .id_reupload span {
  position: absolute;
  top: 15px;
  color: #417df2;
  text-decoration: underline;
  cursor: pointer;
  left: 0px;
  font-size: 12px;
}
.id_change_infor .id_list .id_textbox {
  padding-left: 170px;
  margin-bottom: 15px;
}
.id_change_infor .id_list .city {
  margin-bottom: 15px;
  padding-left: 170px;
}
.id_change_infor .id_list .city:after,
.id_change_infor .id_list .city:before {
  display: table;
  content: '';
}
.id_change_infor .id_list .city:after {
  clear: both;
}
.id_change_infor .id_list .city .id_citytitle {
  box-sizing: border-box;
  width: 70px;
  text-align: right;
  height: 30px;
  line-height: 30px;
  float: left;
}
.id_change_infor .id_list .city .id_citybox {
  float: left;
  height: 30px;
}
.id_change_infor .id_list .city .id_citybox.no1 {
  width: 95px;
  margin-right: 6px;
  position: relative;
  left: -1px;
}
.id_change_infor .id_list .city .id_citybox.no2 {
  width: 95px;
  margin-right: 6px;
}
.id_change_infor .id_list .city .id_citybox.no3 {
  width: 97px;
}
.id_change_infor .id_list .city .id_citybox select {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  padding-left: 15px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  line-height: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  outline: 0px;
  transition: all 0.3em;
  color: #ababab;
  font-size: 14px;
  font-family: "宋体", Verdana, Geneva, sans-serif;
}
.id_change_infor .id_list .city .id_citybox select:focus {
  border: 1px solid #417df2;
}
.id_change_infor .id_list .city .id_citybox.on select {
  font-size: 14px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  color: #333333;
}
.id_change_infor .btn_wrap {
  text-align: center;
  margin: 30px 0px 70px 0px;
}
.id_login_fail_tips {
  height: 20px;
  line-height: 20px;
  color: #f04a46;
  font-size: 12px;
}
.id_login_fail_tips .iconfont {
  font-size: 12px;
}
.id_login .id_login_header {
  height: 80px;
  border-bottom: 5px solid #f04a46;
}
.id_login .id_login_header .id_login_header_con {
  width: 1200px;
  margin: 0 auto;
  height: inherit;
}
.id_login .id_login_header .id_login_header_con:after,
.id_login .id_login_header .id_login_header_con:before {
  display: table;
  content: '';
}
.id_login .id_login_header .id_login_header_con:after {
  clear: both;
}
.id_login .id_login_header .id_login_header_con .id_login_logo {
  float: left;
  margin-top: 23px;
}
.id_login .id_login_header .id_login_header_con .id_login_header_fr {
  float: right;
  margin-top: 35px;
  font-size: 12px;
}
.id_login .id_login_header .id_login_header_con .id_login_header_fr a {
  color: #808080;
}
.id_login .id_login_header .id_login_header_con .id_login_header_fr a:hover {
  color: #417df2;
}
.id_login .id_login_header .id_login_header_con .id_login_header_fr span {
  color: #d9d9d9;
  padding: 0px 5px;
}
.id_login_main {
  width: 100%;
  height: 804px;
  background: url(image/pic2.png) center center no-repeat;
  background-color: #417df2;
}
.id_login_main .id_login_content {
  width: 1200px;
  margin: 0 auto;
  height: inherit;
  position: relative;
}
.id_login_main .id_login_content .id_login_form {
  box-sizing: border-box;
  padding: 0px 24px;
  width: 346px;
  height: 359px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -179px;
  right: 0px;
}
.id_login_main .id_login_content .id_login_form .id_login_form_title {
  height: 69px;
  line-height: 69px;
}
.id_login_main .id_login_content .id_login_form .id_login_form_title:after,
.id_login_main .id_login_content .id_login_form .id_login_form_title:before {
  display: table;
  content: '';
}
.id_login_main .id_login_content .id_login_form .id_login_form_title:after {
  clear: both;
}
.id_login_main .id_login_content .id_login_form .id_login_form_title h3 {
  font-size: 20px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  float: left;
}
.id_login_main .id_login_content .id_login_form .id_login_form_title .id_title_fr {
  float: right;
  font-size: 12px;
  color: #f04a46;
}
.id_login_main .id_login_content .id_login_form .id_login_form_title .id_title_fr a {
  color: #f04a46;
}
.id_login_main .id_login_content .id_login_form .id_login_form_title .id_title_fr a:hover {
  color: #417df2;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_username {
  margin-bottom: 10px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_username .id_inputbox {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: 1px solid #d9d9d9;
  padding-left: 15px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_username .id_inputbox:after,
.id_login_main .id_login_content .id_login_form .id_login_con .id_username .id_inputbox:before {
  display: table;
  content: '';
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_username .id_inputbox:after {
  clear: both;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_username .id_inputbox .iconfont {
  font-size: 20px;
  color: #ababab;
  float: Left;
  margin-right: 5px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_username .id_inputbox input {
  box-sizing: border-box;
  width: 252px;
  height: inherit;
  line-height: 40px;
  float: left;
  border: none;
  background: none;
  outline: none;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  font-size: 16px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_password {
  margin-bottom: 10px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_password .id_inputbox {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: 1px solid #d9d9d9;
  padding-left: 15px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_password .id_inputbox:after,
.id_login_main .id_login_content .id_login_form .id_login_con .id_password .id_inputbox:before {
  display: table;
  content: '';
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_password .id_inputbox:after {
  clear: both;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_password .id_inputbox .iconfont {
  font-size: 20px;
  color: #ababab;
  float: Left;
  margin-right: 5px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_password .id_inputbox input {
  box-sizing: border-box;
  width: 252px;
  height: 40px;
  line-height: 40px;
  float: left;
  border: none;
  background: none;
  outline: none;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  font-size: 16px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code {
  margin-bottom: 10px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con {
  height: 40px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con:after,
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con:before {
  display: table;
  content: '';
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con:after {
  clear: both;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con .id_inputbox {
  box-sizing: border-box;
  float: left;
  width: 194px;
  height: 40px;
  border: 1px solid #d9d9d9;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con .id_inputbox input {
  box-sizing: border-box;
  width: 252px;
  height: inherit;
  line-height: 40px;
  float: left;
  border: none;
  background: none;
  outline: none;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  font-size: 16px;
  padding-left: 15px;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con .id_code_pic {
  float: right;
}
.id_login_main .id_login_content .id_login_form .id_login_con .id_code .id_code_con .id_code_pic img{
	display:block;
}
.id_login_main .id_login_content .id_login_form .id_login_fun {
  font-size: 12px;
  margin-top: 10px;
  height: 24px;
  line-height: 24px;
}
.id_login_main .id_login_content .id_login_form .id_login_fun:after,
.id_login_main .id_login_content .id_login_form .id_login_fun:before {
  display: table;
  content: '';
}
.id_login_main .id_login_content .id_login_form .id_login_fun:after {
  clear: both;
}
.id_login_main .id_login_content .id_login_form .id_login_fun .id_fl {
  float: left;
}
.id_login_main .id_login_content .id_login_form .id_login_fun .id_fr {
  float: right;
}
.id_login_main .id_login_content .id_login_form .id_btn_wrap {
  margin-top: 15px;
}
.id_login_main .id_login_content .id_login_form .id_btn_wrap .btn {
  display: block;
  width: 300px;
  height: 35px;
  line-height: 35px;
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  background: #f04a46;
  transition: all 0.3s;
  border: none;
}
.id_login_main .id_login_content .id_login_form .id_btn_wrap .btn:hover {
  background: #ee332e;
  color: #fff;
}
.id_login_main .id_login_content .id_login_form .id_btn_wrap .btn:active {
  background: #c01410;
  color: #fff;
}
.id_login_erro{
	
}
.id_login_footer {
  height: 30px;
  background: #f04a46;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 12px;
}
.login_bg_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
.login_main {
  height: 286px;
  width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -143px;
  margin-left: -600px;
}
.login_main:after,
.login_main:before {
  display: table;
  content: '';
}
.login_main:after {
  clear: both;
}
.login_main .fl .banner {
  margin-left: 123px;
  margin-bottom: 15px;
}
.login_main .fl .btn_wrap {
  padding-left: 207px;
}
.login_main .fl .btn_wrap a {
  display: block;
  width: 123px;
  height: 35px;
  background: #417df2;
  color: #fff;
  text-align: center;
  line-height: 35px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  border-radius: 5px;
  transition: all 0.3s;
}
.login_main .fl .btn_wrap a:Hover {
  background: #115cef;
  color: #fff;
}
.login_main .fl .btn_wrap a:active {
  background: #0d4ac0;
}
.login_main .fl .icon {
  padding-top: 60px;
}
.login_main .fl .icon ul:after,
.login_main .fl .icon ul:before {
  display: table;
  content: '';
}
.login_main .fl .icon ul:after {
  clear: both;
}
.login_main .fl .icon li {
  width: 86px;
  height: 86px;
  margin-right: 34px;
  float: left;
  position: relative;
}
.login_main .fl .icon li div {
  display: none;
  background: #417df2;
  width: 86px;
  height: 86px;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  line-height: 86px;
  color: #fff;
  border-radius: 100%;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  font-size: 18px;
}
.login_main .fl .icon li.ico1 {
  background: url(image/login_3.png) no-repeat;
}
.login_main .fl .icon li.ico2 {
  background: url(image/login_4.png) no-repeat;
}
.login_main .fl .icon li.ico3 {
  background: url(image/login_5.png) no-repeat;
}
.login_main .fr .title {
  height: 30px;
  margin-bottom: 15px;
  line-height: 30px;
  padding-left: 35px;
  color: #417df2;
  font-size: 20px;
  color: #c_main;
  background: url(image/login_2.png) no-repeat;
}
.login_main .fr .user {
  width: 299px;
  height: 38px;
  background-color: #abb1ba;
  border-radius: 5px;
  line-height: 38px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 35px;
  transition: all 0.3s;
  margin-bottom: 28px;
  background-image: url(image/login_10.png);
}
.login_main .fr .user.on {
  background-color: #c7cbd1;
}
.login_main .fr .user input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  background: none;
  outline: 0px;
}
.login_main .fr .user input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .user input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .user input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .user input:moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .psw {
  width: 299px;
  height: 38px;
  background-color: #abb1ba;
  border-radius: 5px;
  line-height: 38px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 35px;
  transition: all 0.3s;
  margin-bottom: 15px;
  background-image: url(image/login_9.png);
}
.login_main .fr .psw.on {
  background-color: #c7cbd1;
}
.login_main .fr .psw input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  background: none;
  outline: 0px;
}
.login_main .fr .psw input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .psw input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .psw input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .psw input:moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .code {
  margin-bottom: 15px;
}
.login_main .fr .code:after,
.login_main .fr .code:before {
  display: table;
  content: '';
}
.login_main .fr .code:after {
  clear: both;
}
.login_main .fr .code .input_box {
  float: left;
  margin-right: 10px;
  width: 239px;
  height: 38px;
  background-color: #abb1ba;
  border-radius: 5px;
  line-height: 38px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 35px;
  transition: all 0.3s;
  background-image: url(image/login_11.png);
}
.login_main .fr .code .input_box.on {
  background-color: #c7cbd1;
}
.login_main .fr .code .input_box input {
  width: 90%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  background: none;
  outline: 0px;
}
.login_main .fr .code .input_box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .code .input_box input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .code .input_box input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .code .input_box input:moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.login_main .fr .code .pic {
  float: Left;
  width: 60px;
  height: 38px;
}

.login_main .code a {
  box-sizing: border-box;
  width: 60px;
  height: 38px;
  border: 2px solid #417df2;
  border-radius: 5px;
  display: inline-block;
  font-size: 10px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  text-align: center;
  line-height: 34px;
}

.login_main .fr .code .pic img {
  width: inherit;
  height: inherit;
}
.login_main .fr .fun {
  color: #989999;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
}
.login_main .fr .fun:after,
.login_main .fr .fun:before {
  display: table;
  content: '';
}
.login_main .fr .fun:after {
  clear: both;
}
.login_main .fr .fun a {
  color: #f04a46;
}
.login_main .fr .fun a:hover {
  color: #c01410;
}
.login_main .fr .fun a:active {
  color: #620a08;
}
.login_main .fr .fun .fr{
	height:16px;
	
}
.login_main .fr .btn_wrap {
  margin-top: 30px;
}
.login_main .fr .btn_wrap a {
  box-sizing: border-box;
  width: 111px;
  height: 37px;
  border: 2px solid #417df2;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  font-family: "Microsoft YaHei", Verdana, Geneva, sans-serif;
  text-align: center;
  line-height: 34px;
}
.login_main .fr .btn_wrap a:Hover {
  background: #417df2;
  color: #fff;
  transition: all 0.3s;
}
.login_main .fr .btn_wrap a:active {
  background: #0d4ac0;
  border-color: #0d4ac0;
}
.login_error_tips {
  display: none;
  background: #d0dffc;
  font-size: 12px;
  padding: 5px;
  border: 1px solid #719ef5;
}
.login_error_tips a {
  color: #f04a46;
  padding: 0px 5px;
}
.login_guang {
  position: fixed;
  top: -1100px;
  right: -950px;
  animation-direction: alternate;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  -o-animation-direction: alternate;
  animation: rota 90s alternate;
  -moz-animation: rota 90s ;
  -webkit-animation: rota 90s ;
  -o-animation: rota 90s ;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -o-animation-timing-function: linear;
}
@keyframes rota {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-moz-keyframes rota {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes rota {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rota {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
