/**
 * menu.less -- 导航菜单
 * 合并less输出到一个css---sseinfo-allcss.css
 * @project SSEINFO opensseinfo site
 * @author xiaxiansheng@adinnet.cn
 * @copyright: SSE INFONET LTD reserve all rights
**/
/**
  * PC和Pad横屏版用的为同样的样式,只是尺寸稍有不同
**/
/* ======== 吸顶导航 ======== */
ul{
  list-style: none;
  padding: 0;
  margin: 0; 
}
.topbar{
    background: #000 ;
    height:30px;
}
.topbar .fr{
    float: right;
    line-height: 30px;
}
.topbar .fr a{
    color: #eb6877;
}
.login_btn{
    background: #00b7ee;
    border-radius: 4px;
    padding: 2px 10px;
    margin-left: 20px;
    margin-right: 40px;
}
.topbar .fr .login_btn a{
    color: #fff;
}
.header_pc{
    background: #ffffff;
    width: 100%;
    height: 112px;
    position: absolute;
    z-index: 99;
    top: 0;
}
.header_pc .wrap{
    width: 100%;
    height: 100px;
    position: relative;
}
.header_pc .wrap .logo{
    position: absolute;
    width: 300px;
    height: 100px;
    padding-top: 25px;
    display: inline-block;
}
.header_pc .wrap .search{
    position: absolute;
    width: 80px;
    height: 100px;
    line-height: 100px;
    right: 0px;
    top: 0px;
    text-align: center;
    cursor: pointer;
}
.header_pc .wrap .nav{
    width: 750px;
    height: 100px;
    line-height: 100px;
    margin-left: 300px;
}
.header_pc .wrap .nav .nav-main{
   /* height: 68px;*/
    display: inline-block;
}
.header_pc .wrap .nav .nav-main>ul,.header_pc .wrap .nav .nav-main div ul{
    display: inline-block;
    padding: 0;
}
.header_pc .wrap .nav .nav-main>ul li{
    display: inline-block;
    float: left;
}
.header_pc .wrap .nav .nav-main>ul li a{
    color: #444;
    text-decoration: none;
    display: inline-block;
    padding: 0 7px;
    height: 68px;
    line-height: 68px;
    font-size: 16px;
}

/*菜单鼠标移入样式*/
.header_pc .wrap .nav .nav-main>ul li a.active,.header_pc .wrap .nav .nav-main>ul li a.lv1-active{
    background: #ffffff;
    color: #1566B0;
}
.header_pc .wrap .nav .nav-main>ul li a:hover{
    background: #ffffff;
    color: #1566B0;
}
/*菜单鼠标移入样式 end*/
.header_pc .wrap .nav .nav-sub{
    overflow: hidden;
}
.header_pc .wrap .nav .nav-sub>div{
    height: 68px;
    background: rgba(23,101,137,.8);
    display: none;
}
.js_showSubNav{
    position: fixed;
    display: none;
    top: 112px;
    height: 120px;
}
.js_showSubNav .menu-extend {
    width: 500px;
    height: 20px;
    background-color: rgba(0,0,0,0);
}
.js_showSubNav ul {
    background: rgba(255,255,255,.9);
}
.js_showSubNav .subMenu-block {
    /*background: rgba(255,255,255,.9);*/
    padding: 0 25px 25px;
}
.js_showSubNav ul li {
    float: left;
}
.rec-block div>div {
    /*background: rgba(255,255,255,.9);*/
    padding: 25px;
    width: 250px;
    line-height: 0;
}
/*.rec-block div:last-child {
    padding-bottom: 25px;
}*/
.rec-block div p {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 20px;
    height: 40px;
}
.rec-block img {
    width: 200px;
    height: 100px;
}
.triangle-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    top: 10px;
    left: 30px;
    position: absolute;
}
.searchWarp{
    position: absolute;
    right: 200px;
    top: 100px;
    width: 280px;
    height: 40px;
    padding-top: 40px;
    display: none;
}
.kw {
    border: none;
    width: 400px;
    line-height: 80px;
    height: 80px;
    padding: 0 10px;
    background-color: #F4F4F4;
    position: absolute;
    top: -5px;
    left: 80px;
}
.show {
    display: block!important;
}
.ok {
    background: url(../images/s_icon.png) no-repeat;
    background-color: #F4F4F4;
    background-position: 50% 50%;
    border: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    position: absolute;
    top: -5px;
    left: 0;
}

