* {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	text-decoration: none;
	font-size: 12px;
	font-family: "微软雅黑";
}

div,a,p,span,img,html,body,table,td,tr{
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	text-decoration: none;
}

.setDis{
	display: none;
}

.hovers:hover{
	cursor: pointer;
	opacity: 0.8;
}
/*容器外层默认横向排列*/
.box{
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
}

/*垂直排列*/
.box-flex-direction{
	flex-direction: column;
}

/*横向不换行*/
.box-flex-nowrap{
	flex-wrap: nowrap;
}
/*横向换行*/
.box-flex-wrap{
	flex-wrap: wrap;
}

/*左对齐*/
.box-flex-start{
	justify-content: flex-start;
}

/*右对齐*/
.box-flex-end{
	justify-content: flex-end;
}

/*居中*/
.box-center{
	justify-content: center;
}


/*两端对齐，项目之间间隔相等；*/
.box-space-between{
	justify-content: space-between;
}

/*每个项目两侧的间隔相等，即项目之间的间隔比项目与边框的间隔大一倍。*/
.box-space-around{
	justify-content: space-around;
}

.box-flex-grow{
	flex-grow: 1;
}

.box-align-itemsL{
	align-items: flex-start;
}

.box-align-itemsR{
	align-items: flex-end;
}

.box-align-itemsC{
	align-items: center;
}

.ub-fh{
	width: 100%;
}

.setbc{
	background: #fff;
}

html,body{
	width: 100%;
	height: 100%;
}

a{
	color: none;
	text-decoration: none;
}

.ub-fv{
	min-height: 100%;
}






