/* rem适配基础设置 */
html {
  font-size: 16px; /* 基准字体大小 */
  background: #000;
  color: #fff;
}
/* 根据屏幕宽度动态调整rem基准值 */
@media screen and (max-width: 768px) {
  html {
    font-size: calc(16px * (100vw / 768)); /* 动态调整字体大小 */
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: calc(16px * (100vw / 480));
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow-y: auto;
}
a,a:link,a:visited,a:hover,a:active{
    text-decoration: none;
    color:inherit;
}
.header {
  padding: 0 16px;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  gap: 18px;
  background: #000;
}
.searchInputBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 36px;
  border-radius: 20px;
  background: rgba(152, 152, 152, 0.20);
  gap: 20px;
  flex: 1;
}
.searchInput {
  border: none; /* 去除边框 */
  border-radius: 4px;
  flex: 1;
  outline: none; /* 去除聚焦时的轮廓 */
  background:transparent;
  color:#fff;
  width: 79.2%;
}
.searchIcon {
  width: 24px;
  height: 24px;
}
.cancelBtn {
  font-size: 14px;
  width: 30px;
}
.main {
  padding: 12px 16px;
  box-sizing: border-box;
}
.pcNav {
  display: none !important;
}
.mobile-nav {
  display: none !important;
}
.pcHeader {
  display: none;
}

@media screen and (min-width: 768px) {
  /* body {
    padding:  0 100px;
    box-sizing: border-box;
  } */
  .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 33px;
    padding: 60px 100px;
  }
  .pcNav {
    display: flex !important;
  }
  .header {
    display: none;
  }
  .pcHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 41px;
  }
  .pcHeader img {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }
  .pcHeader h1 {
    font-size: 30px;
  }
}