.breadcrumb a {
  font-size: 14px;
  color: #fff;
}
.breadcrumb>li+li:before {
    content: "";
    padding: 0;
}
.breadcrumb>li i{
  font-size: 12px;
  color: #fff;
  padding: 0 4px;
}
.breadcrumb_wrap{
    height: 20px;
    line-height:20px;
    position: absolute;
    top: 0px;
    z-index: 20;
}
.breadcrumb_wrap .breadcrumb {
    margin-top: 20px;
    background: none;
}
.breadcrumb {
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}
        
.header_mobile {
    height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  box-shadow: 0 1px 2px rgba(4, 0, 0, 0.1);
  background-color: #fff;
}
.header_mobile:before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 1002;
}

/* ======== 搜索框下拉 -end ======== */
.menu-tab {
  margin-right: 30px;
}
.menu-tab li {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.menu-tab li a {
  position: relative;
  display: block;
  padding: 0 30px;
  line-height: 68px;
  color: #666!important;
}
:root .menu-tab li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #0156ac;
  transition: all 0.4s ease-in-out 0s;
  transform: scalex(0);
}
.menu-tab li.isHover a:before {
  transform: scalex(1);
}
.lte-ie8 .menu-tab {
  margin-right: 30px!important;
}
.lte-ie8 .menu-tab  li {
  border-bottom: 4px solid #0156ac;
  visibility: hidden;
}
.lte-ie8 .menu-tab  li a {
  padding: 0 30px!important;
}
.nav-log-mobile{
  width: 80%;
}
.lte-ie8 .menu-tab  li.isHover {
  visibility: visible;
}
.nav-side-show {
  position: absolute;
  top: 67px;
  left: 0;
  z-index: 19;
  width: 100%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-transform: translatey(-100%);
  -ms-transform: translatey(-100%);
  transform: translatey(-100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0.5, 0, 1);
  transition: transform 0.6s cubic-bezier(0, 0.5, 0, 1);
}
.nav-side-show.nsshow {
  -webkit-transform: translatey(0);
  -ms-transform: translatey(0);
  transform: translatey(0);
}
.lte-ie8 .nav-side-show {
  top: -1000%;
}
.lte-ie8 .nav-side-show.nsshow {
  top: 79px;
}

