.shop-content {
	margin: 20px auto;
}
.shop-item {
	display: block;
	float: left;
	margin: 20px 20px 0 0;
	width: calc((100% - 80px) / 5);
}
.shop-item:nth-child(-n+5) {
	margin-top: 0;
}
.shop-item:nth-child(5n) {
	margin-right: 0;
}
.shop-item .image {
	padding-bottom: 100%;
	width: 100%;
	height: 0;
	background: #fff no-repeat center center / contain;
	border: 1px solid #f5f5f5;
	border-radius: 5px;
}
.shop-item .name {
	margin-top: 5px;
	color: #797979;
	font-size: 14px;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.shop-item:hover .image {
	box-shadow: 0 0 5px rgba(0, 0, 0, .05);
}
.shop-item:hover .name {
	color: #117ee7;
}
.shop-empty {
	padding: 50px 0;
	color: #999;
	text-align: center;
}
.shop-page {
	position: relative;
	padding-top: 20px;
	font-size: 0;
	text-align: center;
}
.shop-page .box {
	display: inline-block;
}
.shop-page .pagination {
	overflow: hidden;
}
.shop-page .page-item {
	float: left;
	margin: 0 5px;
}
.shop-page .page-link {
	display: block;
	padding: 0 15px;
	height: 39px;
	line-height: 37px;
	background-color: #fff;
	border: 1px solid #f3f3f3;
	border-radius: 5px;
	color: #666;
	font-size: 14px;
}
.shop-page a.page-link:hover {
	border-color: #117ee7;
	color: #117ee7;
}
.shop-page .page-item.active .page-link {
	background-color: #117ee7;
	border-color: #117ee7;
	color: #fff;
}