* {
	margin: 0;
	padding: 0;
}

body {
	background: #F8FBFF;
}
.banner{
	margin-bottom: 0.3rem;
}

.notice_item{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 0.01rem dashed #D5D5D5;
	padding-top: 0.31rem;
	padding-bottom: 0.27rem;
	box-sizing: border-box;
	cursor: pointer;
}
.notice_item .notice_txt .notice_title{
	font-weight: bold;
	font-size: 0.22rem;
	color: #000000;
	margin-bottom: 0.1rem;
}
.notice_item .notice_txt .notice_date{
	font-weight: normal;
	font-size: 0.16rem;
	color: #414141;
}
.notice_item .notice_more{
	width: 1.3rem;
	height: 0.5rem;
	border-radius: 0.1rem;
	border: 0.01rem solid #004098;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 0.16rem;
	color: #004097;
}
.notice_item .notice_more i{
	width: 0.15rem;
	height: 0.08rem;
	background: url(../img/news_more2.png) center no-repeat;
	background-size: cover;
	margin-left: 0.1rem;
}
.notice_item:hover .notice_txt .notice_title{
	color: #004097;
}
.notice_item:hover .notice_more{
	background: #C91420;
	color: #fff;
	border: 0.01rem solid #C91420;
}
.notice_item:hover .notice_more i{
	background: url(../img/news_more.png) center no-repeat;
}


@media screen and (max-width:1024px){
    .notice_list{
        width: 95%;
        margin: 20px auto;
    }
    .notice_txt{
        width: 70%;
    }
    .notice_item .notice_txt .notice_title{
        font-size: 16px;
    }
    .notice_item .notice_txt .notice_date{
        font-size: 14px;
    }
    .notice_item .notice_more{
        width: fit-content;
        height: auto;
        font-size: 14px;
        padding: 8px 10px;
        flex-shrink: 0;
        white-space: nowrap;
    }
}




