/* classify */
.m-classify {
	position: relative;
	box-sizing: border-box;
	height: calc(100vh - .88rem);
	overflow: hidden;
}
.m-classify li {
	position: relative;
	color: #ccc;
	cursor: pointer;
	transition: color .2s ease;
}
.m-classify li:nth-child(n+2) {
	margin-top: .6rem;
}
.m-classify li h1 {
	font-size: .7rem;
	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: 1px #fff;
	-webkit-text-stroke: 1px #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';
}

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

	100% {
		opacity: 1;
		transform: scale(1);
		filter: blur(0);
	}
}
.m-classify .image .item.mini {
	width: 2.4rem;
	height: 3rem;
}
.m-classify .image .item:nth-child(1) {
	left: .4rem;
	top: 15%;
}
.m-classify .image .item:nth-child(2) {
	right: -.2rem;
	top: 10%;
}
.m-classify .image .item:nth-child(3) {
	left: -.1rem;
	bottom: 15%;
}
.m-classify .image .item:nth-child(4) {
	right: .3rem;
	bottom: 30%;
}
/* end classify */

/* list */
.m-list .tab {
	float: left;
	min-width: 100%;
	border-bottom: 1px solid #D6E1EC;
	padding: 0 .24rem;
}
.m-list .tab li {
	position: relative;
	padding: 0 .14rem;
	line-height: 1rem;
	font-size: .3rem;
	white-space: nowrap;
	color: #333;
}
.m-list .tab li:nth-child(n+2) {
	margin-left: .24rem;
}
.m-list .tab li.z-crt {
	font-weight: bold;
	font-size: .32rem;
	color: #0A2D88;
}
.m-list .tab li:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #1944B2;
	transform: translate(-50%,0);
	transition: width .2s ease;
}
.m-list .tab li.z-crt:after {
	width: 100%;
}
.m-list .content {
	position: relative;
}
.m-list .list {
	gap: .31rem;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: .6rem .24rem 1rem;
	opacity: 0;
	transition: opacity .2s ease;
}
.m-list .list.z-crt {
	z-index: 1;
	position: relative;
	opacity: 1;
}
.m-list .list li {
	width: 3.2rem;
	height: 4rem;
	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 */