*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family:sans-serif;
}
html,body{
	min-width: 1200px;
}
a{
	text-decoration: none;
	color: #000;
}
img{
	vertical-align: middle;
}
ul,ol{
	list-style:none;
}
input,button,textarea{
	border:none;
	outline: none;
}
textarea{
	resize: none;
}
input[type="search"]::-webkit-search-cancel-button{
	-webkit-appearance:none;
} 
/*清除浮动*/
.clear_float:after{
	content:"";
	display: block;
	clear: both;
}
/*单行文字超出隐藏*/
.pl_hidden{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/*满屏固定定位*/
.full_fixed{
	position: fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
}
/*居中绝对定位*/
.center_absolute{
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin: auto;
}
/* 子元素上下左右居中 */
.all_center{
	display: flex;
	justify-content: center;
	align-items: center;
}
/* 以竖直方向为主轴的子元素上下左右居中 */
.col_all_center{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.close_btn{
	display: inline-block;
	width:30px;
	height:30px;
	border-radius:50%;
	cursor: pointer;
	position: relative;
}
.close_btn:before{
  	content: "";
  	width:80%;
  	height:2px;
  	background: #aaa;
  	display: block;
  	position: absolute;
  	top:50%;
  	left:50%;
  	transform:translate(-50%,-50%) rotate(45deg);
}
.close_btn:after{
  	content: "";
  	width:80%;
  	height:2px;
  	background: #aaa;
  	display: block;
  	position: absolute;
  	top:50%;
  	left:50%;
  	transform:translate(-50%,-50%) rotate(-45deg);
}


.loading_status,.no_data{
	height:50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #666;
	font-size: 14px;
}
.no_data{
	height:150px!important;
}

[v-cloak] {
  display: none!important;
}

.pagination{
	display: flex;
	justify-content:center;
	align-items: center;
	padding:30px 0;
}
.pagination a,.pagination span{
	width:35px;
	height:35px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	background: #fff;
	border:1px solid #D0D0D0;
	margin:0 3px;
}
.pagination li.active span{
	background: #4E92FD;
	border-color:#4E92FD;
	color:#fff;
}
.pagination li.disabled span{
	background: #eee;
	color: #999;
}
.pagination a i{
	font-size: 20px;
}
