/* 顶部导航 */





.header_right {

  display: flex;

  align-items: center;

}



.header_right a {

  color: #fff;

  text-align: center;

  display: block;

  width: 26px;

  height: 24px;

  line-height: 24px;

  margin-left: 10px;

  border: 1px solid rgba(255, 255, 255, .5);

  border-radius: 5px;

}



.header_right a:hover {

  background: #005FBB;

}



#header.header-scrolled {

  position: fixed;

  top: 0;

  right: 0;

  left: 0;

  z-index: 996;

  height: 70px;

  background: #005FBB;



}



.headDiv {

  width: 100%;

  z-index:997;

  width: 100%;



  box-shadow: none;

  position: fixed;

  top: 0;

  left: 0;

  transition: all 0.3s ease;

}



.headDiv:hover {

  background: #fff;

  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);

}



.headDiv .top_menu {

  height: 90px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 20px;

}



.headDiv .logo {

  height: 90px;

  display: flex;

  align-items: center;

}



.headDiv .logo img {

  height: 70px;

}



.headDiv .logo .logo1 {

  display: block;

}



.headDiv .logo .logo2 {

  display: none;

}



.nav {

  height: auto;

}



.nav>ul {

  display: flex;

  list-style: none;

  width: 100%;

}



.nav li {

  position: relative;

  margin-right: 40px;

}



.nav li.active a {

  color: #e60012;

}
.nav li.active .submenu a {

  color: #fff;

}

.nav ul li a {

  display: flex;

  align-items: center;

  height: 90px;

  text-transform: uppercase;

  padding: 0;

  text-align: center;

  font-size: 16px;

  color: #222;

  font-weight: 500;

  text-decoration: none;

  transition: all 0.3s ease;

  position: relative;

}



.nav ul li a:hover {

  color: #e60012;

}



.nav ul li a:hover i {

  color: #fff;

}



.nav li #line {

  width: 0px;

  height: 2px;

  background-color: #e60012;

  margin: 0 auto;

  position: absolute;

  top: 70px;

  left: 0px;

  right: 0px;

  transition: width 0.3s linear;

}



/* 箭头按钮样式 */

.arrow-btn {

  display: inline-flex;

  margin-left: 8px;



  cursor: pointer;

  transition: transform 0.3s;

  z-index: 2;

}



.arrow-btn i {

  font-size: 12px;

  color: #666;

  transition: transform 0.3s ease;



}



/* 多级菜单通用样式 */

.submenu {

  display: none;

  background-color: #005FBB;

  z-index: 9999;



  position: absolute;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

  min-width: 200px;

  border-radius: 0 0 5px 5px;

  overflow: visible;

  transition: all 0.3s ease;

  opacity: 0;

  transform: translateY(10px);

}



.nav ul li ul li {

  width: 100%;

  display: block;



}



.nav ul li ul li:last-child {

  border-bottom: none;

}



.nav ul li ul li a {

  display: flex;

  align-items: center;



  font-size: 14px;

  color: #fff;

  line-height: 24px;

  padding: 5px 10px;

  margin: 0;

  height: 45px;

  text-align: left;

  /* width: calc(100% - 20px); */

}



.nav ul li ul li a:hover {

  background: #e60012;

  color: #fff;

}



.nav li:hover .arrow-btn i {

  color: #e60012 !important;

}

.nav ul li ul li a { display: flex; justify-content: space-between;}

.nav li:hover ul li a .arrow-btn i {

  color: #fff !important;

}

/* 三级菜单 */

.third-level {

  top: 0;

  left: 100%;



}



/* 四级菜单 */

.fourth-level {

  top: 0;

  left: 100%;

  border-top: 3px solid #005FBB;

}





/* 汉堡菜单按钮 */

.hamburger {

  display: none;

  cursor: pointer;

  background: #fff;

  border-radius: 5px;

  padding: 6px;

  z-index: 10000;



  transition: all 0.3s;

}



.hamburger:hover {

  background: #f1f1f1;

}



.hamburger div {

  width: 25px;

  height: 3px;

  background: #333;

  margin: 4px 0;

  transition: all 0.3s ease;

}



