.category {
	width: 70%;
	max-width: 1344px;
	margin-right: auto;
	margin-left: auto;
}
.category .help {
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 10px #e0e0e0;
	margin-top: 40px;
	margin-bottom: 40px;
}
.category .help h1 {
	font-size: 18px;
	margin: 0;
	padding: 0;
	font-weight: bold;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #e0e0e0;
}
.category .help p {
	font-weight: 300;
	margin: 0;
}
.category .list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: right;
	text-align: center;
}
.category .list .item {
	border-radius: 10px;
	flex: 1 1 calc(25% - 40px);
	box-shadow: 0 5px 10px #e0e0e0;
	transition: all 0.2s;
	max-width: calc(25% - 30px);
}
.category .list img {
    border-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.category .list .item a {
	padding-bottom: 15px;
	display: block;
}
.category .list .item:hover {
	transform: scale(1.05);
}
.category .list .item .title {
	margin: 0;
	margin-top: 15px;
	padding-bottom: 15px;
	font-weight: bold;
	border-bottom: 1px solid #e0e0e0;
}
.category .list .item .info {
	display: inline-block;
	font-size: 14px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 5px;
	margin: 5px;
	margin-top: 15px;
}
.category .list .item .fonticon {
	vertical-align: -2px;
}
.category .list .hr {
	width: 100%;
	display: block;
	border-bottom: 1px solid #e0e0e0;
	line-height: 0;
}
.category .list .hr .text {
	background: #ffffff;
	display: inline;
	font-size: 18px;
	padding-right: 10px;
	padding-left: 10px;
	font-weight: 300;
}
@media(max-width:1000px)
{
	.category {
		width: 80%;
	}
	.category .list .item {
		flex: 1 1 100%;
		max-width: 100%;
	}
}