swiper-container {
  display: -webkit-box;
  display: box;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
swiper-container::-webkit-scrollbar {
  display: none;
  /* 隐藏滚动条 */
}
swiper-container swiper-slide {
  display: block;
}
.language-search-box {
  display: flex;
}
.language-box {
  margin-left: 0.6rem;
  font-size: 1rem;
  color: #333;
  position: relative;
  margin-top: -0.1rem;
}
.language-box:hover ul {
  display: block;
}
.language-box .language-box-name {
  cursor: pointer;
}
.language-box ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 0.4rem 1rem;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
}
.language-box ul li {
  font-size: 1rem;
  color: #666;
  white-space: nowrap;
  padding: 0.4rem;
  border-bottom: 1px solid #eee;
}
.language-box ul li:hover a {
  color: #000;
}
.language-box ul li:last-child {
  border-bottom: none;
}
.language-box ul li a {
  text-decoration: none;
}
.language-search-box + div {
  position: relative;
}
@media (max-width: 1023px) {
  .language-search-box {
    position: fixed;
    right: 0;
  }
  .language-box {
    display: none;
  }
  .language-box-mobile {
    display: block;
    position: absolute;
    right: 4rem;
    top: 0.4rem;
  }
}
@media (min-width: 1024px) {
  .language-box-mobile {
    display: none;
  }
}
