.m-summary {
	padding: .4rem 0 .72rem;
	overflow: hidden;
}
.m-summary .banner {
	float: left;
	width: 7.8rem;
	height: 4rem;
	opacity: 0;
	transform: translate(-1rem,0);
	transition: all 1s ease;
}
.m-summary.z-active .banner {
	opacity: 1;
	transform: translate(0,0);
}
.m-summary .content {
	float: right;
	width: 5.78rem;
	opacity: 0;
	transform: translate(1rem,0);
	transition: all 1s ease;
}
.m-summary.z-active .content {
	opacity: 1;
	transform: translate(0,0);
}
.m-summary .content h1 {
	margin: .76rem 0 .4rem;
	font-size: .4rem;
}

.m-list li {
	float: left;
	width: 3.38rem;
	margin-left: .29rem;
	margin-top: .48rem;
	opacity: 0;
	transform: translate(0,1rem);
	transition: opacity .6s ease, transform .6s ease;
}
.m-list li.z-active {
	opacity: 1;
	transform: translate(0,0);
}
.m-list a:nth-child(4n+1) li {
	margin-left: 0;
}
.m-list a:nth-child(4n+2) li {
	transition-delay: .15s;
}
.m-list a:nth-child(4n+3) li {
	transition-delay: .3s;
}
.m-list a:nth-child(4n+4) li {
	transition-delay: .45s;
}
.m-list li .img {
	position: relative;
	box-sizing: border-box;
	height: 3.38rem;
	padding: .2rem;
	overflow: hidden;
}
.m-list li .img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.03);
}
.m-list li .color {
	position: absolute;
	left: .16rem;
	top: .16rem;
	line-height: .18rem;
	font-size: 12px;
	text-align: center;
	color: #7F6F64;
}
.m-list li .color div {
	width: 12px;
	height: 12px;
	border-radius: 100%;
	margin-bottom: 6px;
}
.m-list li .name {
	position: relative;
	line-height: .6rem;
	font-size: .16rem;
	text-align: center;
	color: #333;
}
.m-list li .name:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #000;
	transition: width .3s ease;
}
.m-list li:hover .name:after {
	width: 100%;
}