.pcNav {
  width: 100%;
  min-height: 140px;
  padding: 18px 36px;
  box-sizing: border-box;
  background: #212121;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.pcNav .pcLogo {
  width: 89px;
  height: 29px;
}
.pcNavList {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  padding-left: 10px;
  /* overflow-y: auto;
  height: 100%; */
}
.pcNavItem {
  padding: 9px;
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 52px;
  position: relative;
}
.subNavBox {
  position: absolute;
  border-radius: 10px;
  background: #000;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 999;
}



.subNavItem {
  width: 180px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navDownArrow {
  width: 16px;
  height: 16px;
}
.navOptBox {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* .navOptBox img {
  width: 45px;
  height: 45px;
} */
.navOptBox .navSearchBtn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgb(56, 56, 56);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.navSearchBtn img {
  width: 22px;
  height: 22px;
}
.navSearchBox {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 328px;
  background: #000;
  border-radius: 10px;
  padding: 0 18px;
  box-sizing: border-box;
  display: none;
}
.pcNavOptItem {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgb(56, 56, 56);
  display: flex;
  align-items: center;
  justify-content: center;
}
img {
  width: 22px;
  height: 22px;
}
.navSearchInputBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
}
.navSearchIcon {
  width: 34px;
  height: 34px;
}
.navSearchInput:focus {
  outline: none;
  border: none;
}
.navSearchInput {
  padding: 0 10px;
  border-radius: 4px;
  flex: 1;
  border: none;
  outline: none;
  background:transparent;
  color:#fff;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.searchHistroyTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  padding: 14px 0 18px;
  color: #888888;
}
.searchHistroyList {
  padding: 17px 0 6px;
  box-sizing: border-box;
  border-top: 1px solid #ffffff19;
  border-bottom: 1px solid #ffffff19;
  display: flex;
  flex-wrap: wrap;
  row-gap: 11px;
  column-gap: 16px;
}
.historyItem {
  padding: 0 16px;
  box-sizing: border-box;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #bababa;
  border-radius: 5px;
  border: 1px solid #bababa;
}
.hotSerachTitle {
  font-size: 18px;
  color: #888888;
  margin: 37px 0 18px;
}
.hotSearchItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  font-size: 16px;
}
.hotSearchItem .topIcon {
  width: 34px;
  height: 34px;
}
.hotSearchItem .topNum {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
}
.hotSearchTitle {
  width: 202px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 10px;
}
.hotCount {
  color: #ffba00;
}
.navSearchContent {
  max-height: 700px;
  overflow-y: auto;
}
.show {
  display: block;
}
@media screen and (min-width: 768px) {
  .pcNav {
    display: flex;
  }
}