header {
  width: 100%;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid #eee;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 1300px;
  height: inherit;
  margin: 0 auto;
  padding: 0;
}

header .inner .navIcon {
  display: none;
}

header .inner .logo {
  display: inherit;
  width: 85px;
  height: auto;
  cursor: pointer;
}
header .inner .logo img {
  margin: 0;
}
header .inner .headerLink {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 5vw;
}
header .inner .headerLink a {
  width: 140px;
  height: 40px;
  display: inline-block;
  background: linear-gradient(106.28deg, #8560fa 0%, #44d3ef 90.81%);
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 10px;
  margin: 0 20px;
}
header .inner .headerLink a:hover {
  background: linear-gradient(103.9deg, #6941e7 1.39%, #00c9f0 97.82%);
}
header .inner .headerLink .icon-discord {
  display: none;
  align-items: center;
  cursor: pointer;
}
header .inner .headerLink .icon-discord i {
  font-size: 16px;
  margin-left: 8px;
  font-style: inherit;
}

header .inner .mlangIcon {
  display: none;
  opacity: 0;
}

header .sidebar {
  display: none;
}
/* popup */

.maskBox {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.apkDesc {
  position: absolute;
  background: #fff;
  color: #333;
  border-radius: 5px;
  top: 10vh;
  max-width: 320px;
  text-align: center;
  width: 90%;
  left: 5%;
  z-index: 9;
}
.apkDesc img {
  width: 100%;
  margin-top: -5vh;
}
.descText {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  margin: 25px 5px;
}
.descText .text1 {
  margin: 10px 0;
}
.maskBox .icon-finger {
  font-size: 38px;
  color: #1a7ce4;
  animation: Updown 1.2s linear infinite;
}
@keyframes Updown {
  25% {
    -webkit-transform: translateY(10px);
  }
  50%,
  100% {
    -webkit-transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
  }
}
@media screen and (max-width: 760px) {
  header {
    position: static;
  }
  header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  header .inner .headerLink {
    display: none;
  }
  header .inner .navIcon {
    display: block;
    width: 22px;
    height: 22px;
    margin-left: 20px;
  }
  header .inner .title {
    font-size: 20px;
  }
  header .inner .navItem {
    display: none;
  }
  header .inner .lang {
    display: none;
  }
  header .inner .mlangIcon {
    display: block;
    width: 22px;
    height: 22px;
    margin-right: 20px;
  }
  header .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  header .sidebar .content {
    background-color: #fff;
    width: 100%;
    max-width: 280px;
    height: 100%;
  }
  header .sidebar .headerLangList {
    position: absolute;
    right: 0;
    max-width: 180px;
    overflow-y: scroll;
    color: initial;
    text-align: center;
  }
  header .sidebar .content ul {
    color: #333;
  }
  header .sidebar headerLangList {
    position: absolute;
    right: 0;
    width: 180px;
    height: 100vh;
    overflow-y: scroll;
  }
  header .sidebar .content a {
    display: block;
    text-align: left;
    border-bottom: 1px solid #afb3b7;
    color: #333;
    font-size: 16px;
    width: 85%;
    height: min-content;
    margin: 0 auto;
  }
  header .sidebar .headerLangList a {
    text-align: center;
  }

  header .sidebar .content .item.active .linkList {
    display: block;
  }
  header .sidebar .content .item .text {
    text-align: center;
  }
  header .sidebar .headerLangList .item .text {
    border-bottom: 1px solid #afb3b7;
    color: #333;
    font-size: 14px;
  }

  header .sidebar .content .item .linkList {
    display: none;
  }
}
