.mainVideo > video {
	width: 12rem;
	height: 6rem;
	padding: 0.1rem;
	border: 1px solid #48485C;
}

.mainVideo > .titleDate { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 0.2rem; color: #48485C; }
.mainVideo > .titleDate > .title { font-size: 0.3rem; }
.mainVideo > .titleDate > .date { font-size: 0.16rem; }
.mainVideo > .describe { color: #48485C; font-size: 0.18rem; }

.videoList { display: flex; flex-flow: row wrap; padding-top: 0.5rem; padding-bottom: 0.6rem; }
.videoList > .item { position:relative; width: 3.6rem; margin-right: 0.6rem; margin-bottom: 0.5rem; color: #48485C; cursor: pointer; }
.videoList > .item > video { display: none; }
.videoList > .item:nth-child(3n) { margin-right: 0; }
.videoList > .item > .poster { position: relative; width: 3.6rem; height: 2.06rem; padding: 0.02rem; border: 1px solid #48485C; cursor: pointer; }
.videoList > .item > .poster:after {
	content: "";
	position: absolute;
	top: 0.02rem;
	right: 0.02rem;
	bottom: 0.02rem;
	left: 0.02rem;
	z-index: 1;
	background: rgba(0,0,0,0.3) url(../images/play.png) center no-repeat;
	background-size: 0.5rem 0.6rem;
}
.videoList > .item > .title { font-size: 0.22rem; }
.videoList > .item > .date { font-size: 0.16rem; }
.videoList > .playVideo > .poster {
	padding: 0.04rem;
	border-width: 0.04rem;
}
/*.videoList > .item:nth-of-type(1) > .poster {
	padding: 0.04rem;
	border-width: 0.04rem;
}
.videoList > .item:nth-of-type(1) > .poster:after {
	content: "正在播放";
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0.04rem;
	right: 0.04rem;
	bottom: 0.04rem;
	left: 0.04rem;
	z-index: 1;
	color: #fff;
	font-size: 0.36rem;
	font-weight: bold;
	background: rgba(0,0,0,0.5);
}*/
.videoList > .playVideo > .poster:after {
	content: "正在播放";
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0.04rem;
	right: 0.04rem;
	bottom: 0.04rem;
	left: 0.04rem;
	z-index: 1;
	color: #fff;
	font-size: 0.36rem;
	font-weight: bold;
	background: rgba(0,0,0,0.5);
}

.videoMore { color: #48485C; font-size: 0.16rem; text-align: center; text-decoration: underline; }
