@charset "UTF-8";
/*header——开始*/
.header {
  width: 100%;
  padding: 0 10px;
  height: auto;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 12;
  background-color: white;
  opacity: 0.9;
}

.header > .box {
  color: #AB9677;
  width: 1200px;
  max-width: var(--maxWidth);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  position: relative;
  z-index: 1000;
}

.header > .box #logo {
  width: 400px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  
}

.header > .box #logo img {
  display: block;
  width: 300px;
  height: auto; 
  
  margin-top: 20px;
}

.header > .box .nav_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header > .box .nav_main #menu-main-menu {
  display: flex;
  width: 900px;
}

.header > .box .nav_main #menu-main-menu > li {
  padding: 30px 0;
  /* transition: 0.6s all; */
  position: relative;
  margin: 0 18px;
}
.header > .box .nav_main #menu-main-menu > li:hover > a {
  /* background-color: var(--dataColor);*/
  color: var(--dataColor); 
  /* transition: 0.5s; */
  border-bottom: 3px solid var(--dataColor);
}

.header > .box .nav_main #menu-main-menu > li:hover .sub-menu {
  visibility: visible;
  max-height: 999px;
  transition: 1s;
}

.header > .box .nav_main #menu-main-menu > li:hover .sub-menu li.menu-children {
  opacity: 1;
  /* transition: 0.5s; */
}

