.eis-page-top{
	width: 100%;
	height: 60px;
	background-color: rgba(0,0,0,1);
	/* position: absolute;
	top: 0;
	left: 0; */
	z-index: 300;
	font-size: 18px;
	border-bottom: 1px solid #a7a7a7;
}
.eis-page-top-bar{
	width: 100%;
	height: 60px;
	background-color: rgba(0,0,0,1);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 300;
	font-size: 18px;
}
.top-value{
	height: 100%;
	max-width: 1470px;
	margin: auto;
	display: flex;
	align-items: center;
	gap: 100px;
	/* justify-content: space-between; */
}
.top-menu{
	display: none;
}
.top-logo{
	height: 46px;
	width: 207px;
	line-height: 46px;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	/* text-align: center; */
}
.top-logo img{
	width: 100%;
	height: 100%;
}
.top-download{
	width: 150px;
	height: 46px;
	background-color: #ffffff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #CD5AA0;
	cursor: pointer;
	font-size: 16px;
}

.top-nav-bar{
	display: flex;
	gap: 20px;
	color: #ffffff;
	/* justify-content: flex-end; */
}
.top-nav-bar div a{
	color: #ffffff;
	text-decoration: none;
}
.top-nav-bar div a:hover{
	color: #CD5AA0;
}
.active-hover{
	color: #CD5AA0 !important;
}

.menu-view{
	height: 100vh;
	overflow: hidden;
	background-color: #ffffff;
	/* display: none; */
}
.menu-show{
	width: 23rem;
	animation: menuShow .5s;
}

@keyframes menuShow {
	0% {
		width: 0rem;
	}

	100% {
		width: 23rem;
	}
}

.menu-top{
	height: 80px;
	overflow: hidden;
	display: flex;
	align-items: center;
	position: relative;
}
.menu-top img{
	height: 80%;
	position: relative;
	left: 20px;
}

.menu-top .close{
	position: absolute;
	top: 10px;
	right: 25px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
.menu-nav-bar{
	min-width: 10rem;
	height: 4rem;
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	text-indent: .5rem;
	padding-left: 3rem;
}
.menu-nav-bar img{
	width: 2rem;
}

