.header {
  display: flex;
  justify-content: space-between;
  height: 70px;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 98;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
  }
}
.header__logo {
  height: 50px;
  padding-left: 15px;
}
.header__logo img {
  width: auto;
  height: 100%;
}
.header__right {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__right {
    display: none;
  }
}
.header__ul {
  display: flex;
  list-style: none;
  height: 100%;
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
    top: 4px;
    right: 15px;
    font-size: 30px;
    position: absolute;
  }
}
.header__child {
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  transition: opacity 0.2s;
  z-index: 100;
}
.header__child-icon {
  width: 100%;
  margin-bottom: 10px;
}
.header__child-icon i {
  margin-right: 5px;
  color: #005491;
}
.header__child-inner {
  width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.header__li {
  height: 100%;
}
.header__li:hover .header__child {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.header__li a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  transition: all 0.2s;
  color: #005491 !important;
  cursor: pointer;
}
.header__li a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.header__megaitem {
  width: 25%;
  margin-bottom: 30px;
  position: relative;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 15px;
  transition: all 0.08s;
}
.header__megaitem:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.header__megaitem p {
  font-size: 13px;
  text-align: center;
  color: #005491;
  margin-top: 10px;
}
.header__megaitem a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header__megaitem a:hover {
  background: rgba(200, 200, 200, 0.1);
}
.header__megaitem img {
  width: 100%;
}
.header__contact {
  background: #f29600;
  color: #fff !important;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  font-size: 18px;
  transition: all 0.2s;
}
.header__contact i {
  margin-right: 5px;
  color: #fff;
}

.sp-menu {
  display: none;
  width: 250px;
  height: 100vh;
  background: #005491;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  padding: 15px;
  padding-top: 10px;
  overflow-y: scroll;
  transition: transform 0.2s;
  z-index: 100;
}
.sp-menu__close {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: #fff;
}
.sp-menu__close i {
  color: #fff;
}
.sp-menu.on {
  transform: translateX(0);
}
.sp-menu__title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.sp-menu__ul {
  list-style: none;
}
.sp-menu__ul li {
  border-bottom: 1px solid #fff;
  padding: 8px 0;
}
.sp-menu__ul li:first-child {
  border-top: 1px solid #fff;
}
.sp-menu__ul li ul li {
  color: #fff;
  text-indent: -1em;
  padding-left: 1em;
  list-style: none;
  border: none !important;
  margin-top: 5px;
  padding: 5px 0;
  margin-left: 30px;
}
.sp-menu__ul li ul li a {
  font-size: 12px;
  font-weight: 100;
}
.sp-menu__ul a {
  color: #fff !important;
  font-size: 18px;
  font-weight: 500;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sp-menu {
    display: block;
  }
}

html {
  overflow-x: hidden;
}

body {
  transition: transform 0.2s;
}

.sp-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0;
  transition: opacity 0.2s;
  visibility: hidden;
  z-index: 99;
}
.sp-mask.on {
  opacity: 0.6;
  visibility: visible;
}/*# sourceMappingURL=header.css.map */