.MenuList_c2 {
  height: 100%;
  position: relative;
}

.MenuList_c2 .MenuItems::after {
  content: "";
  display: block;
  clear: both;
}

.MenuList_c2 .MenuItems>li {
  float: left;
  height: 106px;
  position: relative;
  z-index: 999;
  margin-right: 20px;
}

.MenuList_c2 .MenuItems>li>a {
  width: 126px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333333;
  text-align: center;
  font-size: 18px;
  gap: 10px;
}

.MenuList_c2 .MenuItems>li>a span {
  display: block;
}

.MenuList_c2 .MenuItems>li>a span img:last-child {
  display: none;
}

.MenuList_c2 .MenuItems>li.on>a, .MenuList_c2 .MenuItems>li>a:hover {
  color: #fff;
  background-color: #2454a4;
}

.MenuList_c2 .MenuItems>li.on span img:first-child, .MenuList_c2 .MenuItems>li>a:hover span img:first-child {
  display: none;
}

.MenuList_c2 .MenuItems>li.on span img:last-child, .MenuList_c2 .MenuItems>li>a:hover span img:last-child {
  display: block;
}

/*二级导航样式*/

.MenuList_c2 .MenuItems>li div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 106px;
  display: none;
  background: #f5f5f5;
  z-index: 999;
}

.MenuList_c2 .MenuItems>li:hover div {
  /*ie6不支持li:hover所以在这里写成li.hover以方便js取样式*/
  position: absolute;
  display: block;
}

.MenuList_c2 .MenuItems>li div ul {
  min-width: 150px;
  padding-left: 0;
}

.MenuList_c2 .MenuItems>li div ul li {
  width: 100%;
  height: 40px;
  float: left;
}

.MenuList_c2 .MenuItems>li div ul li a {
  height: 40px;
  margin: 0;
  padding: 0 20px;
  line-height: 40px;
  display: block;
  color: #555 !important;
  text-align: center !important;
  font-size: 16px;
  border-bottom: 1px solid #dddddd;
  white-space: nowrap;
}

.MenuList_c2 .MenuItems>li div ul li a:hover {
  color: #2454a4 !important;
  border-bottom: 1px solid #2454a4;
  font-weight: bold;
}

.MenuList_c2 .move-bg {
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
  margin-left: 10px;
  width: 85px;
  height: 80px;
  background: #eba708;
}

@media only screen and (max-width: 1480px) {
  .MenuList_c2 {
    width: 100%;
    height: 80px;
  }

  .MenuList_c2 .MenuItems>li {
    height: 80px;
  }

  .MenuList_c2 .MenuItems>li>a {
    padding: 30px 15px 0;
    height: 46px;
    font-size: 14px;
  }

  /*二级导航样式*/
  .MenuList_c2 .MenuItems li div {
    top: 80px;
  }

  .MenuList_c2 .move-bg {
    height: 80px;
  }
}