.header > .box .nav_main #menu-main-menu > li > a {
  /* transition: 0.5s; */
  font-size: 15px;
  padding: 5px 4px;
  padding-bottom: 10px;
  /* border-radius: 20px; */
  color: #626262;
  /*font-weight: bold;*/
  /*text-transform: uppercase;*/
  line-height: 38px;
  position: relative;
  font-family: "montserratB";
  position: relative;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu {
  position: absolute;
  background: #fff;
  padding: 10px 0;
  top: 100%;
  left: 0;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 235px;
  z-index: 99;
  max-height: 0;
  visibility: hidden;
  opacity: 1;
  transition: 0.5s;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children {
  padding: 0 8px;
  position: relative;
  opacity: 0;
  transform: 0.5s;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children:hover > a {
  background: var(--dataColor);
  color: #F60;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children:hover .sub-menu2 {
  visibility: visible;
  max-height: 999px;
  transition: 0.5s;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children > a {
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: normal;
  padding: 10px 4px;
  position: relative;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children .sub-menu2 {
  position: absolute;
  background: #fff;
  padding: 10px 0;
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 235px;
  z-index: 99;
  transition: 0.5s;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children .sub-menu2 > li {
  padding: 0 8px;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children .sub-menu2 > li:hover > a {
  background: var(--dataColor);
  color: #fff;
}

.header > .box .nav_main #menu-main-menu > li > .sub-menu li.menu-children .sub-menu2 > li > a {
  color: #333;
  display: block;
  font-size: 14px;
  line-height: normal;
  padding: 10px 4px;
  position: relative;
}

.header > .box .nav_main #menu-main-menu .active > a {
  color: var(--dataColor);
  transition: 0.5s;
  font-weight: bold;
  border-bottom: 3px solid var(--dataColor);

  /* background-color: var(--dataColor); */
}

.header > .box .nav_main .search_section {
  transition: all 0.5s;
  margin-left: 10px;
  display: none;
}

.header > .box .nav_main .search_section:hover .search_input {
  height: 160px;
  transition: 0.5s;
  box-sizing: border-box;
}

.header > .box .nav_main .search_section .search {
  text-align: center;
  background: var(--dataColor) url("/template/default/pc/static/images/icon.png") no-repeat;
  display: inline-block;
  border-radius: 0;
  background-position: -343px -446px;
  color: #fff;
  width: 46px;
  height: 45px;
  border-radius: 50%;
}

.header > .box .nav_main .search_section .mob_search {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0;
  height: 0;
}

.header > .box .nav_main .search_section .search_input {
  height: 0;
  transition: 0.5s;
  position: absolute;
  left: 0px;
  top: 79px;
  width: 100%;
  background: #fff;
  overflow: hidden;
  transition: 0.3s all;
  z-index: 999999999;
  text-align: left;
  padding: 0px 20px;
  border-radius: 5px;
  text-align: center;
  box-sizing: border-box;
}

.header > .box .nav_main .search_section .search_input .close-search {
  display: none;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 36px;
  height: 36px;
  text-align: center;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.header > .box .nav_main .search_section .search_input .close-search i {
  line-height: 36px;
  display: inline-block;
  color: #333;
  font-size: 18px;
}

.header > .box .nav_main .search_section .search_input em {
  font-size: 20px;
  color: #333;
  margin: 20px 0;
  text-transform: capitalize;
  font-family: "montserratB";
  display: block;
  font-style: normal;
}

.header > .box .nav_main .search_section .search_input .search_main {
  position: relative;
  max-width: 800px;
  margin: 5px auto 0;
}

.header > .box .nav_main .search_section .search_input .search_main .form-control {
  height: 50px;
  color: #999;
  float: left;
  box-sizing: border-box;
  line-height: 50px;
  font-size: 16px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  background: none;
  padding-left: 12px;
  padding-right: 55px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  float: none;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
}

.header > .box .nav_main .search_section .search_input .search_main .search_btn {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: var(--dataColor) url("/template/default/pc/static/images/icon.png") no-repeat;
  background-position: -346px -450px;
  border-radius: 50%;
}

.header > .box .nav_main #menu-mobile {
  width: 40px;
  height: 40px;
  background: var(--backColor);
  font-size: 20px;
  /* color: #fff; */
  margin-left: 10px;
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: center;
}
/* .header .box .nav_main .language:hover .menu-dropdown{
  max-height: 999px !important;
  transition: 0.5s;
}
.header .box .nav_main .language .menu .menu-dropdown li a img{
  width: 40px;
  height: 30px;
} */
.header-top .box .top_r{
  position: fixed;
  top: 30px;
  right: 60px;
  width: 100px;
  z-index: 999;
}
.header-top .box .top_r .language {
  margin-left: 20px;
}

.header-top .box .top_r .language:hover .menu-dropdown {
  max-height: 999px !important;
  transition: 0.5s;
}

.header-top .box .top_r .language:hover i {
  color: var(--dataColor);
  transition: 0.4s;
}

.header-top .box .top_r .language .menu {
  position: relative;
  display: block;
  cursor: pointer;
  text-align: center;
  border-bottom: 2px solid var(--dataColor);
  background: #ededed;
  padding: 0px 27px;
}

.header-top .box .top_r .language .menu .menu-title {
  display: inline-block;
  text-align: center;
  color: #898786;
  text-transform: capitalize;
  font-size: 14px;
  transition: 0.5s background-color;
  position: relative;
  z-index: 5;
  transition: 0.6s all;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-top .box .top_r .language .menu .menu-title p {
  display: block;
  margin: 0;
  color: #808080;
  font-size: 13px;
  line-height: 35px;
  text-align: center;
  text-transform: capitalize;
  font-style: initial;
}

.header-top .box .top_r .language .menu .menu-title i {
  width: 10px;
  margin-left: 6px;
  transition: 0.4s;
}

.header-top .box .top_r .language .menu .menu-dropdown {
  width: 100%;
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  transition: 0.5s padding, 0.5s background;
  right: 0;
  width: 260px;
  text-align: left;
  background: #fff;
  box-shadow: 0px 0px 10px black;
  transition: 0.5s;
}

.header-top .box .top_r .language .menu .menu-dropdown li {
  border-bottom: 1px solid #ECECEC;
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 5px 10px;
  transition: 0.5s;
}

.header-top .box .top_r .language .menu .menu-dropdown li:hover {
  background-color: #f7f7f7;
  transition: 0.5s;
}

.header-top .box .top_r .language .menu .menu-dropdown li a {
  display: flex;
  padding: 8px 14px;
  align-items: center;
  flex-flow: row-reverse;
  justify-content: flex-start;
  transition: all .35s ease-in-out;
  text-decoration: none;
  color: #333;
}

.header-top .box .top_r .language .menu .menu-dropdown li a img {
  width: 20px;
  margin: 0px 4px;
}
/* .header-top {
  background-color:var(--dataColor);
}

.header-top .box {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  align-items: center;
} */

.header-top .box .top_l {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  display: none;
}

.header-top .box .top_l .tel {
  display: inline-block;
  color:#ffffff;
}

.header-top .box .top_l .tel a {
  color: #ffffff;
  font-size: 14px;
}

.header-top .box .top_l .email {
  display: inline-block;
  margin-left: 34px;
  color: #ffffff;
}

.header-top .box .top_l .email a {
  color: #ffffff;
  font-size: 14px;
}

.header-top .box .top_r {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top .box .top_r .top_sns a {
  display: inline-block;
  width: 25px;
}



@media only screen and (max-width: 992px) {
  .mob_search {
    position: absolute;
    right: 46px;
    top: 10px;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: #223570 url("/template/default/pc/static/images/icon.png") no-repeat;
    background-position: -345px -448px;
    border-left: 1px solid #eee;
    border-radius: 5px;
  }
}

@media screen and (max-width: 1024px) {
  .header{
    width: 100%;
    padding: 0 10px;
    height: auto;
    box-sizing: border-box;
    background-color: white;
    opacity: 0.9;
    position: relative;
  }
  .header >.box{
    position: relative;
  }
  .header >.box .nav_main{
    position: absolute;
    right: 0;
  }
  .header > .box #logo img{width: 40vw; margin-top: 1px;}
  .header > .box .nav_main .search_section .attr-nav{margin-top: 4px;}
  .header-top {
    display: none;
  }
  #menu-main-menu {
    display: none !important;
  }
  #menu-mobile {
    display: flex !important;
  }
  .search_input {
    top: 0 !important;
  }
  .header > .box {
      justify-content: space-between;
      position: static;
      padding: 10px;
  }
  .header > .box #logo{
      position: static;
      width: 100px;
  }
}

/*header——结束*/
/*侧滑 开始*/
.nav {
  display: none;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  width: 100%;
  height: 100vh;
  transition: 0.3s;
}

.nav .icon-xiangyou1 {
  float: right;
  margin-right: 10px;
  color: #fff;
  font-family: "宋体";
  font-weight: bold;
  transition: 0.3s;
}

.nav .cur {
  transform: rotate(90deg);
  transition: 0.3s;
}

.nav #collapase-nav {
  margin-top: 9vw;
  background: rgb(54, 155, 56);
  /* display: block; */
  /* height: 100%; */
  /* width: 60%; */
  overflow-y: auto;
  /* transform: translateY(-100%); */
  transition: 0.3s;
}

.nav #collapase-nav a {
  color: #fff;
  margin-left: 10px;
  font-size: 2.8vw;
}
.collapase-nav-ul{
  display: flex;
  flex-wrap: wrap;
}
.nav .am-panel {
  width: 48vw;
  border: 1px solid white;
  margin-left: 1vw;
  margin-top: 1vw;
  line-height: 3em;
  text-align: center;
  height: 10vw;
  line-height: 10vw;
  /* border-bottom: 1px solid #444; */
}

.nav .am-icon-angle-right {
  float: right;
  margin-right: 10px;
  color: #fff;
  font-family: "宋体";
  font-weight: bold;
}

.nav .am-collapse {
  display: none;
  transition: 0.3s;
}

.nav .top {
  writing-mode: tb;
  margin-top: 17px;
  margin-right: -7px;
}

.nav .mob_language {
  margin: 10px;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  background-color: #222;
}

.nav .mob_language .lists {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.nav .mob_language .lists a {
  color: #fff;
  width: 50%;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav .mob_language .lists a img {
  width: 30px;
  margin-right: 5px;
}

/*侧滑 结束*/
