* {
	box-sizing: border-box;
}

.content {
	width: 100%;
	padding: 0 5%;
	background-color: #fff;
}

.content_box {
	max-width: 1320px;
	width: 100%;
	background-color: #fff;
	padding: 30px 10px;
	margin: 0 auto;
}

/* 详情 */
.video_content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/* 推荐列表 */
.news_more {
	width: 350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 10px;
	margin: 0 auto;
	overflow-y: auto;
	position: sticky;
	top: 90px;
	right: 0;
}

.news_more h5 {
	margin: 0 0 10px;
	text-align: left;
	color: #555555;
	width: 100%;
	padding: 5px 10px;
	font-weight: bold;
	font-size: 18px;
}


.tags_box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.type_tag {
	line-height: 1.3;
	font-size: 14px;
	color: #999;
	padding-right: 8px;
	border-right: 1px solid #999;
	margin-left: 8px;
}

.type_tag:last-child {
	margin-right: 0;
}

.video_box {
	width: calc(100% - 360px);
}

.content_box_title {
	padding: 0 15px;
	color: #fff;
	border-bottom: 1px dotted #cecece;
	overflow: hidden;
}
.content_box_title .detail_header {
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.content_box_title .detail_header_left span {
	color: #555;
	margin-right: 10px;
}
.video_box video {
	width: 100%;
	overflow: hidden;
	height: 500px;
	margin: 0 10px 10px;
}

.video_box .content_val {
	width: calc(100% - 10px);
	margin: 10px auto;
	border-top: 2px solid #4985bd;
	padding: 20px 10px 0;
}

.video_box .content_val img {
	max-width: 100%;
}

.download_box {
	text-align: right;
}

.download_box button {
	color: #555;
}

.download_box button img {
	margin-left: 5px;
}

.news_more_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.news_menu {
	width: 300px;
	min-height: 200px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	border-radius: 0;
	padding: 20px;
	margin: 10px 0;
}

.news_menu a h5 {
	font-size: 15px;
	font-weight: normal;
}

.news_menu:hover h5 {
	color: #cf261c;
}

.news_menu:hover img {
	transform: scale(1.1);
}

.news_menu a {
	color: #000;
}

.news_menu img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 0px;
	margin-bottom: 10px;
}

.news_menu h4 {
	text-align: left;
}

@media screen and (max-width: 567px) {
	.content_box_title .detail_header {
		flex-wrap: wrap;
	}
	.content_box_title .detail_header_left {
		margin-bottom: 5px;
	}
	.video_box video {
		height: auto;
	}
}

@media screen and (max-width: 768px) {
	.content {
		padding: 0;
	}
	.content_box_title .detail_header {
		font-size: 12px;
	}
	.video_content {
		display: block;
	}
}

@media screen and (max-width: 992px) {
	.video_content {
		flex-wrap: wrap;
	}

	.video_box {
		width: 100%;
	}

	.news_more {
		width: 100%;
		position: static;
	}

	.news_more_box .news_menu {
		min-width: 300px;
		width: calc(50% - 15px);
		min-height: 200px;
	}
}