li {
  list-style: none;
}
.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 106px;
  padding-left: 25px;
  box-sizing: border-box;
}
.nav .nav-arrow {
  width: 69px;
  height: 91px;
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.nav .nav-center {
  width: 1200px;
  height: 100%;
  text-align: center;
}
.nav .nav-menus {
  display: flex;
  align-items: center;
  width: 212px;
  height: 100%;
}
.nav .nav-menus .nav-home {
  width: 92px;
  height: 91px;
  padding: 20px 17px 20px 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.nav .nav-menus .nav-more {
  width: 94px;
  height: 83px;
  padding: 20px 20px 20px 17px;
  box-sizing: border-box;
  cursor: pointer;
}
.menus-container {
  z-index: 999;
  position: relative;
  top: -106px;
}
#menusMask {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
}
#menus {
  /* display: none; */
  position: absolute;
  top: 0;
  right: 0;
  width: 439px;
  height: 1080px;
  background-image: url('../../images/meun_bg.jpg');
  background-size: contain;
  transform: translateX(439px);
  transition: all .3s ease-out;
}
#menus.movein {
  transform: translateX(0px);
}
 /* navMenu */
 /*---------------------*/
 .navMenubox {
  margin-top: 153px;
  margin-left: 20px;
  width: 400px;
  height: 870px;
  overflow-x: hidden;
  overflow-y: auto;
  /* position: relative; */
}
.navMenubox .logo {
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 127px;
  width: 205px;
  height: 92px;
}
.navMenu{
  padding-left: 0;
}
.navMenu>li {
  display: block;
  margin: 10px 0;
  padding: 0;
  border: 0px;
}

.navMenu>li>a {
  display: block;
  overflow: hidden;
  
  padding-right: 20px;
  line-height: 60px;
  border-radius: 60px;
  color: #ffffff;
  transition: all .3s;
  position: relative;
  text-decoration: none;
  font-size: 24px;

}
.navMenu>li>a>span:nth-of-type(1){
  padding-left: 50px;
}

.navMenu>li:nth-of-type(1)>a {
  border-top: 1px solid transparent;
}

.navMenu>li:last-child>a {
  border-bottom: 1px solid transparent;
}

.navMenu li a .arrow:before {
  display: block;
  float: right;
  margin-top: 1px;
  margin-right: 15px;
  display: inline;
  font-size: 30px;
  font-family: "FontAwesome";
  height: auto;
  content: "\f105";
  font-weight: 300;
  text-shadow: none;
}

.navMenu li a .arrow.open:before {
  float: right;
  margin-top: 1px;
  margin-right: 15px;
  display: inline;
  font-family: "FontAwesome";
  height: auto;
  font-size: 30px;
  content: "\f107";
  font-weight: 300;
  text-shadow: none;
}

.navMenu>li>a.active,
.navMenu>li>a:hover {
  color: #D59759;
  background: #12181b;
}

.navMenu>li>ul.sub-menu,
.navMenu>li>ul.sub-menu>li>ul.sub-menu {
  display: none;
  list-style: none;
  clear: both;
  margin: 8px 0px 0px 0px;
  padding: 15px 0;
  background: #253934;
  border-radius: 15px;
}

.navMenu>li>ul.sub-menu li {
  background: url(../images/tree2.png) no-repeat left;
  margin: 0px;
  padding: 0px;
  line-height: 55px;
  height: 55px;
}
.navMenu>li>ul.sub-menu li:first-child{
  background: url(../images/tree0.png) no-repeat left;
}
.navMenu>li>ul.sub-menu li:last-child{
  background: url(../images/tree3.png) no-repeat left;
}

.navMenu>li>ul.sub-menu li>a {
  display: block;
  font-size: 16px;
  /* padding-left: 20px; */
  color: #ABB1B7;
  clear: both;
}
.navMenu>li>ul.sub-menu li>a span{
  padding-left: 80px;
}

.navMenu>li>ul.sub-menu li>a.active,
.navMenu>li>ul.sub-menu li>a:hover,
.navMenu>li>ul.sub-menu>li.active>a {
  color: #D59759;
}
/*---------------------*/