.pcNav {
  width: 100%;
  height: 62px;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #000;
}
.pcNav .logo {
  width: 62px;
  height: 26px;
}
.pcNav .navItem {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.navItem[data-link="/"] {
  display: none;
}

.pcNav .navBtn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pcNav .arrowIcon {
  width: 18px;
  height: 18px;
  transition: all 0.25s linear;
}

.pcNav .searchBox {
  width: 400px;
  height: 40px;
  border-radius: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  background: rgba(152, 152, 152, 0.20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.pcNav .searchInput {
  border: none; /* 去除边框 */
  border-radius: 4px;
  flex: 1;
  outline: none; /* 去除聚焦时的轮廓 */
  background:transparent;
  color:#fff;
}
.pcNav .searchOpt {
  display: flex;
  align-items: center;
}
.pcNav .searchOpt a {
  background: linear-gradient(180deg, #FFAD31 0%, #E04E00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pcNav .dropdownBox {
  position: absolute;
  width: 180px;
  /* padding: 13px 0; */
  box-sizing: border-box;
  border-radius: 6px;
  background: #292929;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.pcNav .dropdownItem {
  height: 42px;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 14px;
}
.dropdownItem:hover {
  background: #999999;
}
.showNav .dropdownBox {
  display: block !important;
}
.showNav .arrowIcon {
  transform: rotate(180deg);
}
.searchOpt .searchLine {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.20);
  margin: 0 6px 0 18px;
}
.searchOpt .hotIcon {
  margin-right: 6px;
}


@media screen and (min-width: 768px) {
  .pcNav {
    display: flex;
  }
}

@media screen and (max-width: 1366px) {
  .pcNav {
    display: none;
  }
}

.mobile-nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 10px;
  z-index: 100;
  background-color: #000;
}

@media screen and (min-width: 1367px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-logo {
  display: inline-block;
  padding: 6px 6px 0;
}

.mobile-logo img {
  height: 24px;
}

.nav-edge {
  width: 72px;
  display: flex;
  align-items: center;
}

.mobile-nav .mobileNavTitle {
  flex: 1;
  text-align: center;
  font-size: 16px;
  margin: 0;
}

.mobile-nav button {
  padding: 6px;
}

.menu-btn {
  transform: rotate(90deg);
  transition: all 0.25s linear;
}

.menu-btn.collapsed {
  transform: rotate(0);
}

.mobile-menu {
  position: fixed;
  right: 16px;
  top: 58px;
  z-index: 100;
  max-height: calc(100vh - 100px);
  overflow: hidden scroll;
}

.mobile-menu-list {
  z-index: 100;
  min-width: 162px;
  border-radius: 6px 0 6px 6px;
  background-color: #292929;
  box-shadow: 0 0 24px 0 rgba(255, 255, 255, 0.10);
  padding: 12px 0;
  line-height: 36px;
  font-size: 14px;
}

.mobile-menu-list .menu-item {
  display: block;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-list .menu-item:active {
  background-color: #3D3D3D;
}

.mobile-menu-list .menu-item img {
  width: 18px;
  height: 18px;
  transition: all 0.25s linear;
}

.mobile-menu-list .menu-item.menu-item-link img {
  display: none;
}

.mobile-menu-list .menu-item[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.mobile-menu-subs {
  background-color: #fff;
}

.mobile-menu-subs .menu-item {
  color: #292929;
}

