/* 布局 */
.flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.items-start {
	align-items: flex-start;
}

.items-center {
	align-items: center;
}

.items-end {
	align-items: flex-end;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

.flex-wrap {
	flex-wrap: wrap;
}

.gaps-4 {
	gap: 4px;
}

.gaps-8 {
	gap: 8px;
}

.gaps-12 {
	gap: 12px;
}

.gaps-16 {
	gap: 16px;
}

.gaps-20 {
	gap: 20px;
}

.gaps-32 {
	gap: 32px;
}

.gaps-40 {
	gap: 40px;
}

.gaps-80 {
	gap: 80px;
}