.site-header {
  width: 100%;
  height: 167px;
  background: url('../images/header_bg.png') center top no-repeat;
  /* background-size: 1884px 167px; */
  background-size: 100% 167px;
  max-width: 1884px;
  min-width: var(--width);
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 87px;
  width: auto;
}

.search-box {
  position: relative;
  width: 150px;
  height: 34px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 33px;
  display: flex;
  align-items: center;
  padding: 0 40px 0 12px;
  margin-top: -100px;
}

.search-box input {
  flex: 1;
  height: 100%;
  width: 100px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #fff;
}

.search-box input::placeholder {
  color: #fff;
}

.search-box .search-btn {
  position: absolute;
  right: -15px;
  top: 17px;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #C6292D;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.search-box .search-btn img {
  width: 19px;
  height: 19px;
}

.site-nav {
  width: 100%;
  max-width: 1884px;
  margin: 0 auto;
  height: 54px;
  background: #001C86;
}

.site-nav .container {
  height: 54px;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  width: 100%;
}

.nav-list li {
  flex: 1 1 0;
}

.nav-list a {
  display: block;
  height: 54px;
  line-height: 54px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  padding: 0;
  text-align: center;
}

.nav-list a:hover,
.nav-list a.active {
  background: #1763AE;
}