/* news-list */
.m-banner {
	height: 5rem;
	margin: .38rem 0 .54rem;
	opacity: 0;
	transition: all 1s ease;
}
.m-banner.z-active {
	opacity: 1;
}
.m-list {
	margin-top: .4rem;
}
.m-list li {
	float: left;
	position: relative;
	width: 4.5rem;
	padding-bottom: .24rem;
	margin-left: .45rem;
	margin-bottom: .5rem;
	opacity: 0;
	transform: translate(0,1rem);
	transition: all .8s ease;
}
.m-list li.z-active {
	opacity: 1;
	transform: translate(0,0);
}
.m-list a:nth-child(3n+1) li {
	margin-left: 0;
}
.m-list li:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #000;
	transition: width .3s ease;
}
.m-list li:hover:after {
	width: 100%;
}
.m-list li .img {
	overflow: hidden;
}
.m-list li .img div {
	height: 3rem;
	background-size: cover;
}
.m-list li .name {
	height: .6rem;
	margin: .12rem 0 .2rem;
	line-height: .3rem;
	font-size: .2rem;
}
.m-list li .date {
	font-size: .14rem;
	color: #bbb;
}
/* end news-list */

/* news-detail */
.m-detail {
	float: left;
	width: 8rem;
	margin-top: .8rem;
	min-height: 6rem;
	margin-bottom: 1.8rem;
}
.m-detail .title {
	line-height: .4rem;
	font-size: .3rem;
}
.m-detail .date {
	margin: .36rem 0 .95rem;
	font-size: .15rem;
	color: #999;;
}

.m-aside {
	float: right;
	position: sticky;
	top: 1rem;
	width: 3.38rem;
	margin-top: .75rem;
	margin-bottom: 1rem;
}
.m-aside .share {
	height: .6rem;
	border-bottom: 1px solid #eee;
	margin-bottom: .3rem;
	font-size: .15rem;
	color: #888;
}
.m-aside .share a {
	margin: 0 .06rem;
	font-size: .2rem;
}
.m-aside .share a:nth-child(2):hover {
	color: #D52C2B;
}
.m-aside .share a:nth-child(3):hover {
	color: #F9C728;
}
.m-aside .recommend li {
	line-height: .28rem;
	font-size: .15rem;
	color: #444;
}
.m-aside .recommend a:nth-child(n+2) li {
	margin-top: .4rem;
}
.m-aside .recommend li:hover {
	text-decoration: underline;
	color: #EFAE35;
}
.m-aside .back {
	margin-top: .5rem;
	line-height: .2rem;
	font-size: .15rem;
	color: #EFAE35;
}
.m-aside .back:hover {
	color: #000;
}
.m-aside .back .tf {
	margin-right: .1rem;
}
/* end news-detail */