/* 移动端菜单激活状态 */

.toggle .line1 {

  transform: rotate(-45deg) translate(-5px, 6px);

}



.toggle .line2 {

  opacity: 0;

}



.toggle .line3 {

  transform: rotate(45deg) translate(-5px, -6px);

}



/* 桌面端悬停效果  */

@media (min-width: 991px) {



  .nav a:hover,

  .nav li:hover>a {



    color: #e60012 !important;



  }



  .nav li:hover #line,

  .nav li.active #line {

    width: 100%;

  }



  .nav ul li ul li a:hover {

    color: #fff !important;

  }



  .nav li:hover>.submenu {

    display: block;

    opacity: 1;

    transform: translateY(0);

  }



  .nav li .submenu li:hover>.submenu {

    display: block;

    opacity: 1;

    transform: translateX(0);

  }

}



#header.header-scrolled .nav ul li a {

  color: #fff;

}



#header.header-scrolled .nav li.active a {

  color: #fff;



}



#header.header-scrolled .logo2 {

  display: block;

}



#header.header-scrolled .logo1 {

  display: none;

}

#header.header-scrolled.headDiv .logo { height: 70px;}

#header.header-scrolled.headDiv .head_right{ height: 70px;}

#header.header-scrolled.headDiv .logo img{ height: 52px;}

#header.header-scrolled.headDiv .top_menu{height: 70px;}

#header.header-scrolled.headDiv .nav ul li a{  height: 70px;}

#header.header-scrolled.headDiv .nav li #line { top:55px; }

#header.header-scrolled.headDiv .nav ul li ul li a { height: 45px;

}

.searchWrap {

  width: 100%;

  height: 100%;

  padding-top: 20px;

  background: #005FBB;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.2);

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 999;

  -o-box-sizing: border-box;

  -ms-box-sizing: border-box;

  box-sizing: border-box;

  display: none;

}



.searchWrap .searchCont {

  display: flex;

  align-items: stretch;

  justify-content: center;

}



.searchWrap .searchCont input,

.searchWrap .searchCont button {

  border: 0;

}



.searchWrap .search {

  width: 70%;

  padding: 10px 15px;

  box-sizing: border-box;

  background: #f1f1f1;

  color: black;

  min-height: 36px;

}



.searchWrap .search.focusOn+label,

.searchWrap .search:focus+label {

  display: none;

}



.searchWrap .search.focusOn,

.searchWrap .search:focus {

  background: #F3F3F3;

}



.searchWrap .searchBtn {

  padding: 10px;

  background: #e60012;

  color: #fff;

  font-weight: 800;

  outline: none;

  font-family: Arial, 'Microsoft YaHei', SimSun, Sans-serif;

  transition: 0.4s all ease;

  -moz-transition: 0.4s all ease;

  -webkit-transition: 0.4s all ease;

  -o-transition: 0.4s all ease;

  -ms-transition: 0.4s all ease;

}



.searchWrap .searchBtn:hover {

  color: #fff;

}



.searchWrap i {

  position: absolute;

  top: 7px;

  left: 20px;

  color: #3081C4;

  font-size: 16px;

}



.searchWrap i:before {

  content: "\e618";

  font-family: icomoon, Arial, Helvetica, 'Microsoft YaHei', SimSun, Sans-serif;

}



.seaBtn {

  width: 40px;

  height: 30px;

  display: inline-block;

  line-height: 30px;

  text-align: center;

  color: #fff;

  font-size: 17px;

  vertical-align: middle;

  cursor: pointer;

  margin-left: 10px;

  margin-top: 3px;

}



.seaBtn {

  background: url(../images/sousuo1.png) center no-repeat;

}



#header.header-scrolled .seaBtn {

  background: url(../images/sousuo.png) center no-repeat;

}



.seaBtn.selected {

  background: url(../images/close1.png) center no-repeat;

}



#header.header-scrolled .seaBtn.selected {

  background: url(../images/close.png) center no-repeat;

}



#header.header-scrolled .nav ul li a:hover {

  color: #e60012;

}



#header.header-scrolled .nav ul li.active a {

  color: #e60012;

}

