html {
  overflow-x: hidden;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 3rem;
  overflow: hidden;
}
header .content {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.4s ease-in-out;
}
header .content .logo {
  width: 5.4rem;
  transition: width 0.4s ease-in-out;
}
header .content .logo.has-color {
  display: none;
}
header .content .button-tip {
  flex: 1;
  padding: 0 1rem;
  opacity: 0.6;
  font-family: PingFangSC, PingFangSC-Regular;
  transition: font-size 0.4s ease-in-out;
  text-align: right;
}
header .content .lan {
  font-family: PingFangSC, PingFangSC-Regular;
  padding: 0 0.1rem;
  opacity: 0.2;
  cursor: pointer;
  margin: 0 0.3rem;
  transition: font-size 0.4s ease-in-out;
}
header .content .lan.active {
  opacity: 1;
}
header .content .menu-icon {
  margin-left: 2rem;
}
header .content .menu-icon .icon {
  font-size: 1rem;
  color: #fff;
}
header .move-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 3rem;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}
header .move-nav .move-search {
  height: 3.5rem;
  background: #222222;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .move-nav .move-search i {
  position: absolute;
  right: 1.8rem;
  top: 1.2rem;
  color: #999999;
  font-size: 1.2rem;
}
header .move-nav .move-search input {
  width: 23rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 0.7rem;
  padding: 0 9.8rem 0 1rem;
  border-width: 1px;
  font-size: 0.7rem;
  color: #999999;
}
header .move-nav .nav {
  background: #222222;
}
header .move-nav .nav .nav-item .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.4rem;
  padding: 0 1rem;
}
header .move-nav .nav .nav-item .label span a {
  font-size: 1rem;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #ffffff;
}
header .move-nav .nav .nav-item .label i {
  display: flex;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
header .move-nav .nav .nav-item .label.open .icon {
  transform: rotate(180deg);
}
header .move-nav .nav .nav-item .label.link a {
  font-size: 1rem;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #ffffff;
}
header .move-nav .nav .nav-item ul {
  border-top: 1px solid rgba(151, 151, 151, 0.26);
  display: none;
  padding: 0 1rem;
}
header .move-nav .nav .nav-item ul > li {
  height: 2rem;
  line-height: 2rem;
}
header .move-nav .nav .nav-item ul > li a {
  opacity: 0.6;
  font-size: 0.8rem;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #ffffff;
}

header.scroll-style {
  background-color: rgba(0, 0, 0, 0.5);
  height: 2rem;
}
header.scroll-style .content {
  height: 2rem;
  font-size: 0.7rem;
}
header.scroll-style .content .logo {
  width: 4rem;
}
header.scroll-style .content .menu-icon .icon {
  font-size: 0.7rem;
}
header.scroll-style .move-nav {
  top: 2rem;
}/*# sourceMappingURL=move.css.map */