@charset "utf-8";
/*弹性盒子的封装*/
.flex-row{
	display: flex;
	flex-direction: row;
}
.flex-col{
	display: flex;
	flex-direction: column;
}
.j-s-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;
}