/* Sdoclub One - 顶部导航模块
 * 仅负责新增顶部一级导航与响应式适配，不覆盖 default 原有业务样式。
 */
.sdoclub-one-header {
  position: relative;
  z-index: 1001;
}

.sdoclub-one-topnav {
  position: absolute;
  left: 250px;
  right: 290px;
  top: 0;
  height: 70px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.sdoclub-one-topnav__scroll {
  width: 100%;
  pointer-events: auto;
}

.sdoclub-one-topnav__items {
  height: 46px;
  display: flex;
  align-items: stretch;
  gap: 2px;
  padding: 4px 6px;
  background: rgba(255,255,255,.96);
  border: 1px solid #eef0f6;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(31,45,61,.04);
  overflow: visible;
}

.sdoclub-one-topnav__item {
  position: relative;
  min-width: 86px;
  height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #495057;
  font-size: 13px;
  line-height: 36px;
  text-decoration: none !important;
  border-radius: 6px;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}

.sdoclub-one-topnav__item i {
  font-size: 15px;
}

.sdoclub-one-topnav__item:hover,
.sdoclub-one-topnav__item.active {
  color: #5564f2;
  background: #f0f1ff;
}

.sdoclub-one-topnav__item.active::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: #5564f2;
}

.sdoclub-one-topnav__more {
  position: relative;
}

.sdoclub-one-topnav__hot {
  position: absolute;
  top: -6px;
  right: -3px;
  min-width: 25px;
  height: 14px;
  padding: 0 4px;
  border-radius: 7px;
  background: #ff4d67;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
}

.sdoclub-one-topnav__dropdown-menu {
  min-width: 170px;
  margin-top: 5px;
  padding: 6px;
  border: 1px solid #edf0f5;
  box-shadow: 0 8px 24px rgba(31,45,61,.10);
  border-radius: 8px;
}

.sdoclub-one-topnav__dropdown-menu .dropdown-item {
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 13px;
}

.sdoclub-one-topnav__dropdown-menu .dropdown-item i {
  width: 20px;
  margin-right: 4px;
}

/* tablet */
@media (max-width: 1199px) {
  .sdoclub-one-topnav {
    left: 215px;
    right: 235px;
  }
  .sdoclub-one-topnav__item {
    min-width: 72px;
    padding: 0 8px;
  }
}

/* mobile: the desktop top navigation becomes a horizontal touch strip below header */
@media (max-width: 767.98px) {
  .sdoclub-one-header {
    height: 56px;
  }

  .sdoclub-one-header .navbar-header {
    min-height: 56px;
  }

  .sdoclub-one-header .navbar-brand-box {
    display: flex !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 5px 0 8px;
  }

  .sdoclub-one-header .logo-dark,
  .sdoclub-one-header .logo-light {
    display: flex;
    align-items: center;
  }

  .sdoclub-one-header .logo-lg {
    display: none !important;
  }

  .sdoclub-one-header .logo-sm {
    display: inline-flex !important;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
  }

  .sdoclub-one-header .logo-sm img {
    max-width: 32px;
    max-height: 32px;
    width: auto;
    height: auto;
  }

  .sdoclub-one-header #vertical-menu-btn {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }

  .sdoclub-one-topnav {
    position: fixed;
    left: 0;
    right: 0;
    top: 56px;
    height: 54px;
    padding: 5px 8px;
    background: #fff;
    border-bottom: 1px solid #edf0f5;
    box-shadow: 0 2px 8px rgba(31,45,61,.05);
    z-index: 1000;
  }

  .sdoclub-one-topnav__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sdoclub-one-topnav__scroll::-webkit-scrollbar {
    display: none;
  }

  .sdoclub-one-topnav__items {
    width: max-content;
    min-width: 100%;
    height: 44px;
    padding: 3px;
    border: 0;
    box-shadow: none;
    background: #fff;
    gap: 2px;
  }

  .sdoclub-one-topnav__item {
    min-width: 76px;
    height: 38px;
    padding: 0 10px;
    flex-direction: column;
    gap: 1px;
    font-size: 11px;
    line-height: 15px;
  }

  .sdoclub-one-topnav__item i {
    font-size: 16px;
    line-height: 16px;
  }

  .sdoclub-one-topnav__item.active::after {
    left: 22px;
    right: 22px;
    bottom: -1px;
  }

  .sdoclub-one-topnav__hot {
    top: -2px;
    right: 5px;
    font-size: 7px;
  }

  .sdoclub-one-topnav__dropdown-menu {
    position: fixed !important;
    top: 104px;
    right: 8px;
    left: auto;
    margin: 0;
  }

  .main-content {
    padding-top: 54px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .sdoclub-one-topnav {
    left: 205px;
    right: 185px;
  }
  .sdoclub-one-topnav__item {
    min-width: 62px;
    padding: 0 6px;
    font-size: 12px;
  }
}