.trow {
  position: relative;
  display: none;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f6f6f6;
}
.trow > .container {
  padding: 0;
}
.trow .col-sm-3 {
  width: 20%;
}
.nsshow .trow {
  box-shadow: 0 1px 2px rgba(4, 0, 0, 0.1);
}
.block-wrap {
  width: 400px;
}
.block {
  margin-left: 0;
  margin-right: 0;
  padding-right: 8px;
  width: 50%;
  float: left;
}
.block h2 {
  margin: 0;
}
.block h2 > a {
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #333;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  display: block;
}
.block h2 > a > span {
    border-bottom: 2px solid #1369B3;
    height: 40px;
    display: inline-block;
}
.block h2 > a:focus,
.block h2 > a:hover {
  color: #333;
}
.block p {
    margin-bottom: 0;
    line-height: 30px;
    height: 30px;
}
.block p span {
    padding-right: 5px;
    opacity: 0.4;
}
.block a {
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: #666;
  line-height: 40px;
  white-space: nowrap;
}
.block a:hover {
  color: #0156ac;
}
/* 菜单加new */
.block h2 > a.menu_style_2 > span::after{
       content: "new";
       color:#fff;
       font-weight: 100;
       background:#ED636B;
       padding: 0px 3px 2px 3px;
       margin-left: 6px;
       border-radius: 4px;
}
.colnum-2 > .container {
  padding-left: 100px;
  padding-right: 100px;
}
.colnum-2 > .container > .col-sm-3 {
  width: 60%;
  margin-right: -30px;
}
.colnum-2 > .container > .col-sm-3 + .col-sm-3 {
  width: 40%;
  margin-right: 0;
}
.colnum-2 > .container > .col-sm-3 + .col-sm-3 .col-sm-4 {
  width: 50%;
}
.colnum-2 h2 > a {
  font-size: 16px;
  color: #0156ac;
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.colnum-2 h2 > a:focus,
.colnum-2 h2 > a:hover {
  color: #0156ac;
}
.colnum-2 .col-sm-4 > p:first-child > a {
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: bold;
  border-bottom: 1px solid #dddddd;
  cursor: default;
}
.colnum-1 {
  background: none;
  padding: 0;
}
.nsshow .colnum-1 {
  box-shadow: none;
}
.colnum-1 .container {
  margin: 0;
}
.colnum-1 .col-sm-3 {
  padding: 10px 30px;
  max-width: 200px;
  border: 1px solid #ddd;
  background-color: #f6f6f6;
}
.nsshow .colnum-1 .col-sm-3 {
  box-shadow: 0 1px 2px rgba(4, 0, 0, 0.1);
}
.colnum-1 .block a {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 50px;
  font-weight: normal;
  cursor: pointer;
  border-bottom: none;
}
.colnum-1 .block a:hover {
  color: #0156ac;
}
.menu_style_3 {
  position: relative;
}
.menu_style_3:after {
  content: "\e62a";
  position: absolute;
  display: inline-block;
  margin-left: 8px;
  top: 50%;
  font-size: 20px;
  line-height: 16px;
  margin-top: -7px;
  color: #a6a6a6;
}
.lte-ie8 .menu_style_3:after {
  margin-top: -9px;
}
.menu_style_3:hover:after {
  color: #0156ac;
}

@media screen and (min-width: 992px) {
      .header_mobile .navbar-header {
      /* margin-top: 20px; */
      line-height: 68px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .block h2 > a {
  font-size: 12px;
}
.block p > a {
  font-size: 12px!important;
}
.colnum-2 > .container {
  padding-left: 80px;
  padding-right: 80px;
}
.colnum-2 h2 > a {
  font-size: 14px;
  line-height: 40px;
}
.colnum-1 h2 > a {
  font-size: 14px;
}
.menu_style_3:after {
  margin-left: 6px;
}
.menu-tab {
  margin-right: 20px;
}
.menu-tab li a {
  padding: 0 20px;
}

}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .navbar .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
  margin-left: 0;
}
.navbar .navbar-header {
  float: none;
}
.header_mobile .navbar > .container {
  width: 100%;
}
.fixed-nav {
  -webkit-transform: translatey(-100%);
  -ms-transform: translatey(-100%);
  transform: translatey(-100%);
}

}

