.ws-content2 .contact-info .products-rigth {
	margin-left: 40px;
	width: 1000px;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* 创建一个4列的网格，每列宽度相等 */
	grid-gap: 20px;
	/* 网格单元之间的间距，可根据需求调整 */
}
.ws-content2 .contact-info .products-rigth .ws-products {
	height: 250px;
	width: 240px;
	/* margin-right: 20px; */
	margin-bottom: 20px;
	cursor: pointer;

}

.ws-content2 .contact-info .products-rigth .ws-products:hover div{
	font-weight: bold;
	color: #1e73be;
}
.ws-content2 .contact-info .products-rigth .ws-products img {
	width: 100%;
	height: 180px;
}


.ws-content2 .contact-info .products-rigth .ws-products p {
	font-size: 13px;
	color: #ADADAD;
	max-height: 2em;
	/* 假设行高为1em，两行则为2em，根据实际行高调整 */
	line-height: 1em;
	/* 根据实际情况调整行高 */
	overflow: hidden;
	text-overflow: ellipsis;
}

.ws-content2 .contact-info .products-rigth .ws-products .ws-product-title {
	margin-top: 5px;
	font-size: 14px;
	margin-bottom: 5px;
	max-height: 1em;
	/* 假设行高为1em，两行则为2em，根据实际行高调整 */
	line-height: 1em;
	/* 根据实际情况调整行高 */
	overflow: hidden;
	text-overflow: ellipsis;
}