.fpe-shareModel{
  margin-bottom:80px;
}

.fpe-shareModel h2 {
	margin-bottom: 30px;
	padding-left: 10px;
}

.fpe-shareModel-list {
	display: flex;
	flex-wrap: wrap;
}

.fpe-shareModel-item {
	padding: 8px;
	width: calc(100% / 4);
	display: block;
	cursor: pointer;
	padding-bottom: 30px;
}

.fpe-shareModel-item>a {
	display: block;
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
}

.fpe-shareModel-item>a>div:first-child {
	width: 100%;
	height: 170px;
	overflow: hidden;
}

.fpe-shareModel-item img {
	width: 100%;
	height: 100%;
	transition: all .5s;
}

.fpe-shareModel-item>a>div:last-child {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: #fff;
}

.fpe-shareModel-item>a>div:last-child span {
	width: 90%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.fpe-shareModel-item:hover img {
	transform: scale(1.2);
}

@media screen and (max-width:991px) {
	.fpe-shareModel-list .fpe-shareModel-item:nth-of-type(n+4) {
		display: none;
	}

	.fpe-shareModel-item {
		width: calc(100% / 3);
	}
}

@media screen and (max-width:700px) {
	.fpe-shareModel-list .fpe-shareModel-item:nth-of-type(n+3) {
		display: none;
	}

	.fpe-shareModel-item {
		width: calc(100% / 2);
	}
}

@media screen and (max-width:375px) {
	.fpe-shareModel-list .fpe-shareModel-item:nth-of-type(n+2) {
		display: none;
	}

	.fpe-shareModel-item {
		width: calc(100% / 1);
	}
}