* {
	margin: 0;
	padding: 0;
}

body {
	background: #F8FBFF;
}



.news_class{
	display: flex;
	justify-content: center;
}
.news_class a{
	width: 1.3rem;
	height: 0.5rem;
	border: 0.01rem solid #004098;
	line-height: 0.5rem;
	text-align: center;
	font-weight: bold;
	font-size: 0.16rem;
	color: #004097;
	margin: 0 0.18rem;
	border-radius: 0.1rem;
	margin-bottom: 0.42rem;
	cursor: pointer;
}
.news_class a.act,
.news_class a:hover{
	background: #C91420;
	color: #fff;
	border: 0.01rem solid #C91420;
}


.news_list{
	width: 100%;
	height: auto;
	background: #fff;
	padding: 0.24rem 0.5rem 0.63rem;
	box-sizing: border-box;
	margin-bottom: 0.89rem;
}
.news_list .news_item{
	width: 100%;
	height: 1.47rem;
	border-bottom: 0.01rem dashed #e5e5e5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.news_list .news_item .news_title{
	font-weight: bold;
	font-size: 0.22rem;
	color: #000000;
	width: 11rem;
	margin-bottom: 0.08rem;
}
.news_list .news_item .news_cont{
	width: 11rem;
	font-weight: 400;
	font-size: 0.16rem;
	color: #6C6C6C;
	line-height: 0.25rem;
	margin-bottom: 0.16rem;
}
.news_list .news_item .news_time{
	font-weight: 400;
	font-size: 0.16rem;
	color: #868686;
	line-height: 0.6rem;
	display: flex;
	align-items: center;
	height: 0.2rem;
}
.news_list .news_item .news_time i{
	width: 0.16rem;
	height: 0.16rem;
	background: url(../img/time.png) center no-repeat;
	background-size: cover;
	margin-right: 0.09rem;
	display: block;
}
.news_list .news_item .news_more{
	width: 1.3rem;
	height: 0.5rem;
	border-radius: 0.1rem;
	border: 0.01rem solid #004098;
	font-weight: 600;
	font-size: 0.16rem;
	color: #004097;
	display: flex;
	align-items: center;
	justify-content: center;
}
.news_list .news_item .news_more i{
	width: 0.15rem;
	height: 0.08rem;
	background: url(../img/news_more2.png) center no-repeat;
	background-size: cover;
	display: block;
	margin-left: 0.1rem;
}
.news_list .news_item:hover .news_title{
	color: #004097;
}
.news_list .news_item:hover .news_more{
	background: #C91420;
	color: #fff;
	border: 0.01rem solid #C91420;
}
.news_list .news_item:hover .news_more i{
	background: url(../img/news_more.png) center no-repeat;
}





.page_box {
    margin-top: 0.52rem;
    margin-bottom: 0;
}


@media screen and (max-width:1024px){
    .news_class a{
        font-size: 16px;
        width: fit-content;
        height: auto;
        padding: 8px 10px;
        margin: 0 5px;
    }
    .news_list{
        width: 95%;
        margin: 20px auto;
        padding: 10px;
    }
    .news_txt{
        width: calc(100% - 130px);
    }
    .news_list .news_item .news_title,
    .news_list .news_item .news_cont{
        width: 100%;
    }
    .news_list .news_item .news_title{
        font-size: 16px;
    }
    .news_list .news_item .news_title a{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .news_list .news_item .news_cont{
        font-size: 14px;
    }
    .news_list .news_item .news_more{
        flex-shrink: 0;
        font-size: 14px;
        width: fit-content;
        height: auto;
        padding: 8px 10px;
    }
    .news_list .news_item .news_time{
         font-size: 14px;
    }
    .news_list .news_item .news_time i{
        width: 14px;
        height: 14px;
    }
}