body,header,div,ul,li{
	margin: 0;
	padding: 0;
}
ul,li{
	list-style: none;
}
a{
	text-decoration: none;
	color: black;
}
[v-cloak]{
    display: none;
}
header {
  background: #fff !important;
}
/*忘记密码弹出框样式*/
.nav_shade{
	display: none;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.7);
	overflow: auto;
	z-index: 10002;
}
.nav_alert_con{
	width:500px;
	height:500px;
	background:rgba(255,255,255,1);
	box-shadow:0px 4px 26px 2px rgba(8,49,92,0.29);
	border-radius:10px;
	margin: 200px auto 50px;
	padding: 52px 80px;
	padding-top: 0px;
	position: relative;
	box-sizing: border-box;
}
.nav_alert_tit{
	width: 100%;
	color: #000000;
	text-align: left;
	padding-bottom: 13px;
	font-size: 20px;
	padding:40px 0px ;
	font-weight:bold;
	position: relative;
}
.nav_close{
	color: #FFFFFF;
	position: absolute;
	top: 38px;
	right: 20px;
	font-size: 18px;
	cursor: pointer;
}
.nav_alert_con .nav_con{
	margin-top: 16px;
	background-color: #ffffff;
	padding-bottom: 30px;
	text-align: center;
}
.nav_con_tit{
	padding: 20px 0;
}
.nav_con input{
	height: 100%;
}
.nav_con .nav_input_box{
    height: 48px;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(214,214,214,1);
    border-radius: 6px;
    display: flex;
	align-items: center;
	padding-left: 10px;
	margin-bottom: 24px;
	width: 100%;
}
.nav_con .nav_input_box img{
	width: 24px;
	height: 29px;
	margin: 0 17px 0 0;
}
.nav_con .nav_input_box input{
	border: none;
}
button{
	cursor: pointer;
}
input::-webkit-input-placeholder{
  color:#8A8A8A;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
  color:#8A8A8A;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
  color:#8A8A8A;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
  color:#8A8A8A;
}
.getcode{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.getcode input{
	border: none;
}
.getcode button{
	width: 120px;
    height: 100%;
    background: rgba(236,245,255,1);
    border: 1px solid rgba(179,216,255,1);
    border-radius: 4px;
    color: #409EFF;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    background: rgba(240,240,240,1);
    border: 0px;
    border-radius: 4px;
    color: #DA251D;
}

.xiangqi{
	text-align: right;
	margin-top: 20px;
}
.changed{
    display: block;
    width: 100%;
    margin-top: 53px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,1);
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    height: 56px;
    background: rgba(69,108,240,1);
    border-radius: 6px;
}

.noinfo{
	width:1200px;
	height:300px;
	border:1px solid rgba(236,236,236,1);
	border-radius:6px;
	margin-top: 30px;

}
.noinfotitle{
	font-size:14px;
	font-family:Source Han Sans CN;
	font-weight:500;
	color:rgba(51,51,51,1);
	line-height:14px;
	margin-top: 20px;
}

.flex_row,.flex{
	display: flex;
	flex-direction: row;
	display: -webkit-box;
	display: -webkit-flex;
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
  }
  
  /*项目竖向排列*/
  .flex_col {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	flex-direction: column;
  }
  /*flex-shrink  所有项目的flex-shrink: 1; 只有一个为0  则空间不足时，为0不缩小*/
  /*项目可换行 默认不换行*/
  
  .flex_grow {
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
  }
  
  /*水平和垂直居中*/
  
  .flex_center {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
  }
  
  /*水平居中*/
  
  .flex_x_center {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
  }
  
  /*右对齐*/
  
  .flex_x_right {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: center;
	justify-content: flex-end;
  }
  
  /*两端对齐*/
  
  .flex_x_between,.flex_between {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
  }
  
  /*两侧间距相等对齐*/
  
  .flex_x_around {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: space-around;
	-webkit-justify-content: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;
  }
  
  /*Y轴居中*/
  
  .flex_y_center {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
  }
  
  /*底部对齐*/
  
  .flex_y_bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	-ms-grid-row-align: flex-end;
	align-items: flex-end;
  }
  
  .item_end{
	   align-self: flex-end;/*单个项目底部*/
  }
  /*-------------------------------------*/
  
  /*item 上使用*/
  
  /*flex-shrink  所有项目的flex-shrink: 1; 只有一个为0  则空间不足时，为0不缩小  */
  
  /*适合左右排 0 占绝对位置 1占满盒子 根据盒子大小变化而变化*/
  
  .flex_grow_0 {
	min-width: 0;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
  }
  
  .flex_grow_1 {
	min-width: 0;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-negative: 1;
	flex-shrink: 1;
  }
  
  .crumbs_list{
	width:100%;
	height:50px;
	background:rgba(246,246,246,1);
	line-height: 50px;
	min-width: 1200px;
  }
  .crumbs_list .container{
	  width: 1200px;
	  margin: 0px auto;
	  color: #666;
	  font-size:14px;
  }
  .crumbs_list .container a{
	color: #666;
	font-size:14px;
  }
  .crumbs_list .container .on a{
	  color: #4B5AF8;
  }

  .ljzc_span{
	color: #409EFF;
    cursor: pointer;
    height: 23px;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: rgba(69,108,240,1);
    margin-top: 20px;
    display: inline-block;
	border-bottom: 1px solid rgba(69,108,240,1);
	
  }
 
 #zhuceshade .changed {
	 margin-top: 20px;
 }
 #zhuceshade  .nav_alert_con .nav_con .nav_input_box,#forgetpwdshade .nav_alert_con .nav_con .nav_input_box{
margin-bottom: 20px;
 }
 #zhuceshade  .nav_alert_con .nav_con{
	 margin-top: 0px;
 }