body,
html {
	padding: 0;
	margin: 0;
}
img {
    vertical-align: middle;
    border-style: none;
}
.row {
	display: flex;
	align-items: center;
}

.row-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.row-c {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.row-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.line1 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.line2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
}