.hwACC {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
/* 定义before / after 伪元素的 iconfont */
.menu_lv_1 a {
  text-decoration: none;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

.dl-menuwrapper {
    width: 75%;
    background-color: #202634;
    /*-webkit-overflow-scrolling: touch;*/
}
.dl-menu {
  width: 100%;
  margin: 0;
}
.dl-menu > .menu_lv_1 {
  border-bottom: 2px solid #2A2F3C;
}
.dl-menu > .menu_lv_1.active > a {
    color: #ffffff;
}
.dl-menu > .menu_lv_1 > a {
  position: relative;
  display: block;
  padding: 0 20px;
  line-height: 60px;
  color: #727886;
  font-size: 18px;
}
.dl-menu > .menu_lv_1 > a i.icon-arrow_down_1:before {
    /*content: "\e926";*/
    position: absolute;
    right: 20px;
    top: 30px;
    background-size: 100%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
} 
.dl-menu > .menu_lv_1.active > a i.icon-arrow_down_1:before {
    /*content: "\e926";*/
    transform: translateY(-50%) rotate(180deg);
}
.dl-menu > .menu_lv_1 > a + ul > .menu_lv_2 > a:only-child {
  font-weight: normal;
  border-bottom: none;
}
.dl-menu > .menu_lv_1 > a + ul > .menu_lv_2 > a:only-child:after {
  content: "";
  display: none;
}
.dl-menu > .menu_lv_1 > ul {
  display: none;
  padding: 0 20px;
  margin-bottom: 20px;
}
.dl-menu > .menu_lv_1 li > a {
  display: block;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  opacity: .8;
  padding-left: 15px; 
}
.dl-menu > .menu_lv_1 .menu_style_4 {
  margin: 0 -10px 5px;
  text-indent: 10px;
  font-size: 16px;
  color: #0156ac;
  font-weight: bold;
  background-color: #f6f6f6;
  border: none;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
.dl-menu > .menu_lv_1 .menu_style_4:after {
  content: "";
  display: none;
}
.dl-menu > .menu_lv_1 .menu_style_4 + ul {
  display: block;
}
.dl-menu > .menu_lv_1 .menu_style_4 + ul > .menu_lv_2 > ul {
  display: block;
}
.dl-menu > .menu_lv_1 .menu_style_4 + ul .menu_lv_3 > a {
  position: relative;
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}
.dl-menu > .menu_lv_1 .menu_style_4 + ul .menu_lv_3 > a:after {
  content: "\e62c";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 24px;
  line-height: 24px;
  color: #3a3a3a;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in 0s;
  transition: -webkit-transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
}
.dl-menu > .menu_lv_1 .menu_style_4 + ul .menu_lv_3 > a + ul {
  display: none;
}
.dl-menu > .menu_lv_1 .menu_style_4 + ul .menu_lv_3.active > a:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.dl-menu .menu_lv_2 > a {
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}
.dl-menu .menu_lv_2 > ul, .dl-menu .menu_lv_3 > ul {
  display: none;
}
.dl-menu .menu_lv_2 > a i.icon-arrow_down_1:before {
    /*content: "\e926";*/
    position: absolute;
    right: 2px;
    top: 20px;
    background-size: 100%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
} 
.dl-menu .menu_lv_2.active > a i.icon-arrow_down_1:before {
    /*content: "\e926";*/
    transform: translateY(-50%) rotate(180deg);
}
.dl-menu .menu_lv_3 > a i.icon-arrow_down_1:before ,.dl-menu .menu_lv_4 > a i.icon-arrow_down_1:before{
    position: absolute;
    right: 2px;
    top: 20px;
    background-size: 100%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
} 
.dl-menu .menu_lv_3.active > a i.icon-arrow_down_1:before ,.dl-menu .menu_lv_4.active > a i.icon-arrow_down_1:before{
    transform: translateY(-50%) rotate(180deg);
}
.dl-menu .menu_lv_3 > a {
    padding-left: 30px !important;
}
.dl-menu .menu_lv_4 > a {
    padding-left: 45px !important;
}
.dl-menu .menu_lv_5 > a {
    padding-left: 60px !important;
}
.navbar-toggle {
  z-index: 1001;
}
.navbar-toggle:hover,
.navbar-toggle:focus {
  background: none!important;
}
.navbar-toggle span {
  width: 22px;
  height: 2px;
  position: relative;
  display: block;
  margin: auto;
  background-color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-border-radius: 2px;
          border-radius: 2px;
}
.navbar-toggle span:before,
.navbar-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #000;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
  transition-property: top, -webkit-transform;
}
.navbar-toggle span:before {
  top: -8px;
}
.navbar-toggle span:after {
  top: 8px;
}
.menu-open {
  position: absolute;
  left: 0;
  width: 100%;
}
.menu-open .navbar-toggle {
  /* border-left-color: #e7e7e7; */
  border: none;
}
.menu-open .navbar-toggle:after {
  background-color: #fff;
}
.menu-open .navbar-toggle span {
  -webkit-transition: background .3s 0s ease;
  transition: background .3s 0s ease;
  background: transparent;
}
.menu-open .navbar-toggle span:before,
.menu-open .navbar-toggle span:after {
  top: 0;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
.menu-open .navbar-toggle span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-open .navbar-toggle span:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu_style_3:hover:after {
  color: #0156ac;
}
.search_mobile .input_search_mobile{
    width: 100%;
    height: 32px;
    border:none;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius:32px;
    outline: none;
    text-indent: 1em;
    background: rgba(255, 255, 255, .0);
    color: #fff;
  }
  .search_mobile .icon-search_mobile:before{
    font-size: 36px;
    color: #00b8ee;
  }
  .search_mobile{
    padding: 15px;
    background: rgba(0,160,233,.6);
  }
  .search_mobile .col-2 {
    padding: 0;
  }
/* ======== 定义通用Less混合(Mixins)类 ======== */
/* ======== 定义通用Less混合(Mixins)类 - end ======== */
/* ======== @media ======== */
@media screen {
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .dl-menu > .menu_lv_1 {
    padding: 0 30px;
  }
  .dl-menu > .menu_lv_1 > a {
    line-height: 80px;
  }
  .dl-menu > .menu_lv_1 > ul {
    padding-bottom: 15px;
  }
  .dl-menu > .menu_lv_1 li > a {
    line-height: 50px;
  }
  .dl-menu > .menu_lv_1 .menu_style_4 {
    margin: 0 -15px 10px;
    text-indent: 15px;
    line-height: 50px;
  }
  .dl-menu > .menu_lv_1 .menu_style_4 + .menu_lv_2 {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .mobile_hide,
  .navbar-nav {
    display: none!important;
  }
  .navbar-header {
    position: relative;
    z-index: 1001;
    width: 100%;
    height: 80px;
    background-color: #fff;
  }
  .header_mobile {
    height: 81px;
  }
  .navbar-toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
    z-index: 1001;
    background-color: #fff;
    border: none;
    border-left: 1px solid transparent;
    -webkit-border-radius: 0;
            border-radius: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .navbar-toggle:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
  }
  .navbar-toggle.active {
    border-left-color: #eee;
  }
  .desk-search {
    display: block;
    width: 100%;
    padding: 30px;
    margin-top: 0;
    border: none;
  }
  .desk-search .search-btn-wrap {
    position: absolute;
    top: 30px;
    right: 30px;
  }
  .desk-search .search-btn-wrap:after {
    margin: 0;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }
  
}
@media screen and (min-width: 992px) {
  .dl-menuwrapper {
    float: right;
    margin-right: -15px;
  }
  .dl-menu {
    display: none!important;
  }
}
@media screen and (max-width: 992px) {
  .dl-menuwrapper {
    overflow: auto;
    right: -100%;
    height: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
  }
  .menu_style_3:after {
    right: 0;
  }
  .searchshow .dl-menu {
    -webkit-animation: list-searchshow 800ms both;
    animation: list-searchshow 800ms both;
  }
  .searchopen .dl-menu {
    display: none;
  }
  .searchhide .dl-menu {
    bottom: auto;
    -webkit-animation: list-searchshow-reverse 800ms both;
    animation: list-searchshow-reverse 800ms both;
  }

}
@media screen and (max-width: 767px) {
  .mobile_hide,
  .navbar-nav {
    display: none!important;
  }
  .navbar-header {
    /*position: relative;*/
/*    z-index: 100;
    width: 100%;
    height: 60px;
    background-color: #ffffff;*/
  }
  .navbar-toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    z-index: 100;
    background-color: #ffffff;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .navbar-toggle:after {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
  }
  .navbar-toggle.active {
    border-left-color: #eee;
  }

@media screen and (min-width: 768px) and (max-width: 1250px){
  .header_pc .wrap .nav .nav-main>ul li a{
    font-size: 14px;
    padding:0 10px;
  }
  .header_pc .wrap .nav .nav-main div ul li a{
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
    .menu-tab {
      display: none;
    }
    .fixed-nav {
      -webkit-transform: translate3d(0, -100%, 0);
      -ms-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    .nav-log-mobile img {
        width: 75%;
    }
}

