* {
	margin: 0;
	padding: 0;
	font-size: 0.16rem;
}

.body{
	width: 100%;
	height: auto;
	background: #F8F8F8;
	padding: 0.8rem 0 1.2rem;
	box-sizing: border-box;
}


.view{
	width: 100%;
	height: auto;
	background: #FFFFFF;
	padding: 0.8rem 0.5rem;
	box-sizing: border-box;
}


.title{
	font-weight: bold;
	font-size: 0.32rem;
	color: #333333;
	line-height: 0.45rem;
	text-align: center;
	margin-bottom: 0.28rem;
}
.body_txt,
.body_txt .body_time,
.body_txt .body_num{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-size: 0.16rem;
	color: #999999;
	line-height: 0.21rem;
}
.body_txt .body_time{
	margin-right: 0.27rem;
}
.body_hr{
	width: 100%;
	height: 0rem;
	border: 0.01rem solid #DCDCDC;
	margin-bottom: 0.25rem;
	margin-top: 0.21rem;
}

.body_content{
	padding-bottom: 0.33rem;
	box-sizing: border-box;
	border-bottom: 0.01rem solid #DCDCDC;
	font-weight: 400;
	font-size: 0.16rem;
	color: #333333;
	line-height: 0.3rem;
}
.body_content p{
	font-weight: 400;
	font-size: 0.16rem;
	color: #333333;
	line-height: 0.3rem;
	margin-bottom: 0.23rem;
}
.body_content img{
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 0 auto;
}


.next_pre{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.32rem;
}
.next_pre .next_list{
	width: calc(100% - 1.5rem);
}
.next_pre .next_list a{
	width: 100%;
	font-weight: 400;
	font-size: 0.16rem;
	color: #666666;
	margin-bottom: 0.18rem;
	cursor: pointer;
	display: block;
}
.next_pre .next_list a:last-child{
	margin-bottom: 0;
}
.next_pre .next_list a:hover{
	color: #23478C;
}
.next_pre .notice_more{
	width: 1.28rem;
	height: 0.4rem;
	background: linear-gradient( 132deg, #03AF9F 0%, #00AFEA 100%);
	border-radius: 0.54rem;
	font-weight: 400;
	font-size: 0.16rem;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.next_pre .notice_more i{
	width: 0.14rem;
	height: 0.15rem;
	background: url(../img/more_icon3.png) center no-repeat;
	background-size: cover;
	margin-left: 0.1rem;
}

.next_pre .notice_more:hover{
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.next_pre .notice_more:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.next_pre .notice_more:hover:before{
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}