.vegas {
	position:relative;
	width: 100%;
	height: 100vh;
}
.fixed-menu {
	position: fixed;
	top: -60px;
	left: 0;
	z-index: 1;
	transition: all 0.3s ease-in-out;
	visibility: hidden;

	width:100%;
	height:60px;
	background-color:#fff;
	border-bottom:1px solid #ccc;
}
.fixed-menu.is-show {
	top: 0;
	visibility: visible;
}
.fixed-menu-items {
	width:90%;
	margin:0 auto;
	color:#000;
}
.fixed-menu-item {
	float:left;
	margin-left:30px;
	font-size:14px;
	cursor:pointer;
	padding-top:15px;
	padding-bottom:5px;
}
.fixed-menu-logo {
	float:right;
	cursor:pointer;
	padding-top:8px;
	width:160px;
}
.fixed-sub-menu {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1;

	width:100%;
	height:60px;
	background-color:#fff;
	border-bottom:1px solid #ccc;
}
.fixed-sub-menu-items {
	width:90%;
	margin:0 auto;
	color:#000;
}
.fixed-sub-menu-item {
	float:left;
	margin-left:40px;
	font-size:14px;
	cursor:pointer;
	padding-top:15px;
	padding-bottom:5px;
}
.fixed-sub-menu-logo {
	float:right;
	cursor:pointer;
	padding-top:8px;
	width:160px;
}
@media (max-width: 767px) {
	.openbtn {
		position: fixed;
		top: 0px;
		background:#667788;
		cursor: pointer;
		width: 50px;
		height:50px;
		border-radius: 5px;
		z-index:9999;
	}
	.openbtn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 2px;
		border-radius: 5px;
		background: #fff;
		width: 45%;
	}
	.openbtn span:nth-of-type(1) {
		top:13px; 
	}
	.openbtn span:nth-of-type(2) {
		top:19px;
	}
	.openbtn span:nth-of-type(3) {
		top:25px;
	}
	.openbtn span:nth-of-type(3)::after {
		content:"Menu";
		position: absolute;
		top:7px;
		left:0px;
		color: #fff;
		font-size: 0.6rem;
		text-transform: uppercase;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 14px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3) {
		top: 26px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
	.openbtn.active span:nth-of-type(3)::after {
		content:"Close";
		transform: translateY(0) rotate(-45deg);
		top:7px;
		left:4px;
	}
	.menuplate {
		position:fixed;
		top:0px;
		z-index:9997;
		box-sizing:border-box;
		display:none;
		padding-top:-5px;
		padding-bottom:40px;
		width:100%;
		box-shadow: none;
	}
	.menuplate-base {
		position:relative;
		box-sizing:border-box;
		width:100%;
		height:100vh;
		padding-left:20px;
		cursor:pointer;
		background-color:#f4f4f8;
	}
	.menuplate-inner {
		position:absolute;
		top: 50%;
		transform: translate(0%, -50%);
		width:100%;
		display:none;
	}
	.menuplate-inner table {
		box-sizing:border-box;
		width:90%;
		margin:0 auto;
	}
	.menuplate-inner th,td {
		box-sizing:border-box;
		border:none;
		vertical-align:middle;
	}
	.menubox-icon {
		width:5%;
		padding-top:12px;
		padding-bottom:12px;
		font-size:20px;
		text-align:center;
	}
	.menubox {
		padding-top:12px;
		padding-bottom:12px;
		font-size:20px;
	}
	.menubox-title {
		font-size:18px;
	}
	.menubox-eng {
		font-size:12px;
	}
	.menu-logo {
		position:absolute;
		width:140px;
		right: 0;
		top:0px;
		z-index:9999;
		padding:10px;
	}
}

