/* app/web/user/css/user-header.css */

.top-nav {
  height: 64px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #ffffff;
  position: relative;
  z-index: 100;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 17px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nav-left a,
.nav-right a {
  color: inherit;
  text-decoration: none;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #00aeec;
}

.search-box {
  flex: 1;
  max-width: 560px;
  height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  z-index: 10001;
}

.search-box input {
  flex: 1;
  height: 100%;
  padding: 0 18px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #18191c;
}

.search-box button {
  width: 56px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  color: #18191c;
}

.search-box button:hover {
  background: #f1f2f3;
}

.user-header-entry {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.login-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #00aeec;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
}

.login-btn:hover {
  background: #009bd6;
}

.login-btn img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f2f3;
}

.user-popover {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 310px;
  padding: 0 18px 18px;
  transform: translateX(-50%) translateY(8px);
  border-radius: 12px;
  background: #ffffff;
  color: #18191c;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 9999;
  text-shadow: none;
}

.user-popover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.user-header-entry.is-login:hover .user-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.user-popover-avatar-wrap {
  width: 92px;
  height: 92px;
  margin: -36px auto 10px;
  padding: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.user-popover-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f1f2f3;
  object-fit: cover;
}

.user-popover-name {
  text-align: center;
  color: #18191c;
  font-size: 18px;
  font-weight: 800;
  line-height: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.user-popover-coins {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #61666d;
  font-size: 13px;
  font-weight: 500;
}

.user-popover-coins b {
  color: #18191c;
  font-weight: 700;
}

.user-level-box {
  margin-top: 14px;
}

.user-level-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.level-tag {
  flex-shrink: 0;
  color: #ff9f43;
  font-size: 12px;
  font-weight: 800;
}

.level-tag.gray {
  color: #b8bec6;
}

.level-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e3e5e7;
  overflow: hidden;
}

.level-progress-inner {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #f6b65a;
}

.level-desc {
  margin-top: 8px;
  color: #b8bec6;
  font-size: 12px;
  font-weight: 500;
}

.user-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.user-stats a {
  display: block;
  color: #18191c;
  text-decoration: none;
}

.user-stats a:hover strong,
.user-stats a:hover span {
  color: #00aeec;
}

.user-stats strong {
  display: block;
  color: #18191c;
  font-size: 18px;
  line-height: 24px;
}

.user-stats span {
  display: block;
  margin-top: 2px;
  color: #9499a0;
  font-size: 13px;
  font-weight: 500;
}

.vip-card {
  height: 64px;
  margin-top: 16px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: #fff1f5;
}

.vip-card strong {
  display: block;
  color: #fb7299;
  font-size: 15px;
  line-height: 22px;
}

.vip-card span {
  display: block;
  color: #61666d;
  font-size: 12px;
  font-weight: 500;
}

.vip-card a {
  padding: 7px 10px;
  border-radius: 7px;
  background: #ffffff;
  color: #fb7299;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.popover-menu {
  margin-top: 16px;
}

