
.menu_icon {
	position: absolute;
	top: 10px;
	left: 30px;
	z-index: 10000;
}

.menu_icon img {
	width: 40px;
}
.menu_box {
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	display: none;
	position: fixed;
	z-index: 1001;
	animation: animate 1s ease 1;
	background-color: rgba(0, 0, 0, 0.7);
}
@keyframes animate {
	0% {
		height: 0px;
		top: 100vh;
	}

	100% {
		height: 100vh;
		top: 0px;
	}
}

.menu_top {
	display: flex;
	justify-content: flex-end;
}

.menu_btn {
	color: #fff;
	font-size: 0.3rem;
	padding: 0.1rem 0.2rem;
	background-color: red;
	border-radius: 0.06rem;
	margin: 0.2rem;
}

.menu_content {
	padding: 0 0.2rem;
}

.menu_content a {
	color: #fff;
	width: 100%;
	display: block;
	font-size: 0.34rem;
	padding: 2vh 0;
	/* border-bottom: 1px solid rgba(255,255,255,0.5); */
}


