.content {
	width: 100%;
	flex-wrap: wrap;
}
.content ul{
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	display: flex;
	justify-content: center; 
	align-items: center;
	flex-wrap: wrap;
}
.content ul.bottom{
	display: block;
	text-align: center;
	/* overflow-x: auto; */
	/* white-space: nowrap; */
}
.content ul.bottom li{
	display: inline-block;
}
.content ul li .image{
	width: 28.125rem;
	height: 20rem;
	margin: 1.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	box-shadow: 0.25rem 0.25rem 1rem 0 rgba(0,0,0,.08);
	cursor: pointer;
}

.content ul.bottom li .image{
	width: 20rem;
	height: auto;
}
.content ul li img {
	width: 100%;
}
.content ul li p {
	color: #999;
	font-size: 0.875rem;
	text-align: center;
	line-height: 1.6rem;
}

@media (max-width: 992px) {
	.content ul li p {
		/* font-size: 12px; */
		padding-top: 0.5rem;
	}
	.content ul.top {
		width: 100%;
		justify-content: space-between;
	}
	.content ul.top li{
		width: calc(50% - 4px);
	}
	.content ul.top li .image{
		width: 100%;
		height: auto;
		margin: 0;
	}
	.content ul.bottom{
		overflow-x: auto;
		white-space: nowrap;
	}
	.content ul.bottom li .image{
		width: 12.5rem;
		margin: 0 0.25rem;
	}
}