.header {
  width: 100%;
  min-width: 1050px;
  height: 150px;
  background-size: 100% 100%;
  background: #2F2C2D;
  opacity: 0.9;
  display: flex;
  justify-content: center;
}
.header-container {
  width: 1050px;
  height: 100%;
  display: flex;
}
.header-container-logo {
  width: 283px;
  min-width: 283px;
  height: 75px;
  background-size: 100% 100%;
  margin: 39px 126px 0 0;
}
.header-container-channel-nav-ipt {
  position: absolute;
  background: transparent;
  outline: none;
  border: none;
  height: 40px;
  width: calc(100% - 23px);
  margin-left: 13px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-family: SourceHanSansSC, SourceHanSansSC;
  font-weight: 400;
  color: #BC9B73;
  line-height: 30px;
  letter-spacing: 1px;
}
.header-container-channel-nav-ipt:focus {
  opacity: 1;
}
.header-container-nav {
  width: 100%;
}
.header-container-nav-search {
  width: 45px;
  height: 34px;
  background-color: rgba(188, 155, 115, 0.12);
  border-radius: 23px;
  border: 1px solid #644013;
  margin: 20px 0 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: width 0.2s ease-in-out;
  position: relative;
}
.header-container-nav-search:hover {
  width: 150px;
}
.header-container-nav-search:hover .header-container-nav-search-img {
  opacity: 0;
  z-index: -1;
}
.header-container-nav-search:hover .header-container-channel-nav-ipt {
  opacity: 1;
}
.header-container-nav-search:focus-within {
  width: 150px;
}
.header-container-nav-search:focus-within .header-container-nav-search-img {
  opacity: 0;
}
.header-container-nav-search-img {
  width: 22px;
  height: 22px;
  z-index: 1;
  transition: opacity 250ms ease-in-out;
}
.header-container-nav-navbar {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header-container-nav-navbar > div {
  display: flex;
  flex-direction: column;
}
.header-container-nav-navbar-img {
  display: flex;
  justify-content: center;
}
.header-container-nav-navbar-tit {
  height: 20px;
  font-family: SourceHanSansSC, SourceHanSansSC;
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 22px;
  letter-spacing: 1px;
  text-align: center;
  font-style: normal;
  display: block;
}
.header-container-nav-navbar-tit:last-child {
  margin-right: 0;
}
.header-container-nav-navbar img {
  width: 31px;
  height: 10px;
  margin-top: 10px;
}
