.header {
  height: 180px;
  width: 100%;
  background: url("/imgs/header-bg.png") center no-repeat, linear-gradient(to bottom, #015293, #1f68ac);
  background-size: auto 204px;
  min-width: 1280px;
}
.header .header-btn {
  height: 32px;
  line-height: 30px;
  border-radius: 16px;
  border: 1px solid #FFFFFF;
  padding: 0 12px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  white-space: nowrap;
}
.header .header-btn + .header-btn {
  margin-left: 8px;
}
.header .mobile-btn {
  display: none;
}
.header .mobile-btn .header-btn {
  font-size: 14px;
}
.header .main-header {
  width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
}
.header .main-header .main-top {
  display: flex;
  justify-content: space-between;
  height: 20px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
}
.header .main-header .main-top a {
  color: #fff;
}
.header .main-header .main-top .sep {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.45);
  margin: 0 12px;
}
.header .main-header .main-top .top-l {
  display: flex;
  align-items: center;
}
.header .main-header .main-top .top-r {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.header .main-header .header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 21px;
}
.header .main-header .header-box .main-logo {
  height: 93px;
}
.header .main-header .header-box .main-logo img {
  height: 100%;
  display: block;
}
.header .main-header .header-box .main-search {
  display: flex;
  width: 514px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
}
.header .main-header .header-box .main-search .search-input {
  flex: 1;
  height: 48px;
  padding-left: 15px;
  font-size: 18px;
}
.header .main-header .header-box .main-search .search-btn {
  height: 48px;
  color: #fff;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .main-header .header-box .main-search .search-btn .search-ico {
  width: 24px;
  height: 24px;
  display: block;
}

.nav {
  width: 100%;
  min-width: 1280px;
  height: 72px;
  background: #2A508E;
  overflow-y: hidden;
}
.nav .nav-box {
  display: flex;
  width: 1280px;
  margin: 0 auto;
  justify-content: space-between;
}
.nav .nav-box .nav-item {
  height: 72px;
  font-size: 20px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
.nav .nav-box .nav-item.active {
  font-weight: 600;
  background: #004073;
}
.nav .nav-box .nav-item a {
  color: #fff;
  display: block;
  padding: 0 24px;
  line-height: 72px;
}
.nav .nav-box .nav-item a:hover {
  background: #004073;
}

@media (max-width: 600px) {
  .header {
    min-width: unset;
    background-size: cover;
    padding-bottom: 20px;
    padding-top: 20px;
    height: auto;
    width: 100vw;
  }
  .header .mobile-btn {
    display: flex;
    flex-wrap: nowrap;
    margin-left: 10px;
  }
  .header .main-header {
    width: 100%;
  }
  .header .main-header .main-top {
    display: none;
  }
  .header .main-header .header-box {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .header .main-header .header-box .main-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .main-header .header-box .main-logo img {
    height: 50px;
    display: block;
  }
  .header .main-header .header-box .main-search {
    width: 100%;
    height: 40px;
    margin: 30px auto 10px;
  }
  .header .main-header .header-box .main-search .search-input {
    height: 40px;
    font-size: 16px;
  }
  .header .main-header .header-box .main-search .search-btn {
    white-space: nowrap;
    padding: 0 10px;
    width: 100px;
    height: 40px;
    font-size: 18px;
  }
  .nav {
    height: 40px;
    overflow-x: auto;
    min-width: unset;
  }
  .nav .nav-box {
    width: unset;
    justify-content: flex-start;
  }
  .nav .nav-box .nav-item {
    height: 40px;
    font-size: 16px;
    white-space: nowrap;
    padding: 0 10px;
  }
}/*# sourceMappingURL=header.css.map */