/**-------------------------------------------**/
.topSearchBgV{
	width: 100%;
	height: 250px;
	background-image: url('../img/showTopBg.png');
	display: flex;
	align-items: center;
	justify-content: center;
}
.topSearchBgV .searchBgV{
	width: 700px;
	height: 50px;
	background-color: white;
	display: flex;
	align-items: center;
	position: relative;
}
.searchBgV input{
	width: 80%;
	height: 40px;
	margin: 0 20px;
	border: none;
	font-size: 16px;
}
.searchBgV .searchBtn{
	width: 90px;
	height: 44px;
	background-color: blue;
	color: white;
	line-height: 44px;
	text-align: center;
	border-radius: 4px;
	border: none;
	cursor: pointer;
}
.searchBgV .close-btn{
	position: absolute;
	width: 20px;
	height: 20px;
	top: 15px;
	right: 120px;
	 display: none;
}
/**-------------------------------------------**/
.mainListV{
	width: 100%;
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
}
.oneCell{
	padding: 15px;
	width: 355px;
	height: 290px;
	margin-bottom: 20px;
	background-color: #e7f1ff;
	margin:0 7px 20px 7px;
	cursor: pointer;
}
.oneCell .oneShowImg{
	width: 100%;
	height: 170px;
	overflow: hidden;
	object-fit: contain;
}
.oneCell .name{
	color: #101010;
	margin-top: 18px;
	font-size: 18px;
}
.oneCell .name:hover{
	color: #206bd1;
}
.oneCell .des{
	margin-top: 8px;
	color: #666666;;
	margin-bottom: 20px;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
/**-------------------------------------------**/
.paginationBgV{
	height: 80px;
	width: 100%;
}