#header.header-scrolled .nav ul li.active .submenu a {

  color: #fff;

}

#header.header-scrolled .nav ul li ul li a:hover {

  color: #fff;

}



#header.header-scrolled .arrow-btn i {

  color: #fff;

}



#header.header-scrolled .top {

  display: none;

}



#header.header-scrolled .change-language .change-language-title,

#header.header-scrolled .change-language .change-language-title a {

  color: #fff;

  font-size: 16px;

  font-weight:500;

}



.dflex_end {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



/* 语言 */

.head_right {

  position: relative;

  margin-left: 25px;

  height: 90px;

  display: flex;

  align-items: center;

  justify-content: center;

}



.prisna-wp-translate-seo {

  display: none;

  font-family: Arial, Helvetica, sans-serif

}



.change-language .prisna-wp-translate-seo,

.mobile-head-language .prisna-wp-translate-seo {

  display: block

}



.change-language .change-language-title,

.change-language .change-language-title a {

  font-size: 16px;

  color: #333;

  display: flex;

  font-weight: 500;

  align-items: center;

}



.change-language .change-language-title {

  padding: 0

}



.change-language .change-language-title a:after {

  font-family: fontawesome;

  content: "\f0d7";

  font-size: 12px;

  display: inline-block;

  padding-left: 2px

}



.change-language:hover .change-language-title a:after {

  -moz-transform: rotate(-180deg);

  -webkit-transform: rotate(-180deg);

  -ms-transform: rotate(-180deg);

  -o-transform: rotate(-180deg);

  transform: rotate(-180deg)

}



.change-language .change-language-cont {

  position: absolute;

  top: 100%;

  right: -20px;

  width: 120px;

  background: #fff;

  padding: 20px 10px 20px 20px;

  transform: scale3d(.9, .9, 1);

  opacity: 0;

  visibility: hidden;

  z-index: 999;

  -moz-transition: all .4s ease-in-out;

  -webkit-transition: all .4s ease-in-out;

  -ms-transition: all .4s ease-in-out;

  -o-transition: all .4s ease-in-out;

  transition: all .4s ease-in-out;

  border: 1px solid #eee;

  border-radius: 5px;

  overflow-y: scroll;

  max-height: 80vh

}



.change-language:hover .change-language-cont {

  transform: scale3d(1, 1, 1);

  opacity: 1;

  visibility: visible

}



.change-language .change-language-cont .lang-item-hide {

  display: none !important

}



.change-language .change-language-cont .lang-more {

  position: relative;

  display: block;

  text-align: center;

  cursor: pointer;

  line-height: 30px

}



.change-language .change-language-cont .more-active {

  font-size: 20px

}



.language-flag span {

  position: relative;

  display: inline-block;

  vertical-align: top;

  white-space: nowrap;

  overflow: hidden

}



.change-language ::-webkit-scrollbar {

  width: 5px

}



.change-language ::-webkit-scrollbar-track {

  background-color: #fff

}



.change-language ::-webkit-scrollbar-thumb {

  background-color: rgba(0, 0, 0, .3);

  border-radius: 3px

}



.change-language .language-cont:hover::-webkit-scrollbar-thumb {

  display: block

}



.country-flag {

  position: relative;

  display: inline-block;

  vertical-align: middle;

  margin-right: 8px;

}



.country-flag img {

  width: 24px;

  height: 18px;

  object-fit: cover;

  border-radius: 2px;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

  transition: transform 0.2s ease;

}



.language-flag .country-flag img {

  width: 24px;

  height: 18px;

  object-fit: cover;

  border-radius: 2px;

}



li.language-flag a:hover .country-flag img {

  transform: scale(1.05);

}



.change-language .change-language-cont {

  right: -15px;

  width: 200px;

  padding: 15px;

}



.change-language .change-language-cont li {

  width: 100%;

  margin: 0 2% 10px;

  padding: 5px;

  border-radius: 4px;

  transition: background 0.2s ease;

}



.change-language .change-language-cont li:hover {

  background: #f8f8f8;

}



.change-language .change-language-cont li a {

  display: flex;

}



.change-language .change-language-cont li a:hover span {

  color: #09f;

}



.mobile-head-item .main-content-wrap .content-wrap a:hover span {

  color: #09f;

}



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

	

  .change-language {

    display: none;

  }



  .mobile-body-mask {

    width: 100%;

    height: 100vh;

    background: rgba(0, 0, 0, 0.6);

    position: fixed;

    left: 0;

    top: 0;

    z-index: 999

  }



  .mobile-ico-close {

    width: 30px;

    height: 30px;

    background: #fff url(../images/close1.png) center center no-repeat;

    background-size: 50% auto;

    position: absolute;

    right: -35px;

    top: 0;

  }



  .sub-content {

    position: relative;

    display: block;

    right: auto;

    border-radius: 0;

    border: none;

    box-shadow: none;

    z-index: 99999;

  }



  .lang-more {

    display: none !important

  }



.third-level { border-left: none;}

  .mobile-head-items { display: none;

    position: fixed;

    top: 0;

    left: 0;

    background: #005FBB;

    width: 100%;

    height: 35px;

    line-height: 35px;

    text-align: left;


    z-index: 998;

  }



  .mobile-head-item {

    float: right;



  }



  .mobile-head-item.mobile-head-aside {

    float: right

  }



  .mobile-head-item .title {

    width: 100%;

    font-size: 20px;

    height: 35px;

    line-height: 35px;

    overflow: hidden;

    text-align: center;

    color: #FFF;

    cursor: pointer;

    padding-right: 10px;

  }



  .mobile-head-item .title a {

    position: relative;

    display: block;

    color: #FFF;

  }



  .mobile-head-item .main-content-wrap {

    background: #FFF;

    top: 0;

    display: block;

    z-index: 99999;

  }



  .mobile-head-item .main-content-wrap .content-wrap {

    overflow-y: auto;

    height: 100%;

    padding: 15px 10px;

    background-color: #fff;

  }



  .mobile-head-item .main-content-wrap.middle-content-wrap .content-wrap {

    overflow-y: hidden;

  }



  .mobile-head-item .side-content-wrap {

    position: fixed;

    display: block;

    left: -70%;

    width: 70%;

    height: 100%;

  }



  .mobile-head-item .middle-content-wrap {

    position: absolute;

    left: 0;

    width: 100%;

    height: auto;

    padding: 20px 0;

    opacity: 0;

    visibility: hidden;

  }



  .headDiv .logo img {

    height: 40px;

  }

.nav ul li a:hover .arrow-btn i{ color: #333!important;}

  .mobile-head-item .middle-show-content-wrap {

    top: 30px;

    visibility: visible;

    opacity: 1;

  }



  .searchWrap {

    background: none;

  }



  .nav {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: white;

    transition: all 0.4s ease;

    transform: translateY(-100%);

    z-index: 99;

    overflow-y: auto;

    max-height: 0;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    opacity: 0;

    visibility: hidden;

  }



  .headDiv .top_menu {

    height: 60px;

  }



  .headDiv {

     background: #fff;

  }

.nav li #line { background: none;}

  .arrow-btn i {

    display: block;

  }



  .nav.active {

    transform: translateY(0);

    max-height: 80vh;

    opacity: 1;

    visibility: visible;

  }



  .nav>ul {

    flex-direction: column;

    padding: 10px 0;

  }



  .nav li {

    width: 100%;

  }



  .nav ul li a {

    height: auto;

    padding: 12px 0 12px 20px;

    text-align: left;

    border-bottom: 1px solid #f0f0f0;

    position: relative;

    height: auto;

    line-height: 24px;

  }



  /* 移动端箭头按钮 */

     .arrow-btn {

        display: flex

;

        align-items: center;

        justify-content: center;

        width: 85px;

        height: 24px;

        margin-left: auto;

    }


    .lyfor{width: calc(100% - 60px) !important;}
    .inbanner{ padding-top: 60px;}

  /* 多级菜单在移动端样式 */

  .submenu {

    position: static;

    width: 100%;

    margin-top: 0;

    border-top: none;

    border-left: 4px solid #e60012;

    box-shadow: none;

    display: none;

    padding-left: 0;

    background: #f1f1f1;

    opacity: 1;

    transform: none;

  }



  .nav li {

    margin-right: 0;

  }



  .nav ul li ul li a {

    border-bottom: none;

    color: #333 !important;

  }



  .nav ul li ul li a:hover {

    background: #005FBB;

  }



  .third-level {



  }



  .fourth-level {

    border-left: 4px solid #ff9800;

  }

.nav ul li ul li a {padding: 5px 0 5px 20px;}



  .nav li:hover ul li a .arrow-btn i{ color: #333!important;}

.submenu { 	width: calc(100% - 4px);}



  .nav ul li ul li ul li a {

    padding-left: 60px;

		width: calc(100% - 80px);

  }



  .nav ul li ul li ul li ul li a {

    padding-left:0px;

  }



  .hamburger {

    display: block;

  }

#header.header-scrolled.headDiv .logo img { height: 40px; background: #fff;}

#header.header-scrolled.headDiv .head_right { height: 60px;}

  #header.header-scrolled {

  

    height: 60px;

    background: #fff;

  }

  #header.header-scrolled.headDiv .logo { height: 60px;}

#header.header-scrolled.headDiv .top_menu { height: 60px;}

  #header.header-scrolled .nav ul li a {

    color: #333;

  }



  #header.header-scrolled .nav li.active a {

    color: #333;



  }



  #header.header-scrolled .logo2 {

    display: none;

  }



  #header.header-scrolled .logo1 {

    display: block;

  }



  #header.header-scrolled .seaBtn {

    background: url(../images/sousuo1.png) center no-repeat;

  }



  #header.header-scrolled .seaBtn.selected {

    background: url(../images/close1.png) center no-repeat;

  }



  #header.header-scrolled .nav ul li a:hover {

    color: #e60012;

  }



  #header.header-scrolled .nav ul li.active a {

    color: #e60012;

  }



  #header.header-scrolled .nav ul li ul li a:hover {

    color: #fff;

  }



  #header.header-scrolled .arrow-btn i {

    color: #333;

  }

