.navigation {
	width: calc(100% - 28px);
	height: 54px;
	padding: 0 0 0 28px;
	background: #222222;
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	z-index: 800;
}

.nav-bottom {
	width: 100%;
	height: 54px;
}

.navigation .left {
	font-size: 14px;
}

.navigation .left img {
	width: 45px;
	height: 42px;
	margin-top: 7px;
}

.navigation .left a {
	display: flex;
}

.navigation .left a .logo-text {
	height: 54px;
	margin-left: 13px;
	display: flex;
}

.navigation .left a .logo-text > div{
	margin: auto;
}

.navigation .left a p{
	color: #FFF100;
	font-size: 12px;
	font-family: Yuanti-SC-Light;
	font-weight: 300;
}

.navigation .right {
	width: 70%;
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.navigation .right .router {
	/*overflow: hidden;*/
	display: flex;
	margin-right: 2.96rem;
}

.navigation .right .router a {
	display: inline-block;
	min-width: 100px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	color: #FFFFFF;
	font-size: 15px;
	margin-right: 0.33rem;
  transition: color .2s;
	position: relative;
	font-family: none;
}

.navigation .right .router a:hover ul{
	display: block;
}
.navigation .right .router > .lang {
	position: absolute; !important;
	right: 30px;
	font-size: 13px;
	color: #00e91d;
}
.navigation .router ul {
	width: 160%;
	position: absolute;
	top: 53px;
	left: -30%;
	display: none;
	z-index: 100;
}

.navigation .router ul  li {
	line-height: 30px;
	text-align: center;
	border-radius: 30px;
	margin-bottom: 10px;
	background: #fff;
	color: #333;
	transition: all .3s;
	border: 1px solid transparent;
	cursor: pointer;
}

.navigation .router ul  li:hover {
	opacity: .9;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
}

.down-arrow {
	width: 17px;
	position: relative;
	top: 1px;
	color: #fff;
}

.navigation .right .router a:hover {
  color: #F8ED44;
  cursor: pointer;
}

.navigation .right .router a:hover .down-arrow {
	color: #F8ED44;
}

.nav-router-active {
  color: #F8ED44 !important;
}

.navigation .right .router a:last-of-type {
	margin-right: 28px;
}

.right-menu-btn {
  width: 54px;
  height: 54px;
  line-height: 54px;
  position: relative;
  cursor: pointer;
}

.right-menu-btn img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
}

@media only screen and (max-width: 1150px) {
	.navigation {
		width: 100%;
		padding-left: 15px;
		box-sizing: border-box;
	}

	.navigation .right .router {
		margin-right: 0;
	}

	.navigation .right .router a {
		min-width: 85px;
		margin-right: 0;
	}
}