.menu{
	z-index:11;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;left: 0;
	padding: 0 5%;
	background: transparent;
	transition: all .3s linear;
	display: flex;
	justify-content: center;
}
.navigation-m{
    background: rgba(255,255,255, .5);
	backdrop-filter: blur(10px);
	height: 72px;
	transition: all .3s linear;
}

.page-mu{
	width: 100%;
	max-width: 1300px;
	display: flex;
	align-items: center;
    justify-content: space-between;
	align-items: center;
	background-color: transparent;
}

.icon-global{
	width: 32px;
	height: 32px;
	cursor: pointer;
}
.logo{
	width: 160px;
	height: auto;
	display: flex;
	align-items: center;
}
.logo img{
	width: 100%;
	height: auto;
}
.lang{
	height: auto;
	cursor: pointer;
	position: relative;
	background: #282828;
}
.lg-active{
	align-items: center;
    background: hsla(0, 0%, 100%, .05);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 2px;
    display: flex;
    height: 40px;
    padding: 0 10px;
    position: relative;
}
.iconfont{
	color: #000;
    font-size: 16px;
    transition: all .3s;
}
.icon-arrow-down{
	color: #ffffff;
}
.lang-txt{
	color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 8px;
    white-space: nowrap;
}
.lang:hover .lg-active{
	opacity: .9;
}
.lg-active .iconfont{
	font-size: 14px;
	font-weight: 600;
}
.lg-other{
	position: absolute;
	right: 0;top: 30px;
	width: 156px;
	height: auto;
	font-size: 12px;
	display: none;
	border-top: 12px solid transparent;
}
.lg-other ul{
	background-color: #fff;
	border-radius: 0 0 5px 5px;
	padding:  10px;
}
.lg-other li{
	height: 36px;
	line-height: 36px;
	width: 100%;
	font-size: 14px;
	text-align: left;
	border-radius: 3px;
}
.lg-other li a{
	color: #333;
	padding: 0 12px;
	display: block;
}
.lang:hover .lg-other{
	display: block;
}
.lg-other li:hover{
	background: rgba(69,47,36, .5);
}
.lg-other li:hover a{
	color: #ffffff;
}

@media(max-width: 860px){
	.menu{
		width: 100%;
		height: 2rem;
	}
	.navigation-m {
		height: 1.3rem;
	}
	.page-mu {
		padding: 0 5%;
	}
	.logo {
		width: 3.5rem;
	}
	.lang{
		height: auto;
		cursor: pointer;
		position: relative;
		margin: 0;
	}
	.lg-active{
		color: #222;
		width: auto;
		height: 30px;
		line-height: 30px;
		padding: 0 12px;
		border-radius: 2px;
		text-align: center;
		font-size: 14px;
		font-weight: 700;
		box-sizing: border-box;
	}
	.lang:hover .lg-active{
		opacity: .9;
	}
	.lg-other{
		position: absolute;
		right: 0;top: 20px;
		width: 130px;
		height: auto;
		font-size: 12px;
		display: none;
		border-top: 15px solid transparent;
	}
	.lg-other ul{
		border-radius: 0 0 5px 5px;
		padding:  6px;
	}
	.lg-other li{
		height: 30px;
		line-height: 30px;
		width: 100%;
		font-size: 12px;
		text-align: left;
		border-radius: 3px;
	}
	.lg-other li a{
		color: #333;
		padding: 0 12px;
		display: block;
	}
	.lang:hover .lg-other{
		display: block;
	}
}


