@font-face {
  font-family: 'TTFirsNeue-Light';
  src: url('../fonts/TTFirsNeue-Light.ttf');
}

@font-face {
  font-family: 'TTFirsNeue-Medium';
  src: url('../fonts/TTFirsNeue-Medium.ttf');
}

@font-face {
  font-family: 'TTFirsNeue-Regular';
  src: url('../fonts/TTFirsNeue-Regular.ttf');
}

@font-face {
  font-family: 'TTFirsNeue-Thin';
  src: url('../fonts/TTFirsNeue-Thin.ttf');
}

@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik.ttf');
}


body {
  font-family: "TTFirsNeue-Light";
}



@media screen and (min-width:768px) {
  body::-webkit-scrollbar {
    width: 7px;
    height: 10px;
  }

  body::-webkit-scrollbar-thumb {
    border-radius: 15px;
    -webkit-box-shadow: inset 0 0 5px rgba(240, 240, 240, 0.1);
    background: rgba(0, 0, 0, 0.7);
  }

  body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5pxrgba(240, 240, 240, 0.1);
    background: rgba(240, 240, 240, 0.1);
  }
}



.form-control:focus,
.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

img {
  max-width: 100%;
}

.block {
  display: block !important;
  /*height: unset !important;*/
}

.orange {
  color: #FF9900;
}

.cyan {
  color: #69ead0;
}

.purple {
  color: #dfadec;
}

.yellow {
  color: #ede805;
}

.blue1 {
  color: #aec0f5;
}

.reds {
  color: #eb3838;
}

.cyan1 {
  color: #f7e3b2;
}


/*顶部*/
.headBox {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  z-index: 999;
  background-color: #383838;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -ms-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.headBoxFixed {
  background-color: #383838 !important;
  -webkit-box-shadow: 0 3px 10px -1px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 3px 10px -1px rgba(0, 0, 0, .2);
  box-shadow: 0 3px 10px -1px rgb(0 0 0 / 20%);
}


.footlogo  .logo_container {

}

.logo_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /*height: 100%;*/
  overflow: hidden;
  max-width: 320px;
}

.logo_container a {
  flex: none;
  height: 100%;
}

.logo_container a:first-child {
  /*margin-right: 4%;*/
  width: 24%;
}

.logo_container a:nth-child(2) {
  margin-left: 4%;
  width: 68%;
}

.logo_container a img {
  /* width: 100%;
  height: fit-content; */
  height: 100%;
}

a {
  cursor: pointer;
}




.headBox>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
}

.headBox .logo {
  text-align: center;
  margin: 10px 0;
  max-width: 308px;
}

.headBox .logo img {
  max-width: 100%;
}

.headBox .menu {
  width: calc(100% - 300px);
}

.headBox .menu ul.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 2px 0;
}

.homepage .headBox .menu ul.nav>li {
  padding: 45px 0;
}

.headBox .menu ul.nav>li {
  margin-left: 10px;
  position: unset;
  padding: 25px 0;
}




.headBox .menu ul.nav>li a {
  position: relative;
  font-size: 18px;
  color: #fff;
  font-family: "Aeonik";
}

.headBox .menu ul.nav>li a i {
  font-size: 16px;
}

.headBox .menu ul.nav>li.active>a {
  color: #EAE646;
  background-color: unset;
}

.headBox .menu ul.nav>li:hover a {
  color: #EAE646;
  background-color: unset;
}

.homepage .headmenudiv {
  top: 135px;
}

.headmenudiv {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 0.8s ease 0s;
  -moz-transition: all 0.8s ease 0s;
  -ms-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  height: 0;
  overflow: hidden;
}

.headmenudiv ul li {
  background-color: #d4d4d4;
  border-bottom: 1.5px solid #9e9e9e;
  overflow: hidden;
}

.headmenudiv ul li .container {
  display: flex;
  justify-content: space-between;
  min-height: 150px;
  padding: 30px 0;
}

.headmenudiv ul li .lileft {
  width: 40%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.headmenudiv ul li .lileft nav {
  padding-bottom: 10px;
  font-size: 24px;
  color: #000;
}

.headmenudiv ul li .lileft p {
  font-size: 18px;
  margin-left: 5%;
  line-height: 1.4px;
  margin: 12px 0 12px 5%;
  color: #444444;
}

.headmenudiv ul li .liright {
  width: 50%;
}

.headmenudiv ul li .liright img {
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 57%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  max-width: 1050px;
}

.headmenudiv ul li .lileft:before {
  opacity: 1;
  content: ' ';
  position: absolute;
  left: calc(43% - 10px);
  height: 100%;
  width: 150px;
  z-index: 999 !important;
  background: linear-gradient(90deg, rgba(212, 212, 212, 1), rgba(212, 212, 212, 1), rgba(212, 212, 212, 0.4), rgba(212, 212, 212, 0));
}


.headmenudiv ul li:hover {
  background-color: #fff;
}

.headmenudiv ul li:hover .lileft:before {
  opacity: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}


.headmenudiv>ul>li:hover .liright img {
  opacity: 1;
}

.headmenudiv ul li a {
  color: #222222;
}



/*************************************************************************************/


.menu-bg {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, .4);
  display: none;
  top: 0;
}


