.layout_header_box {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
}
.header_activity_notice {
  display: flex;
  height: 42px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #000;
}
.header_activity_notice span {
  cursor: pointer;
  user-select: none;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header_activity_notice span:hover {
  color: var(--hoverTextColor);
  text-decoration: underline;
}
.header_main {
  display: flex;
  height: 64px;
  padding: 0 32px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.header_main .header_menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1 0 0;
  align-self: stretch;
}
.header_main .header_menu .menu_item {
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.header_main .header_menu .menu_item span {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header_main .header_logo {
  cursor: pointer;
  user-select: none;
  display: flex;
  width: 130px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.header_main .header_logo i {
  width: 111px;
  height: 40px;
  mask-size: cover;
  mask-image: url(../svg/logo.svg);
  mask-position: center center;
  background-color: #000;
}
.header_main .header_user {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
}
.header_main .header_user .user_item {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
}
.header_main .header_user .user_item i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: #000;
}
.header_main .header_user .user_item i.icon_search {
  mask-image: url(../svg/icon_search.svg);
}
.header_main .header_user .user_item i.icon_user {
  mask-image: url(../svg/icon_user.svg);
}
.header_main .header_user .user_item i.icon_shopping {
  mask-image: url(../svg/icon_shopping.svg);
}
