.sitetop {
  background: var(--active-color);
  height: 48px;
}

.sitetop .wp {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sitetop-left,
.sitetop-right {
  display: flex;
  align-items: center;
}

.sitetop-left p {
  font-size: 18px;
  color: #fff;
}

.sitetop-right .share {
  font-size: 0;
}

.sitetop-right .share a {
  height: 28px;
  line-height: 28px;
  padding: 0 8px;
  display: inline-block;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sitetop-right .share a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sitetop-right .share a i {
  font-size: 16px;
  color: #fff;
}

.sitetop-right .share a:hover {
  background: #475257;
}


/*---mo-nav---*/
.mo-leftmenu {
  background: #F5F5F5;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-x: hidden;
  box-sizing: content-box;
  width: 70%;
  max-width: 350px;
  -webkit-overflow-scrolling: touch;
  z-index: 300 !important;
  transition: all .4s cubic-bezier(0.7, 0, 0.2, 1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  transform: translateX(-100%)
}

.mo-leftmenu .tit {
  height: 50px;
  background: var(--active-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mo-leftmenu .tit h6 {
  color: #fff;
  padding: 0 0 0 20px;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
}

.mo-leftmenu .tit span {
  display: block;
  cursor: pointer;
  width: 50px;
  text-align: center;
}

.mo-leftmenu .tit span i {
  color: #fff;
  font-size: 16px;
}

.mo-leftmenu>ul {}

.mo-leftmenu>ul>li {
  line-height: 50px;
  font-size: 15px;
  border-top: 2px solid #e5e5e5;
  position: relative;
}

.mo-leftmenu>ul>li>a {
  padding: 0 0 0 20px;
}

.mo-leftmenu>ul>li>i {
  position: absolute;
  color: #333;
  font-size: 12px;
  top: 5px;
  right: 0;
  z-index: 1;
  width: 50px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.mo-leftmenu>ul>li.active {}

.mo-leftmenu ul li a {
  color: #333;
  display: block;
}

.mo-leftmenu ul li a:hover {
  text-decoration: none;
}

.mo-leftmenu ul li ul {
  display: none;
  padding-bottom: 10px;
}

.mo-leftmenu ul li ul li {
  line-height: 35px;
}

.mo-leftmenu ul li ul li a {
  background: url("images/d.png") no-repeat 25px center;
  padding: 0 0 0 40px;
}

.menu-transitioning {
  transform: translateX(0)
}

/*---header---*/

.header {
  background: #fff;
  height: 100px;
}

.header .wp {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}

.header-right ul {
  display: flex;
}

.header-right ul li {
  display: flex;
  align-items: center;
  color: #475257;
  max-width: 270px;
}

.header-right ul li+li {
  margin-left: 40px;
}

.header-right ul li i {
  font-size: 28px;
}

.header-right ul li .t {
  margin-left: 15px;
  font-size: 15px;
}

.header-right ul li .t strong {
  font-weight: 600;
}


/*---nav---*/

.navbox {
  height: 60px;
  position: relative;
}

.nav-container {
  height: 60px;
  background: var(--active-color);
}

.nav-container>.wp {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbox .logo {
  visibility: hidden;
}

.head-nav {
  display: flex;
  align-items: center;
}

.head-nav>li {
  position: relative;
}

.head-nav>li:nth-child(3) {
  position: static;
}

.head-nav>li+li {
  margin-left: 40px;
}

.head-nav>li>a {
  display: block;
  font-size: 15px;
  color: #fff;
  padding: 20px 0;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

.head-nav>li>a>i {
  font-size: 13px;
}

.head-nav>li>a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #475257;
  height: 4px;
  transform: scale(0, 1);
  opacity: 0;
  transition: all .3s ease-out;
}

.head-nav>li ul {
  position: absolute;
  width: 220px;
  height: auto;
  left: -40px;
  top: 100%;
  z-index: 30;
  padding: 10px 7px;
  border-top: 5px solid #475257;
  background: #fff;
  transition: all .4s ease 0s;
  transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
  opacity: 0;
  visibility: hidden;
}

.head-nav>li>ul li {
  border-bottom: 1px solid #EDEDED;
  position: relative;
}

.head-nav>li>ul li:last-child {
  border: none;
}

.head-nav>li>ul li>a {
  display: block;
  border-radius: 4px;
  padding: 9px 10px;
  color: #333;
  font-size: 15px;
  line-height: 21px;
  text-transform: capitalize;
}

.head-nav>li>ul>li>a {
  padding-right: 20px;
}

.head-nav>li>ul li>a i {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 11px;
}

.head-nav>li>ul li>a:hover {
  background: var(--active-color);
  color: #fff;
}

.head-nav>li>ul li ul {
  left: 230px;
  top: 0;
}

.head-nav>li:hover>a,
.nav>ul>li.active>a {}

.head-nav>li:hover>a>i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.head-nav>li:hover>a::after,
.nav>li.active>a::after {
  opacity: 1;
  transform: scale(1, 1);
}

.head-nav li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}



.head-nav li>.dropbox {
  position: absolute;
  width: 100%;
  left: 0;
  top: 60px;
  z-index: 1000;
  transition: all .4s ease 0s;
  transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
  opacity: 0;
  visibility: hidden;
}

.head-nav li>.dropbox .wp {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-top: 5px solid #002e5b;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 0 0 5px rgba(1, 1, 1, 0.14);
}

.head-nav li>.dropbox dl {
  width: 20%;
  padding: 0 20px;
}

.head-nav li>.dropbox dl dt {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.head-nav li>.dropbox dl dt a {
  color: #000;
}

.head-nav li>.dropbox dl dt a:hover {
  color: #0093DD;
}

.head-nav li>.dropbox dl dd {
  position: relative;
}

.head-nav li>.dropbox dl dd+dd {
  margin-top: 5px;
}

.head-nav li>.dropbox dl dd a {
  display: block;
  color: #666;
  font-size: 15px;
  line-height: 24px;
  text-transform: capitalize;
}

.head-nav li>.dropbox dl dd a:hover {
  color: #0093DD;
}

.head-nav li:hover>.dropbox {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}


.navbar-right {
  display: flex;
  align-items: center;
}

.bobo-search {
  margin-right: 15px
}

.bobo-search span {
  height: 25px;
  cursor: pointer;
  font-weight: 400;
  text-align: center;
  display: block
}

.bobo-search span i {
  color: #fff;
  font-size: 24px;
  line-height: 25px;
  display: inline-block;
  -webkit-text-stroke-width: 0.1px;
}

.bobo-search-box {
  display: none;
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 0;
  right: 0;
  top: 188px;
  background: rgba(0, 0, 0, 0.67);
  padding: 25px 0
}

.bobo-search-box .close {
  position: absolute;
  right: 30px;
  top: calc(50% - 11px);
  line-height: 22px;
  height: 22px
}

.bobo-search-box .close i {
  font-size: 21px;
  color: #fff
}

.bobo-search-box .serchbox {
  width: 700px;
  margin: 0 auto;
  position: relative
}

.bobo-search-box .serchbox .submit_text {
  background: #fff;
  width: 100%;
  height: 47px;
  line-height: 47px;
  float: left;
  padding: 0 90px 0 15px;
  font-size: 15px;
  box-sizing: border-box
}

.bobo-search-box .serchbox .submit_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 47px;
  line-height: 47px;
  background: var(--active-color);
  text-align: center;
  display: block;
  cursor: pointer;
  box-sizing: border-box
}

.bobo-search-box .serchbox .submit_btn i {
  font-size: 25px;
  color: #fff
}


.header-lang {
  position: relative;
  z-index: 30;
}

.header-lang .box {
  height: 34px;
  padding: 0 7px;
  border: 1px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.header-lang .box img {
  height: 16px;
}

.header-lang .box em {
  margin: 0 7px;
  line-height: 16px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.header-lang .box i {
  line-height: 16px;
  font-size: 14px;
  color: #fff;
}

.header-lang .lang-box {
  width: 200px;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 42px;
  z-index: 200;
  background: #fff;
  transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease 0s;
  box-shadow: 0 0 10px rgba(63, 62, 62, 0.2);
}

.header-lang .lang-box::before {
  content: '';
  position: absolute;
  right: 37px;
  top: -8px;
  overflow: hidden;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  display: block;
}

.header-lang ul {
  max-height: 160px;
  overflow-y: scroll;
  padding: 5px 10px;
  border: 1px solid #e5e5e5;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-lang ul li {
  line-height: 20px;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
  width: 50%;
}

.header-lang ul li:last-child {
  border: none;
}

.header-lang ul li a {
  color: #333;
  font-size: 14px;
  display: block;
}

.header-lang ul li a:hover {
  color: var(--active-color);
}

.header-lang ul li img {
  vertical-align: middle;
  margin-right: 7px;
}

.header-lang:hover .lang-box {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.navbar-right>span {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 5px;
  text-align: center;
  cursor: pointer;
}

.navbar-right>span i {
  color: #fff;
  font-size: 24px;
}

.nav-fix {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 200;
}

.nav-fix .logo {
  visibility: visible;
}



@media screen and (max-width:1281px) {
  .header .logo img {
    height: 60px;
  }

  .head-nav>li+li {
    margin-left: 20px;
  }

  .header-right ul li+li {
    margin-left: 20px;
  }

}

@media screen and (max-width:1171px) {
  .header-right ul li:last-child {
    display: none;
  }
}

@media screen and (max-width:992px) {

  .sitetop,
  .header,
  .head-nav {
    display: none;
  }

  .navbox .logo {
    visibility: visible;
  }

  .navbar-right>span {
    display: block;
  }

  .header-lang .box {
    height: 30px;
    padding: 0 5px;
  }

  .header-lang .lang-box {
    top: 38px;
  }
  
   .bobo-search-box {
    position: fixed;
  	 top: 60px;
    padding: 15px 10px;
    box-sizing: border-box;
  }
  
   .bobo-search-box .serchbox {
    width: 100%;
  }
  
  .bobo-search-box .serchbox .submit_text {
    height: 40px;
    line-height: 40px;
    padding: 0 90px 0 12px;
  }
  
   .bobo-search-box .serchbox .submit_btn {
    width: 60px;
    height: 40px;
    line-height: 40px;
  }
  
   .bobo-search-box .close {
    display: none;
  }
  


  

}

@media screen and (max-width:768px) {
  .navbox .logo img {
    height: 35px;
  }
}

@media screen and (max-width:480px) {
  .navbox .logo img {
    height: 30px;
  }
}

.scrollToTop {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  line-height: 26px;
  font-size: 25px;
  color: #fff;
  position: fixed;
  z-index: 1000;
  bottom: 16px;
  right: 40px;
  display: none;
  background: var(--active-color);
      display: none !important;
}

.scrollToTop:hover,
.scrollToTop:focus {
  background: var(--active-color);
  color: #fff;
}




.mo-leftmenu>ul>li>i {
  display: none
}


.mo-leftmenu>ul>li:nth-child(2)>i {
  display: block !important;
}