.content dl{
	width: 100%;
	display: flex;
	/* justify-content: center; */
	align-items: flex-start;
	flex-wrap: wrap;
}
.content dl dt{
	width: 100%;
	font-size: 1.125rem;
	padding-bottom: 0.625rem;
}
.content dl dd{
	padding: 0.625rem;
	width: 25%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.content dl dd .image{
	width: 100%;
	/* height: 240px; */
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	cursor: pointer;
}
.content dl dd .image img{
	width: 100%;
}
.content dl dd p{
	width: 100%;
	color: #333;
	font-weight: bolder;
	text-align: center;
	font-size: 1rem;
	line-height: 1.5rem;
	margin: 0.5rem 0;
}
.content dl dd p:nth-of-type(2){
	margin: 0;
	color: #999;
	font-weight: normal;
	font-size: 0.875rem;
	line-height: 1rem;
	height: 3rem;
}

@media (max-width: 992px) {
	.content dl dt{
		/* font-size: 16px; */
		padding-bottom: 0.25rem;
	}
	.content dl dd{
		padding: 0.25rem;
		width: 50%;
	}
	.content dl dd p{
		/* font-size: 13px; */
		/* line-height: 1.4rem; */
		margin: 0.25rem 0;
	}
	.content dl dd p:nth-of-type(2){
		/* font-size: 12px; */
		/* line-height: 16px; */
		height: auto;
	}
}