.videoItem {
	background: #f5f5f9;
	margin-top: 32px;
	cursor: pointer;
	position: relative;
}
.videoItem .video,.videoItem .pic{
	width: 100%;
	height: 231px;
	/* padding-top: 56%; */
	position: relative;
	transform: all .5s;
}
.videoItem .pic .playIcon{
	width: 50px;
	height: 50px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -25px;
	margin-top: -25px;
	cursor: pointer;
	opacity: 0;
}
.videoItem .video:hover:before,.videoItem .pic:hover:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, .3);
}
.videoItem .pic:hover .playIcon{
	opacity: 1;
}

.intro{
	height: 89px;
	padding: 22px 17px 17px;
	color: #232536;
	font-size: 16px;
	transform: all .5s;
}
.intro:hover{
	color: #444cfc;
}

.videoPopup{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 500;
}
.videoPopup .video{
	width: 80%;
	max-height: 80vh;
}
.videoPopup .close{
	position: absolute;
	right: 100px;
	top: 100px;
	cursor: pointer;
}

.item1{
	padding-bottom: 20px;
	padding-top: 20px;
	border-bottom: 1px solid #e6e6e6;
}
.item1 .pic{
	padding-top: 56%;
}
.h4{
	font-size: 16px;
	color: #232536;
	position: relative;
}
.hm{
	font-size: 13px;
	color: #989898;
}

.item2{
	padding: 32px 26px 26px;
	cursor: pointer;
	box-shadow: 0px 0px 2px #ccc;
	margin-top: 20px;
	transition: all .5s;
	background-color: #fff;
}
.item2 .name{
	font-size: 20px;
	color: #111;
	transition: all .5s;
}
.item2 .detail{
	height: 40px;
	font-size: 14px;
	line-height: 20px;
	color: #9597a2;
	margin-top: 18px;
	transition: all .5s;
}
.item2 .tag{
	width: 104px;
	height: 36px;
	background: transparent;
	border: 1px solid #d8d8d8;
	font-size: 14px;
	color: #9597a2;
	margin-top: 30px;
	transition: all .5s;
}
.item2:hover{
	background: #444cfc;
}
.item2:hover .name,.item2:hover .detail{
	color: #fff;
}
.item2:hover .tag{
	background-color: #fff;
	color: #444CFC;
}

@media (max-width: 576px){
	.item1 .pic{
		margin-bottom: 10px;
	}
}