.pro_cont{margin-top: 50px;margin-bottom: 30px;}

.pro_list{display: flex;flex-wrap: wrap;}

.proitem{
	width: 25%;
	padding: 0px 15px;
	margin-bottom: 30px;
}
.proitem .items{
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
}

.proimg{
padding: 10px;
transition: all 0.4s;
}

.proimg>div{
overflow: hidden;	
}

.proimg img{
	width: 100%;
}

.proitem p{
	text-align: center;
	height: 40px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    font-size: 16px;
    font-weight: 500;
    color: #001327;
    line-height: 32px;
}

.proitem:hover .proimg{
	background: #669e42;
}

.proitem:hover .proimg img{
	transform: scale(1.2);
}

.proitem:hover p{
	color: #669e42;
}

@media screen and (max-width: 992px){
	.proitem {
		width: 50%;
		padding: 0px 10px;
		margin-bottom: 20px;
	}
	.proitem p{
		height: 40px;
		font-size: 14px;
		font-weight: 500;
		color: #001327;
		line-height: 24px;
		max-height: 40px;
	}
}
