.shareModel{
	margin-top: 40px;
}

.shareModel-item {
	padding: 8px;
	width: calc(100% / 8 * 3);
	float: left;
}

.shareModel-item-imgBox{
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.shareModel-item-imgBox img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform .5s;
}

.shareModel a {
	text-decoration: none;
	cursor: pointer;
	color: #000;
}

.shareModel a:hover {
	color: #0266a4;
}

.shareModel a:hover>div>img {
	transform: scale(1.2);
}

.shareModel a:hover>.shareModel-item-moretext>div:last-child {
	transform: scale(1.2);
}

.shareModel-more {
	width: calc(100% / 8 * 2);
	height: 300px;
}

.shareModel-item-moretext{
	height: 100%;
	background-color: #0266a4;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

.shareModel-more a {
	color: #fff;
	text-align: center;
}

.shareModel-more a:hover {
	color: #fff;
}

.shareModel-item-moretext>div:not(:last-child) {
	font-size: 1.2em;
	margin: 10px 0;
}

.shareModel-item-moretext>div:last-child {
	margin-top: 40px;
	transition: transform .5s;
}

@media screen and (max-width:768px) {
	.shareModel-item-moretext>div:not(:last-child) {
		font-size: 14px;
	}
}

.shareModel-item-desc {
	padding: 15px 20px;
	background-color: #f5f5f5;
	height: 60px;
}

.shareModel-item-desc div {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

@media screen and (max-width:570px) {
	.shareModel>.shareModel-item:nth-child(2) {
		display: none;
	}

	.shareModel-item {
		width: 50%;
	}
}

@media screen and (max-width:375px) {
	.shareModel>.shareModel-item:not(.shareModel-more) {
		display: none;
	}

	.shareModel-item {
		width: 100%;
	}
}