@charset "utf-8";
/* 弹性盒子封装 */
.flex-row{
	display: flex;
	flex-direction: row;
}
.flex-column{
	display: flex;
	flex-direction: column;
}
.j-c{
	justify-content: center;
}
.j-s-a{
	justify-content: space-around;
}
.j-s-e{
	justify-content: space-evenly; 
}
.j-s-b{
	justify-content: space-between;
}
.a-c{
	align-items: center;
}
.flex-1{
	flex:1;
	overflow: auto;
}