.c_red{
	color:#e05959
}
.content-flex{
	display: flex;
}
.flex-wrap{
	flex-wrap:wrap
}
/*	两端对齐*/
.flex-j-c-space-between{
	justify-content:space-between;
}
/*	间距相等*/
.flex-j-c-space-around{
	justify-content:space-around;
}
/*右侧对齐*/
.flex-j-c-end{
	justify-content: end;
}
.items-center{
	align-items: center
}