.v-center {
	display: flex;
	justify-content: center;
}

/* 水平方向居中 */
.h-center {
	display: flex;
	align-items: center;
}

.row {
	display: flex;
	flex-direction: column;
}

.col {
	display: flex;
	flex-direction: row;
}



.textSelect {
	font-size: 10px;
	font-weight: 600;
	color: #EB5757;
	background-color: rgba(235, 87, 87, 0.1);
	border-radius: 10px;
	padding: 1.2px 10px;
}


.textItem {
	font-size: 10px;
	color: #828282;
	background-color: #F2F2F2;
	border-radius: 10px;
	padding: 1.2px 10px;
}


.cityAddress {
	font-weight: 600;
	font-size: 10px;
	color: #828282;

	max-width: 190px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;


	white-space: nowrap;
}
