/**-------------------------------------------**/
.topSearchBgV{
	width: 100%;
	height: 250px;
	background-image: url('../img/infoTopBg.png');
	display: flex;
	align-items: center;
	justify-content: center;
}
.topSearchBgV div{
	font-size: 48px;
	font-weight: bold;
	line-height: 120px;
	text-shadow: 0px 3px 7px rgba(70,70,70,0.29);
	background: linear-gradient(0deg, #D1D1D1 0%, #FFFFFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.paginationBgV{
	height: 80px;
	width: 100%;
}
/**-------------------------------------------**/
.mainBgV{
	margin-top: 30px;
	width: 100%;
	display: flex;
	background-color: white;
	justify-content: space-between;
}
.leftTypeListV{
	width: 200px;
	flex-shrink: 0;
}
.leftTypeListV button{
	height: 62px;
	width: 100%;
	margin-bottom: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #262626;
	font-size: 20px;
	background-color: #e8f1ff;
	cursor: pointer;
}
.leftTypeListV .selOneType{
	height: 88px;
	background: #1F2DB2;
	font-size: 26px;
	color: #FFFFFF;
}
.informationListV{
	width: 950px;
}
.oneInformationCell{
	padding: 20px 0;
	border-bottom: 1px solid #99999970;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.leftInfo{
	width: 80%;
}
.leftInfo .name{
	font-size: 20px;
	color: #1F1F1F;
	
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.leftInfo .name:hover{
	color: #206bd1;
}
.leftInfo .des{
	color: #666666;
	margin-top: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.timeInfo{
	width: 20%;
	height: 100%;
}
.timeInfo .timeNum{
	font-size: 25px;
	color: #1F1F1F;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.timeInfo .arrowV{
	display: flex;
	justify-content: center;
	align-items: center;
}
.timeInfo .arrowV .line{
	height: 40px;
	background: #C3C3C3;
	width: 1px;
	margin-right: 20px;
}
.timeInfo .arrowV img{
	width: 26px;
	height: 15px;
}
.oneInformationCell .name{
	font-size: 20px;
	color: #333;
	font-weight: bold;
	margin-bottom: 15px;
}
.oneInformationCell .des{
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}