@media only screen and (max-width: 1580px) {
  .MenuList_c2 {
    width: 280px;
    height: auto;
    float: right;
    position: inherit;
    background: #f5f5f5;
    padding-top: 60px;
    margin-top: -68px;
  }

  .MenuList_c2 .MenuItems>li {
    float: left;
    height: auto;
    position: inherit;
    width: 100%;
    z-index: 999;
  }

  .MenuList_c2 .MenuItems>li>a {
    padding: 0;
    text-indent: 20px;
    width: 100%;
    float: right;
    height: 40px !important;
    line-height: 40px !important;
    text-align: left;
    display: block;
    font-family: "微软雅黑";
    color: #333;
    font-size: 14px;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    background: #f5f5f5 url(/images/menu_ico1.png) no-repeat 95% 15px;
    background-size: 14px;
    border-bottom: solid 1px #ddd;
    z-index: 999;
  }

  .MenuList_c2 .MenuItems>li>a:hover {
    color: #fff;
    background: #1e64bc url(/images/menu_ico1.png) no-repeat 95% -14px;
    background-size: 14px;
  }

  .MenuList_c2 .MenuItems>li:hover>a {
    color: #fff;
    background: #1e64bc url(/images/menu_ico1.png) no-repeat 95% -14px;
    background-size: 14px;
  }

  .MenuList_c2 .MenuItems>li.hover>a {
    background: #1e64bc url(/images/menu_ico1.png) no-repeat 95% -14px;
    background-size: 14px;
    border-bottom: none;
  }

  .MenuList_c2 .MenuItems>li.on>a {
    background: #1e64bc url(/images/menu_ico1.png) no-repeat 95% -14px;
    background-size: 14px;
    border-bottom: none;
    color: #fff !important;
  }

  .MenuList_c2 .MenuItems>li.on.hover>a {
    background: #1e64bc url(/images/menu_ico1.png) no-repeat 95% -14px;
    background-size: 14px;
    border-bottom: none;
    color: #fff !important;
  }

  /*.MenuList_c2 .MenuItems>li>a:focus,.MenuList_c2 .MenuItems>li.on>a:focus {color:#fff;background:#eba708;transition-duration:.3s; -moz-transition-duration:.3s; -webkit-transition-duration:.3s; }*/
  /*二级导航样式*/
  .MenuList_c2 .MenuItems>li div {
    position: inherit;
    left: inherit;
    top: inherit;
    width: 100%;
    height: auto;
    display: none;
    z-index: 999;
    margin-top: 40px;
  }

  .MenuList_c2 .MenuItems>li:focus div,
  .MenuList_c2 .MenuItems>li:hover div {
    position: inherit;
    display: none;
  }

  .MenuList_c2 .MenuItems>li.hover div {
    display: block;
    border-bottom: 1px solid #ddd;
  }

  .MenuList_c2 .MenuItems>li div ul {
    width: 100%;
    padding-left: 0;
  }

  .MenuList_c2 .MenuItems>li div ul li {
    height: 35px;
    float: inherit;
    width: 100%;
  }

  .MenuList_c2 .MenuItems>li div ul li a {
    height: 34px;
    margin: 0;
    padding: 0;
    padding-left: 20px;
    line-height: 34px;
    display: block;
    color: #666 !important;
    text-align: left !important;
    background: #f5f5f5;
    font-size: 12px;
    border-bottom: none;
  }

  .MenuList_c2 .MenuItems>li div ul li a.on,
  .MenuList_c2 .MenuItems li div ul li a:hover {
    color: #666 !important;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
  }

  .MenuList_c2 .move-bg {
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    margin-left: 10px;
    width: 85px;
    height: 80px;
    background: #eba708;
  }

  #header {
    position: absolute;
    height: 100px;
    width: 100%;
    margin: 0 auto;
    z-index: 999;
  }

  #header .logo_nt {
    position: absolute;
    left: 4%;
    top: 10px;
    display: block;
  }

  #menu {
    float: inherit;
    width: 100%;
    position: relative;
    z-index: 20px;
    left: 0;
    display: none;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
    padding-top: 60px;
    top: 0;
  }

  #menu_btn {
    display: block;
    width: 42px;
    height: 29px;
    background: url(../images/menu2.png) no-repeat right center;
    background-size: 30px;
    position: absolute;
    top: 33px;
    right: 4%;
  }

  #menu_btn.on {
    background: url(../images/close2.png) no-repeat right center;
    background-size: 30px;
    right: 320px;
    z-index: 1002;
  }

  .language_box {
    display: none;
  }

  #mob_lan {
    width: 100%;
    padding: 50px 0;
    background: #f5f5f5;
    display: block;
  }

  #mob_lan a {
    display: block;
    margin: 10px auto;
    width: 70%;
    height: 36px;
    line-height: 36px;
    border-radius: 36px;
    background: #cccccc;
    color: #fff;
    text-align: center;
  }

  #mob_lan a.on {
    background: #2454a4;
  }
}

@media only screen and (max-width: 861px) {
  #header {
    position: relative;
    height: 60px;
    width: 100%;
    margin: 0 auto;
    z-index: 999;
  }

  #header .logo_nt {
    position: absolute;
    left: 4%;
    top: 17px;
    display: block;
    width: 150px;
  }

  #menu {
    float: inherit;
    width: 100%;
    position: relative;
    z-index: 20px;
    top: 0;
    left: 0;
    display: none;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
    padding-top: 0;
  }

  .MenuList_c2 .MenuItems>li>a span {
    display: none;
  }

  .top_right {
    display: none;
  }

  #menu_btn {
    display: block;
    width: 42px;
    height: 29px;
    background: #fff url(../images/menu.png) no-repeat right center;
    background-size: 30px;
    position: absolute;
    top: 16px;
    right: 4%;
  }

  #menu_btn.on {
    background: #fff url(../images/close.png) no-repeat right center;
    background-size: 30px;
    right: 4%;
  }

  .language_box {
    display: none;
  }

  #mob_lan {
    width: 100%;
    padding: 50px 0;
    background: #f5f5f5;
    display: block;
  }

  #mob_lan a {
    display: block;
    margin: 10px auto;
    width: 70%;
    height: 36px;
    line-height: 36px;
    border-radius: 36px;
    background: #cccccc;
    color: #fff;
    text-align: center;
  }

  #mob_lan a.on {
    background: #2454a4;
  }
}

@media only screen and (max-width: 720px) {
  .MenuList_c2 {
    width: 60%;
    height: auto;
    float: right;
    position: inherit;
    background: #f5f5f5;
    padding-top: 0;
    margin-top: 0;
  }
}