.popover-menu a,
.logout-row {
  width: 100%;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  color: #61666d;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.popover-menu a:hover,
.logout-row:hover {
  color: #00aeec;
}

.popover-menu span,
.logout-row span {
  font-size: 18px;
}

.popover-menu em,
.logout-row em {
  font-style: normal;
}

.popover-menu b {
  font-size: 22px;
  font-weight: 400;
  text-align: right;
}

.popover-line {
  height: 1px;
  margin: 8px 0;
  background: #e3e5e7;
}

.upload-btn {
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: #fb7299;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.upload-btn:hover {
  background: #ff5f8f;
}

.lang-select {
  height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: #18191c;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

/* =========================
   顶部动态下拉
========================= */

.header-dynamic-entry {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-dynamic-link {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.header-dynamic-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: #fb7299;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.header-dynamic-entry:hover .header-dynamic-link,
.header-dynamic-entry.is-open .header-dynamic-link {
  color: #00aeec;
}

.header-dynamic-entry:hover .header-dynamic-link::after,
.header-dynamic-entry.is-open .header-dynamic-link::after {
  width: 28px;
}

.header-dynamic-badge {
  position: absolute;
  right: -13px;
  top: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ff4d4f;
  color: #ffffff;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
  text-shadow: none;
}

.header-dynamic-popover {
  position: absolute;
  top: 54px;
  right: -135px;
  width: 420px;
  max-height: 620px;
  padding: 20px 20px 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #18191c;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.18s ease;
  z-index: 10000;
  text-shadow: none;
}

.header-dynamic-popover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.header-dynamic-entry:hover .header-dynamic-popover,
.header-dynamic-entry.is-open .header-dynamic-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-dynamic-title {
  color: #18191c;
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
}

.header-dynamic-subtitle {
  margin-top: 4px;
  color: #9499a0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

.header-dynamic-list {
  margin-top: 14px;
  max-height: 470px;
  overflow-y: auto;
}

.header-dynamic-list::-webkit-scrollbar {
  width: 6px;
}

.header-dynamic-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #dcdfe6;
}

.header-dynamic-item {
  min-height: 82px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 42px 1fr 92px;
  gap: 12px;
  border-bottom: 1px solid #f1f2f3;
  color: #18191c !important;
  text-decoration: none;
}

.header-dynamic-item:hover {
  background: #fafafa;
}

.header-dynamic-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f2f3;
}

.header-dynamic-main {
  min-width: 0;
}

.header-dynamic-user {
  color: #61666d;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-dynamic-desc {
  margin-top: 3px;
  color: #18191c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-dynamic-time {
  margin-top: 4px;
  color: #9499a0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.header-dynamic-cover {
  width: 92px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  background: #f1f2f3;
  align-self: center;
}

.header-dynamic-state {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9499a0;
  font-size: 14px;
  font-weight: 500;
}

.header-dynamic-more {
  height: 38px;
  margin-top: 12px;
  border-radius: 8px;
  background: #f6f7f8;
  color: #61666d !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-dynamic-more:hover {
  background: #eaf6fb;
  color: #00aeec !important;
}

/* =========================
   顶部收藏下拉
========================= */

.header-favorite-entry {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-favorite-link {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.header-favorite-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: #00aeec;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.header-favorite-entry:hover .header-favorite-link,
.header-favorite-entry.is-open .header-favorite-link {
  color: #00aeec;
}

.header-favorite-entry:hover .header-favorite-link::after,
.header-favorite-entry.is-open .header-favorite-link::after {
  width: 28px;
}

.header-favorite-popover {
  position: absolute;
  top: 54px;
  right: -150px;
  width: 620px;
  height: 610px;
  border-radius: 10px;
  background: #ffffff;
  color: #18191c;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.18s ease;
  z-index: 10000;
  text-shadow: none;
  overflow: hidden;
}

.header-favorite-popover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.header-favorite-entry:hover .header-favorite-popover,
.header-favorite-entry.is-open .header-favorite-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-favorite-layout {
  height: 548px;
  display: grid;
  grid-template-columns: 160px 1fr;
  background: #ffffff;
}

.header-favorite-folders {
  height: 100%;
  padding: 0;
  border-right: 1px solid #e3e5e7;
  background: #ffffff;
  overflow-y: auto;
}

.header-favorite-folders::-webkit-scrollbar,
.header-favorite-list::-webkit-scrollbar {
  width: 6px;
}

.header-favorite-folders::-webkit-scrollbar-thumb,
.header-favorite-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #dcdfe6;
}

.header-favorite-folder {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  color: #18191c;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.header-favorite-folder:hover {
  background: #f6f7f8;
  color: #00aeec;
}

.header-favorite-folder.active {
  background: #00aeec;
  color: #ffffff;
}

.header-favorite-folder-name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-favorite-folder-count {
  color: inherit;
  font-size: 13px;
  opacity: 0.75;
}

.header-favorite-content {
  min-width: 0;
  height: 100%;
  background: #ffffff;
}

.header-favorite-list {
  height: 100%;
  padding: 18px 20px 12px;
  overflow-y: auto;
}

.header-favorite-state {
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9499a0;
  font-size: 14px;
  font-weight: 500;
}

.header-favorite-item {
  height: 92px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  color: #18191c !important;
  text-decoration: none;
}

.header-favorite-item + .header-favorite-item {
  margin-top: 16px;
}

.header-favorite-cover-wrap {
  position: relative;
  width: 150px;
  height: 84px;
  border-radius: 6px;
  overflow: hidden;
  background: #f1f2f3;
}

.header-favorite-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header-favorite-duration {
  position: absolute;
  right: 6px;
  bottom: 5px;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
}

.header-favorite-info {
  min-width: 0;
  padding-top: 2px;
}

.header-favorite-title {
  color: #18191c;
  font-size: 15px;
  line-height: 21px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-favorite-item:hover .header-favorite-title {
  color: #00aeec;
}

.header-favorite-meta {
  margin-top: 10px;
  color: #9499a0;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-favorite-meta .up-tag {
  flex-shrink: 0;
  height: 16px;
  padding: 0 3px;
  border: 1px solid #c9ccd0;
  border-radius: 3px;
  color: #9499a0;
  font-size: 10px;
  line-height: 14px;
}

.header-favorite-footer {
  height: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e3e5e7;
  background: #ffffff;
}

.header-favorite-footer a,
.header-favorite-footer button {
  border: 0;
  background: transparent;
  color: #61666d !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-favorite-footer a {
  border-right: 1px solid #e3e5e7;
}

.header-favorite-footer a:hover,
.header-favorite-footer button:hover {
  color: #00aeec !important;
  background: #f6f7f8;
}

.header-favorite-footer button span {
  margin-right: 8px;
  color: #00aeec;
  font-size: 18px;
}

.header-favorite-footer button:disabled {
  color: #c9ccd0 !important;
  cursor: not-allowed;
}

.header-favorite-footer button:disabled span {
  color: #c9ccd0;
}

/* =========================
   顶部历史下拉
========================= */

.header-history-entry {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-history-link {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.header-history-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: #00aeec;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.header-history-entry:hover .header-history-link,
.header-history-entry.is-open .header-history-link {
  color: #00aeec;
}

.header-history-entry:hover .header-history-link::after,
.header-history-entry.is-open .header-history-link::after {
  width: 28px;
}

.header-history-popover {
  position: absolute;
  top: 54px;
  right: -120px;
  width: 430px;
  height: 560px;
  border-radius: 10px;
  background: #ffffff;
  color: #18191c;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.18s ease;
  z-index: 10000;
  text-shadow: none;
  overflow: hidden;
}

.header-history-popover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.header-history-entry:hover .header-history-popover,
.header-history-entry.is-open .header-history-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-history-tabs {
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e3e5e7;
  background: #ffffff;
}

.header-history-tab {
  width: 120px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #18191c;
  font-size: 15px;
  font-weight: 700;
  cursor: default;
  position: relative;
}

.header-history-tab.active {
  color: #00aeec;
}

.header-history-tab.active::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #00aeec;
}

.header-history-list {
  height: 448px;
  padding: 14px 14px 6px;
  overflow-y: auto;
  background: #ffffff;
}

.header-history-list::-webkit-scrollbar {
  width: 6px;
}

.header-history-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #dcdfe6;
}

.header-history-state {
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9499a0;
  font-size: 14px;
  font-weight: 500;
}

.header-history-item {
  min-height: 94px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  color: #18191c !important;
  text-decoration: none;
}

.header-history-item + .header-history-item {
  margin-top: 14px;
}

.header-history-cover-wrap {
  position: relative;
  width: 150px;
  height: 84px;
  border-radius: 6px;
  overflow: hidden;
  background: #f1f2f3;
}

.header-history-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header-history-cover-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.header-history-duration {
  position: absolute;
  right: 6px;
  bottom: 5px;
  z-index: 2;
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.header-history-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  max-width: 100%;
  background: #fb7299;
}

.header-history-info {
  min-width: 0;
  padding-top: 2px;
}

.header-history-title {
  color: #18191c;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-history-item:hover .header-history-title {
  color: #00aeec;
}

.header-history-meta {
  margin-top: 8px;
  color: #9499a0;
  font-size: 12px;
  line-height: 18px;
}

.header-history-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-history-meta-row + .header-history-meta-row {
  margin-top: 2px;
}

.header-history-up-tag {
  flex-shrink: 0;
  height: 16px;
  padding: 0 3px;
  border: 1px solid #c9ccd0;
  border-radius: 3px;
  color: #9499a0;
  font-size: 10px;
  line-height: 14px;
}

.header-history-more {
  height: 56px;
  border-top: 1px solid #e3e5e7;
  background: #ffffff;
  color: #61666d !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-history-more:hover {
  color: #00aeec !important;
  background: #f6f7f8;
}

/* =========================
   顶部搜索热搜下拉
========================= */

.header-search-popover {
  position: absolute;
  left: 0;
  right: 0;
  top: 52px;
  min-height: 270px;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  color: #18191c;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.18s ease;
  z-index: 10002;
  text-shadow: none;
}

.header-search-popover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.search-box.is-rank-open .header-search-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-search-head {
  height: 26px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-search-head strong {
  color: #18191c;
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
}

.header-search-head span {
  color: #9499a0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.header-search-list {
  display: grid;
  gap: 2px;
}

.header-search-item {
  height: 35px;
  padding: 0 6px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  color: #18191c !important;
  text-decoration: none;
}

.header-search-item:hover {
  background: #f6f7f8;
}

.header-search-item:hover .header-search-keyword {
  color: #00aeec;
}

.header-search-no {
  color: #c9ccd0;
  font-size: 17px;
  line-height: 35px;
  font-style: italic;
  font-weight: 800;
}

.header-search-no.top1 {
  color: #ff9f43;
}

.header-search-no.top2 {
  color: #8aa9e8;
}

.header-search-no.top3 {
  color: #d98f5f;
}

.header-search-keyword {
  min-width: 0;
  color: #18191c;
  font-size: 14px;
  line-height: 35px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-search-count {
  color: #9499a0;
  font-size: 12px;
  line-height: 35px;
  font-weight: 500;
}

.header-search-state {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9499a0;
  font-size: 14px;
  font-weight: 500;
}