.menu-box {
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  z-index: 100000000001;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  overflow-y: auto;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  top: 0;
  transform: translateX(100%);
  color: #fff;
  right: 0;
}

.menu-box .row {
  margin-left: 0;
  margin-right: 0;
}

.menu-box .row .items {
  margin: 30px 0 30px 15px;
}

.menu-box .row .items h3 {
  color: #323033;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: block;
  line-height: 21px;
  font-size: 21px;
  color: #fff;
  font-weight: bold;
}



.menu-box .row .items h3 a {
  color: #fff;
}

.menu-box .row .items ul {
  display: none;
}

.menu-box.open {
  transform: translateX(0);
}

.menu-box .logo img {
  display: block;
  margin: 50px 0;
  max-width: 100%;
}

.open .close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}


.menulist {}

.menulist .divclose {
  width: 100%;
  background: #f5f5f5;
  height: 50px;
  border-bottom: solid 1px #b5b1b1 !important;
}

.menulist .divclose .close {
  padding: 11px;
  opacity: 0.8 !important;
}

.menulist .divclose .close img {
  width: 25px;
}

.menulist ul li {
  border-bottom: 0;
}

.menulist .yiji li {
  padding: 0;
}

.menulist ul li a {
  color: #000000;
  font-size: 16px;
  padding: 20px 5%;
  border-bottom: solid 1px #b5b1b1 !important;
  display: block;
  font-weight: bold;
}

.menulist ul .inactive {
  background: url(../images/off.png) no-repeat 95% 28px;
}

.menulist ul .inactives {
  background: url(../images/on.png) no-repeat 95% 28px;
}

.menulist ul li ul {
  display: none;
}

.menulist ul li .erji li {
  padding: 0;
}

.menulist ul li .erji li:last-child {
  border: none !important;
}

.menulist ul li .erji li nav {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.menulist ul li .erji li p.ppp {
  font-size: 13px;
  margin-bottom: 7px;
  padding-left: 15px;
  color: #666;
}

.menulist ul li .erji li a {
  color: #333333;
  font-size: 15px;
  padding: 13px 8%;
}

.menulist ul li .erji .inactive {
  background: url(../images/off.png) no-repeat 90% 28px;
}

.menulist ul li .erji .inactives {
  background: url(../images/on.png) no-repeat 90% 28px;
}

.menulist ul li ul li ul {
  display: none;
}

.menulist ul li .erji li .sanji li:last-child {
  border-bottom: solid 1px #b5b1b1 !important;
}

.menulist ul li .erji li .sanji li a {
  color: #666666;
  font-size: 14px;
  padding: 11px 15%;
}

.menulist .centbg {
  width: 100%;
  height: 80px;
  background: #f5f5f5;
  border-bottom: solid 1px #b5b1b1 !important;
}

.menulist ul li .erji li .sanji li .siji li a {
  color: #888888;
  font-size: 14px;
  padding: 11px 11%;
}

.menulist ul li .erji li .sanji li .siji li .wuji li a {
  color: #999999;
  font-size: 14px;
  padding: 11px 14%;
}

.headmenutext ul li {
  padding: 0;
}

.headmenutext ul li i {
  float: left !important;
  margin-right: 15px;
  position: relative;
  top: 3px;
}

.headmenutext .langs li a {
  padding: 15px 13% !important;
  color: #666666;
}

.headdowntext p {
  height: 60px;
  line-height: 60px !important;
  background: #f5f5f5;
  border-bottom: solid 1px #b5b1b1 !important;
}

.headdowntext nav a {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 30px;
}

.headdowntext p,
.headdowntext nav a {
  color: #333333;
  text-align: center;
}





.bannersection {
  position: relative;
  padding-top: 0;
}

.bannersection img {
  width: 100%;
}

.homepage .breadcrumb {
  margin-top: 135px;
}

.breadcrumb {
  margin-top: 100px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #C7DB21;
  position: relative;
}

.breadcrumb .left {
  width: 45%;
  padding: 0 4% 0 8%;
}

.breadcrumb .left .addressdiv h3 a{
  color: #000;
}

.breadcrumb .bannbg {
  position: absolute;
  right: 0;
  top: 0;
  left: calc(45% - 1px);
  height: 100%;
}

.breadcrumb .left h3 {
  margin-top: 0;
  color: #000;
}

.breadcrumb .right {
  width: 55%;
}

.breadcrumb .address {
  display: flex;
  justify-content: flex-start;
}

.breadcrumb .address li {
  padding-right: 25px;
  position: relative;
}

.breadcrumb .address li a {
  color: #333333;
  font-size: 16px;
}

.breadcrumb .address li a:before {
  content: ">";
  position: absolute;
  color: #333333;
  right: 0;
  margin-right: 6px;
}

.breadcrumb .address li:last-child a:before {
  display: none;
}

.breadcrumb .right img {
  min-height: 150px;
  object-fit: cover;
}

.breadcrumb .address li:last-child {
  padding-right: 0;
}



/*底部*/

footer {
  background: #222222;
  position: relative;
  z-index: 99;
}

footer .container {}

footer .container a.telephone {
  color: #fff;
  font-size: 18px;
   padding-left: 30px;
  margin-top: 10px;
}

footer .container .footlogo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* @media (max-width:500px) {
  footer .container .footlogo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  footer .container .footlogo .logo_container {
    max-width: 70% !important;
  }

  footer .container .footlogo .logo_container img {
    width: fit-content !important;
    height: fit-content !important;
  }
} */

/* footer .container .footlogo img {
  max-width: 320px;
} */

.copy {
  width: 100%;
  height: auto;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy p {
  font-size: 16px;
  margin: 0;
  color: #888;
}

.copy ul {
  display: flex;
  justify-content: flex-end;
}

.copy ul li a {
  color: #888;
  margin-left: 15px;
  font-size: 16px;
}


.toTop-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  background: #EAE646;
  cursor: pointer;
  position: fixed;
  right: 3rem;
  bottom: 10rem;
  display: none;
  z-index: 999;
  line-height: 28px;
  background-size: cover;
  text-align: center;
}


.toTop-arrow .fa {
  color: #fff;
  font-size: 30px;
}

.toTop-arrow:focus {
  outline: none;
}

.footer .inner .right .items h3 i {
  display: none;
}


.page {
  width: 100%;
}

.page ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}

