header {
  width: 100%;
  height: 1rem;
}

header .h-a {
  width: 100%;
  height: 1rem;
}

header .h-a .h-container {
  width: 17.2rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

header .h-a .h-container .h-logo {
  height: .55rem;
  display: inline-block;
  cursor: pointer;
}

header .h-a .h-container .h-logo img {
  height: 100%;
}

header .h-a .h-container .h-container-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-right: 0.2rem;
}

header .h-a .h-container .h-container-ul .h-container-li {
  position: relative;
}

header .h-a .h-container .h-container-ul .h-container-li .title {
  display: block;
  cursor: pointer;
  font-family: Arial;
  color: #000000;
  padding: 0 .2rem;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
}

header .h-a .h-container .h-container-ul .h-container-li .title:hover {
  color: #005197;
}

header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul {
  min-width: 180px;
  display: block;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
}

header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li {
  line-height: 40px;
  width: 100%;
  cursor: pointer;
}

header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li a {
  width: 100%;
  line-height: 40px;
  display: block;
  text-align: center;
}

header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li:hover {
  background-color: #005197;
}

header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li:hover a {
  color: #fff;
  /* font-weight: bold; */
}

header .h-a .h-container .h-sms {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: .4rem;
  height: .4rem;
  cursor: pointer;
  display: block;
}

header .h-a .h-container .h-sms img {
  width: 100%;
  height: 100%;
}

header .h-a .h-container .h-sms .img-2 {
  display: none;
}

header .h-a .h-container .h-sms:hover .img-1 {
  display: none;
}

header .h-a .h-container .h-sms:hover .img-2 {
  display: inline-block;
}


/* 新增加语言切换  2020-09-07添加 */
header .h-a .h-container .select-w {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  background: none;
  position: relative;
  /* padding-right: 30px; */
  padding-right: .3rem;
  padding-left: .3rem;
  white-space: nowrap;
  position: relative;
  margin-right: 0.6rem;
}

header .h-a .h-container .select-w .cur {
  width: 100%;
  display: inline-block;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .h-a .h-container .select-w select {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-left: 12px;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
}

header .h-a .h-container .select-w:after {
  display: inline-block;
  content: "";
  border-left: 5px solid transparent;
  border-top: 5px solid #000000;
  border-right: 5px solid transparent;
  position: absolute;
  top: 5px;
  right: 13px;
  z-index: 1;
}

/* header .h-a .h-container .select-w:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
} */
/* 新增加语言切换 */


header .h-a .h-container .h-user {
  padding-left: .3rem;
  margin-right: .6rem;
  cursor: pointer;
  display: inline-block;
}


header .h-a .h-container .h-container-menu {
  display: none;
}

header .h-a .h-opa {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}

@media (max-width: 1400px) {
  header .h-a .h-container {
    width: 100%;
    padding: 0 20px;
  }

  header .h-a .h-container .h-logo {
    height: .7rem;
  }

  header .h-a .h-container .h-container-ul {
    width: 260px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: #fff;
    overflow: auto;
    z-index: 1000;
    padding-top: 10px;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    line-height: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
  }

  header .h-a .h-container .h-container-ul .h-container-li {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-left: 0;
    height: auto;
  }

  header .h-a .h-container .h-container-ul .h-container-li .title {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    width: 4rem;
    text-align: left;
    font-weight: bold;
    color: #005197;
  }

  header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul {
    display: none;
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
  }

  header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: left;
  }

  header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li a {
    color: #005197;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 40px;
    padding-left: 40px;
    text-align: left;
  }

  header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li:hover {
    background-color: #005197;
  }

  header .h-a .h-container .h-container-ul .h-container-li .h-menu-ul .h-menu-li:hover a {
    color: #fff;
    font-weight: bold;
  }

  header .h-a .h-container .h-container-ul .h-container-li.h-nav:after {
    content: '+';
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    color: #333;
  }

  header .h-a .h-container .h-container-ul .h-container-li.h-nav.show:after {
    content: '-';
  }

  header .h-a .h-container .h-sms {
    right: 80px;
    width: 30px;
    height: 30px;
  }

  header .h-a .h-container .h-user {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translate(0, -50%);
  }

  header .h-a .h-container .select-w {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translate(0,-50%);
    margin-right: 0;
  }

  header .h-a .h-container .select-w:after {
    display: none;
  }

  header .h-a .h-container .h-container-menu {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    display: inline-block;
    background-image: url(/en/themes/pc_cn/public/assets/images/3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
  }

  header.show .h-a .h-container .h-container-ul {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  header.show .h-a .h-container .h-container-menu {
    display: none;
  }

  header.show .h-a .h-opa {
    display: block;
  }
}

@media (max-width: 900px) {
  footer .f-a .f-container .f-ul .f-li .f-li-text a {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  header .h-a .h-container .h-sms {
    display: none;
  }

  header .h-a .h-container .h-user {
    right: 40px;
  }

  header .h-a .h-container .select-w {
    right: 18%;
  }
}

/*# sourceMappingURL=header.css.map */