.banner {
	width: 100%;
	position: relative;
}

.breadcrumb {
	position: absolute;
	font-size: 1.25rem;
	top: 10%;
	left: 2.5rem;
	color: #FFFFFF;
}

.p_t {
	position: absolute;
	font-size: 3.75rem;
	color: #FFFFFF;
	line-height: 3.5rem;
	font-weight: bold;
	top: 50%;
	left: 2.5rem;
	transform: translateY(-50%);
}

.banner-news {
	width: 100%;
}

.p_content {
	padding: 0 2.5rem;
}

.more_news {
	border-radius: 0.25rem;
	border: 0.0625rem solid #E82D3E;
	height: 5rem;
	font-size: 1.75rem;
	color: #E82D3E;
	line-height: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.5rem;
}

.news_item .news_time {
	font-size: 1.5rem;
	color: #999999;
	line-height: 1.5rem;
	height: 5.25rem;
	display: flex;
	align-items: center;
	border-top: 1px solid #EAEAEA;
}

.news_item .news_title {
	font-size: 2rem;
	color: #000000;
	line-height: 2.25rem;
	font-weight: bold;
	display: flex;
}

.news_item .news_content {
	font-size: 1.5rem;
	color: #666666;
	line-height: 2rem;
	margin-top: 0.625rem;
	display: flex;
}

.news_item .news_detail {
	height: 6rem;
	display: flex;
	align-items: center;
}

.news_item .news_detail span {
	font-size: 1.5rem;
	color: #666666;
	line-height: 1.5rem;
}

.news_item .news_detail i {
	font-size: 1.5rem;
	color: #666666;
	margin-left: 0.625rem;
}

.one_news_detail {
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.3);
}

.new_detail_content {
	border-radius: 1.25rem 1.25rem 0 0;
	width: 100%;
	height: 80vh;
	background-color: #FFFFFF;
	position: absolute;
	bottom: 0;
	transform: translateY(100%);
	transition: transform 0.3s ease-out;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch; /* iOS 惯性滚动 */
}

.new_detail_content.show {
	transform: translateY(0);
}

.new_detail_content.hide {
	transform: translateY(100%);
}

.new_detail_content .close_detail {
	width: 100%;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 2.5rem;
}

.new_detail_content .close_detail i {
	font-size: 1.875rem;
	color: #999999;
}

.new_detail_content .new_detail_info {
	width: 100%;
	height: calc(100% - 6rem);
	overflow-y: auto;
	padding: 0 2.5rem;
}

.new_detail_content .new_detail_info .detail_title {
	font-size: 2.5rem;
	color: #000000;
	line-height: 2.75rem;
	font-weight: bold;
}

.new_detail_content .new_detail_info .detail_time {
	height: 4rem;
	font-size: 1.5rem;
	color: #999999;
	line-height: 24px;
	display: flex;
	align-items: center;
}

.new_detail_content .new_detail_info .detail_info {
	border-top: 1px solid #EAEAEA;
	padding: 1.25rem 0;
	font-size: 1.75rem;
	color: #333333;
	line-height: 2.5rem;
	white-space: pre-line;
}