header {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 9;
}
.home-header {
  background: unset;
}
.header-scroll .inner,
.header-post .inner {
  background-color: rgba(242, 244, 245, 0.9);
  backdrop-filter: blur(50px);
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: inherit;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  gap: clamp(8px, -66.24px + 9.047vw, 64px);
  min-width: 878px;
}
header .inner .navIcon {
  display: none;
  justify-content: center;
  align-items: center;
}
header .inner .navIcon img {
  margin: 0;
}
header .inner-left {
  display: flex;
  align-items: center;
  gap: clamp(8px, -66.24px + 9.047vw, 64px);
}

header .inner .logo {
  display: inherit;
  width: 88px;
  height: 32px;
  cursor: pointer;
}
header .inner .logo img {
  margin: 0;
}

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

header .headerLink .menu ul,
header .headerLink ul.menu {
  display: flex;
  gap: clamp(8px, -66.24px + 9.047vw, 64px);
}

header .headerLink .menu li {
  font-size: 18px;
  cursor: pointer;
  color: #0a0a0a;
  transition: all 0.3s;
  white-space: nowrap;
}

header .headerApp {
  width: 123px;
  height: 36px;
  display: flex;
  cursor: pointer;
}

header .headerApp img {
  margin: 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;
}
.header-customPage .headerLink .menu li a {
  color: #fff;
}
.header-customPage.header-scroll .headerLink .menu li a {
  color: #0a0a0a;
}
@keyframes Updown {
  25% {
    -webkit-transform: translateY(10px);
  }
  50%,
  100% {
    -webkit-transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
  }
}
@media screen and (max-width: 820px) {
  header {
    position: static;
  }
  header.header-scroll {
    position: fixed;
  }
  header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    min-width: unset;
    height: 48px;
  }
  header .inner .headerLink {
    display: none;
  }
  header .inner .logo {
    position: absolute;
    left: 58px;
  }
  header .headerApp {
    width: 82px;
    height: 24px;
  }
  header .inner .navIcon {
    display: flex;
    width: 22px;
    height: 22px;
  }
  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;
  }
}
