/* 二级导航 */
.second_nav{
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #000;
	z-index: 3;	
	height: 0.86rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0.8rem;
	opacity: 0;
	transform: translateY(-0.86rem);
	pointer-events: none;
	transition: all .5s;
}
.second_nav._show{
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.second_nav_logo{
	width: 2rem;
}
.second_nav_logo img{
	width: 100%;
}
.second_nav_list{
	display: flex;
	align-items: center;
}
.second_nav_list div{
	color: #fff;
	transition: all .3s;
	font-size: 0.16rem;
	margin-left: 0.5rem;
	cursor: pointer;
}
.second_nav_list div:nth-of-type(1){
	margin-left: 0;
}
.second_nav_list div.active{
	color: #bf906c;
}
@media (min-width: 768px){
	.second_nav_list div:hover{
		color: #bf906c;
	}
}


.second_nav_btn{
	display: none;
}
@media (max-width: 768px){
	.second_nav{
		flex-direction: column;
		height: auto;
		background-color: transparent;
		width: 100%;
		padding: 0;
	}
	.second_nb{
		display: flex;
		justify-content: space-between;
		height: 1.2rem;
		width: 100%;
		align-items: center;
		padding: 0 0.5rem;
		background-color: #000;
	}
	.second_nav_logo{
		width: 2.5rem;
	}
	.second_nav_btn{
		display: flex;
		align-items: center;
		font-size: 0.3rem;
		color: #bf906c;
	}
	.second_nav_btn img{
		margin-left: 0.2rem;
		width: 0.15rem;
		transform: rotate(90deg);
		transition: all .3s;
	}
	.second_nav._in .second_nav_btn img{
		transform: rotate(270deg);
	}
	.second_nav_list{
		width: 100%;
		overflow-x: scroll;
		padding: 0 0.5rem;
		align-items: center;
		height: 0rem;
		background-color: rgba(0, 0, 0, 0.7);
		overflow-y: hidden;
		transition: all .3s;
	}
	.second_nav._in .second_nav_list{
		height: 1.2rem;
	}
	.second_nav_list div{
		font-size: 0.26rem;
	}
	
	.second_nav_list::-webkit-scrollbar {
	    display: none;
	}
}