#header.header-scrolled.headDiv .nav ul li a{  height: auto;}

.nav ul li ul li ul.submenu{ border-left: none;}

}





.foot{background: #222;display: flow-root;}

.foot .box1{border-bottom: 1px solid rgba(255,255,255,0.3);padding: 40px 0;display: inline-block;width: 100%;}

.foot .box2{margin-top: 50px;}

.foot .box2 ul{display: flow-root;overflow: hidden;}

.foot .box2 li{float: left;margin-right: 80px;overflow: hidden;}

.foot .box2 li:last-child,.foot .box2 li:nth-child(4){margin-right: 0;}

.foot .box2 li p{font-size: 20px;color: #fff;display: block;margin-bottom: 24px; text-align: left;}

.foot .box2 li a{font-size: 14px;color: #bbb;line-height: 30px;display: block; text-align: left;}

.foot .box2 li a:hover{text-decoration: underline;}
.foot .box2 li.lier{ width: 30%;}
.foot .box2 li.lier a{ float: left; width: 49%;}
.foot .lxwm{float: right!important;max-width: 460px;}

.foot .lxwm dt{font-size: 14px;color: #bbb;margin-bottom: 16px;text-align: left;}

.foot .lxwm dt:nth-child(1){background: url(../web/template/beisit/images/f-ic1.png) no-repeat left;}

.foot .lxwm dt:nth-child(2){background: url(../web/template/beisit/images/f-ic2.png) no-repeat left;}

.foot .lxwm dt:nth-child(3){background: url(../web/template/beisit/images/f-ic3.png) no-repeat left;}

.copy{font-size: 14px;color: #bbb;text-align: center;margin: 60px 0 30px; line-height: 24px;}

.foot .f-logo{ display: flex; align-items: center;}

.foot .f-logo b{ display: inline-block; text-transform: uppercase; margin: 0 10px; color: #fff; font-size: 26px;}

.copy a{color: #bbb;}

.copy p a{ padding: 0 5px;}

.copy a:hover{text-decoration: underline;}



