.notice-banner{
	display: -webkit-box;     /* 老版 Safari */
	display: -ms-flexbox;     /* IE10 */
	display: -webkit-flex;    /* 老版 Android */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 300px;
	font-weight: 500;
	font-size: 30px;
	color: #FFFFFF;
	background-size: cover;
	background: url(../assets/img/notice-bg.png) no-repeat center;
	background-size: cover;
}

.notice-session{
	padding: 100px 0;
}

@media(max-width:1300px){
	.notice-banner{
		height: 280px;
		font-size: 30px;
	}
	
	.notice-session{
		padding: 50px 0;
	}
}
@media(max-width:1000px){
	.notice-banner{
		height: 200px;
		font-size: 30px;
	}
	.notice-session{
		padding: 30px 0;
	}
}

@media(max-width:600px) {
	.notice-banner{
		height: 150px;
		font-size: 20px;
		letter-spacing: 1px;
	}
}



.notice-ul{
	display: -webkit-box;     /* 老版 Safari */
	display: -ms-flexbox;     /* IE10 */
	display: -webkit-flex;    /* 老版 Android */
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}
.notice-ul .notice-li{
	position: relative;
	width: 360px;
	height: 550px;
	margin-right: 26px;
	margin-bottom: 26px;
	background-color: #FFFFFF;
	cursor: pointer;
}
.notice-ul .notice-li:nth-child(3n) {
	margin-right: 0;
}


.notice-ul .notice-li:hover{
	box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
}

.notice-ul .notice-li:hover .notice-li-img-box{
	transform: scale(1.2);
}

.more-btn{
	display: -webkit-box;     /* 老版 Safari */
	display: -ms-flexbox;     /* IE10 */
	display: -webkit-flex;    /* 老版 Android */
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 20px;
	bottom: 20px;
	padding: 0 16px;
	height: 40px;
	font-size: 18px;
	color: #A371FF;
	background: #FFFFFF;
	border: 1px solid #A371FF;
	border-radius: 6px;
	transition: all 0.5s;
}

.more-btn-icon{
	width: 0;
	height: 28px;
	transition: all 0.5s;
}


.notice-ul .notice-li:hover .more-btn{
	color: #FFFFFF;
	padding-right: 6px;
	background-color: #A371FF;
}

.notice-ul .notice-li:hover .more-btn-icon{
	width: 28px;
}


.notice-li-img{
	width: 360px;
	height: 238px;
	overflow: hidden;
	
}
.notice-li-img-box{
	width: 100%;
	height: 100%;
	background-size: cover!important;
	transition: all 0.5s;
}
.notice-li-content{
	padding: 20px;
}
.notice-li-content-title{
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 18px;
	color: #333333;
	line-height: 1.5em;
}
.notice-li-content-desc{
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 1.8em;
	opacity: 0.5;
}

@media (max-width: 1200px){
	.notice-ul{
		display: -webkit-box;     /* 老版 Safari */
		display: -ms-flexbox;     /* IE10 */
		display: -webkit-flex;    /* 老版 Android */
		display: flex;	
		flex-wrap: wrap;
		padding: 0 40px;
		/* justify-content: center; */
		justify-content: space-between;
	}
	
	
	
	.notice-ul .notice-li:nth-child(3n) {
		margin-right: 26px;
	}
}

@media (max-width: 1000px){
	.notice-ul{
		display: -webkit-box;     /* 老版 Safari */
		display: -ms-flexbox;     /* IE10 */
		display: -webkit-flex;    /* 老版 Android */
		display: flex;
		flex-wrap: wrap;
		padding: 0;
		
		justify-content: space-around;
		
	}
	
	
	
	.notice-ul .notice-li{
		position: relative;
		width: 300px;
		height: 480px;
		margin-right: 0!important;
		margin-bottom: 30px;
		background-color: #FFFFFF;
	}
	.notice-li-img{
		width: 300px;
		height: 198px;
		background-size: cover!important;
	}
	
	.notice-li-content-title{
		font-size: 18px;
		line-height: 1.4;
	}
	.notice-li-content-desc{
		font-size: 16px;
		line-height: 1.6;
	}
	.more-btn{
		height: 40px;
		font-size: 16px;
	}
}

@media (max-width: 650px){
	.notice-ul .notice-li{
		width: 100%;
		height: auto;
		margin-bottom: 20px;
		padding-bottom: 60px;
		padding-top: 20px;
	}
	.notice-li-img{
		margin: auto;
	}
	.notice-li-content-title{
		margin-bottom: 12px;
	}
	.more-btn{
		height: 40px;
		font-size: 14px;
	}
	
}