@charset "utf-8";

/* 设置弹性盒子 */
.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

/* 主轴排列 */
.j-c-start {
	justify-content: flex-start;
}

.j-c-end {
	justify-content: flex-end;
}

.j-c-center {
	justify-content: center;
}

.j-c-between {
	justify-content: space-between;
}

.j-c-around {
	justify-content: space-around;
}

.j-c-evenly {
	justify-content: space-evenly;
}

/* 副轴排列 */
.a-i-center {
	align-items: center;
}

/* 换行设置 */
.flex-wrap {
	flex-wrap: wrap;
}

/* 弹性切割 */
.flex-1 {
	flex: 1;
	overflow: auto;
}