/* classify */
.m-classify {
	position: relative;
	box-sizing: border-box;
	height: 9.25rem;
	padding-bottom: .66rem;
	overflow: hidden;
}
.m-classify li {
	position: relative;
	margin-top: .82rem;
	color: #ccc;
	cursor: pointer;
	transition: color .2s ease;
}
.m-classify li.z-crt {
	color: #000;
}
.m-classify li h1 {
	line-height: .65rem;
	font-size: .9rem;
	white-space: nowrap;
	transition: opacity .2s ease;
}
.m-classify li h1:nth-child(2) {
	z-index: 10;
	position: absolute;
	left: 50%;
	top: 0;
	color: #000;
	text-stroke: 2px #fff;
	-webkit-text-stroke: 2px #fff;
	transform: translate(-50%,0);
}
.m-classify li.z-crt h1:nth-child(1),
.m-classify li h1:nth-child(2) {
	opacity: 0;
}
.m-classify li.z-crt h1:nth-child(2) {
	opacity: 1;
}
.m-classify li span {
	position: absolute;
	left: 100%;
	top: -.1rem;
	margin-left: .12rem;
	line-height: .24rem;
	font-size: .24rem;
}
.m-classify li h1:nth-child(2) span {
	font-family: 'Microsoft YaHei';
	text-stroke: 1px #fff;
	-webkit-text-stroke: 1px #fff;
}

.m-classify .image .item {
	z-index: 1;
	position: absolute;
	left: 50%;
	width: 4.5rem;
	height: 5.6rem;
	pointer-events: none;
	opacity: 0;
	animation: classifyImage 1s;
	animation-fill-mode: forwards;
}
@keyframes classifyImage {
	0% {
		opacity: 0;
		transform: translate(-50%,0) scale(.96);
		filter: blur(4px);
	}

	100% {
		opacity: 1;
		transform: translate(-50%,0) scale(1);
		filter: blur(0);
	}
}
.m-classify .image .item.mini {
	width: 2.8rem;
	height: 3.5rem;
}
.m-classify .image .item:nth-child(1) {
	top: 5.16rem;
	margin-left: -7rem;
}
.m-classify .image .item:nth-child(2) {
	top: .9rem;
	margin-left: -2.6rem;
}
.m-classify .image .item:nth-child(3) {
	top: 3.2rem;
	margin-left: 3.3rem;
}
.m-classify .image .item:nth-child(4) {
	top: 1.66rem;
	margin-left: 7.5rem;
}
/* end classify */

/* list */
.m-list {
	padding-top: 1.28rem;
}
.m-list .tab li {
	position: relative;
	width: 2.3rem;
	border-bottom: 1px solid #bbb;
	line-height: .7rem;
	font-size: .24rem;
	text-align: center;
	color: #bbb;
	cursor: pointer;
	transition: color .2s ease;
}
.m-list .tab li.z-crt,
.m-list .tab li:hover {
	font-weight: bold;
	color: #1944B2;
}
.m-list .tab li:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: rgba(0,0,0,0);
	transition: background .2s ease;
}
.m-list .tab li.z-crt:after,
.m-list .tab li:hover:after {
	background: #1944B2;
}
.m-list .content {
	position: relative;
}
.m-list .list {
	gap: .46rem;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: .62rem 0 1.6rem;
	opacity: 0;
	transition: opacity .2s ease;
}
.m-list .list.z-crt {
	z-index: 1;
	position: relative;
	opacity: 1;
}
.m-list .list li {
	width: 3.4rem;
	height: 4.25rem;
	line-height: .24rem;
	font-size: .2rem;
	color: #0A2D88;
	background: #F5F5F5;
	cursor: pointer;
	transition: line-height .3s ease, font-size .3s ease;
}
.m-list .list li:hover {
	line-height: .3rem;
	font-size: .26rem;
}
/* end list */