.page ul li a {
  margin: 0 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}

.page ul li a i {
  font-size: 20px;
}

.page ul li a.active {
  background-color: #20F8FD;
  color: #000;
}

.page ul li a:hover {
  background-color: #20F8FD;
  color: #000;
}






/****************************************************不同尺寸样式****************************************************/
/*尺寸*/
@media screen and (max-width:1780px) {
  .headBox .logo {
    text-align: center;
    margin: 10px 0;
    max-width: 250px;
  }

  .headBox .menu {
    width: calc(100% - 270px);
  }

  .headBox>.container{
    width: 96%;
  }

}

@media screen and (max-width:1680px) {
  .headBox .logo {
    text-align: center;
    margin: 10px 0;
    max-width: 200px;
  }

  .headBox .menu {
    width: calc(100% - 220px);
  }

  .headBox .menu ul.nav>li>a {
    padding: 10px;
    font-size: 17px;
  }

  .headBox .menu ul.nav>li a i {
    font-size: 14px;
  }

  .headBox .menu ul.nav>li {
    margin-left: 10px;
    position: unset;
    padding: 30px 0;
  }

  .breadcrumb {
    margin-top: 105px;
  }

  .headmenudiv {
    top: 105px;
  }

  .headmenudiv ul li .lileft nav {
    font-size: 20px;
  }

  .headmenudiv ul li .container {
    display: flex;
    justify-content: space-between;
    min-height: 110px;
    padding: 20px 0;
  }

  .headmenudiv ul li .lileft p {
    font-size: 16px;
  }
}



@media screen and (max-width:1520px) {
  .headBox .logo {
    text-align: center;
    margin: 10px 0;
    max-width: 180px;
  }

  .headBox .menu {
    width: calc(100% - 200px);
  }


  .headBox .menu ul.nav>li>a {
    padding: 10px;
    font-size: 16px;
  }

  .headBox .menu ul.nav>li a i {
    font-size: 13px;
  }

  .headBox .menu ul.nav>li {
    margin-left: 0;
    position: unset;
    padding: 30px 0;
  }

}


@media screen and (max-width:1360px) {

  .headBox .menu ul.nav>li>a {
      padding: 10px 8px;
      font-size: 15px;
  }

}


@media screen and (max-width:1280px) {


.headmenudiv ul li .lileft:before {
  height: 100%;
  width: 100px;
  z-index: 999 !important;
}


  .headBox .logo {
    text-align: center;
    margin: 10px 0;
    max-width: 160px;
  }

  .headBox .menu {
    width: calc(100% - 175px);
  }



  .headBox .menu ul.nav>li a i {
    font-size: 12px;
  }

  .headBox .menu ul.nav>li {
    margin-left: 0;
    position: unset;
    padding: 30px 0;
  }



}


@media screen and (max-width:1220px) {

  .headBox>.container {
      width: 98%;
  }

  .headBox .menu ul.nav>li>a {
      padding: 10px 7px;
      font-size: 14px;
  }


}



