.webNav {
  margin: 0 5vw;
}
.menu-header-container ul {
  display: flex;
  font-size: 18px;
  font-weight: 500;
}
.menu-header-container ul li {
  margin: 0 15px;
  cursor: pointer;
}
.header .inner {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  padding: 0;
}

.header .inner .navIcon {
  display: none;
}

.header .inner .logo-ct {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
}

.header .inner .logo {
  width: 34px;
  height: 34px;
  margin: 0 10px;
  cursor: pointer;
}

.header .inner .logo-ct .title {
  font-size: 20px;
  font-weight: 700;
}

.header .inner .download-text {
  margin-right: 5%;
  color: #4a4a4a;
  font-weight: bold;
  font-size: 16px;

  font-style: normal;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.header .inner .lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-left: auto;
  cursor: pointer;
}

.header .inner .lang:hover .itemList {
  display: block;
}

.header .inner .lang .text {
  margin-right: 10px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.header .inner .lang .itemList {
  position: absolute;
  top: 60px;
  width: 120px;
  display: none;
  padding: 10px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  z-index: 9;
}

.header .inner .lang .itemList a {
  display: block;
  width: 100%;
  height: 40px;
  letter-spacing: 1px;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: center;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 40px;
}

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

.header .sidebar {
  display: none;
}

@keyframes Updown {
  25% {
    -webkit-transform: translateY(10px);
  }
  50%,
  100% {
    -webkit-transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
  }
}
@media screen and (max-width: 760px) {
  .webNav {
    margin: unset;
  }

  .header .inner {
    justify-content: space-between;
    max-width: 100%;
  }
  .header .inner .navIcon {
    display: block;
    margin-left: 20px;
  }
  .header .inner .logo {
    width: 30px;
    height: 30px;
    margin: 0 5px;
  }
  .header .inner .logo-ct .title {
    font-size: 16px;
  }
  .header .inner .navItem {
    display: none;
  }
  .header .inner .lang {
    display: none;
  }
  .header .inner .mlangIcon {
    display: block;
    margin-right: 20px;
  }
  .header .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .header .sidebar .content {
    background-color: #fff;
    width: 180px;
  }
  .menu-header-container ul {
    display: block;
    font-weight: 400;
  }

  .menu-header-container ul li {
    font-size: 16px;
    border-bottom: 1px solid #e7ecf0;
    margin: 0;
  }
  .menu-header-container ul li:last-child {
    border-bottom: none;
  }
  .menu-header-container ul li a,
  .header .sidebar .headerLangList a {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #333;
    text-align: center;
    border-bottom: 1px dotted #5869ea;
  }
  .header .sidebar .headerLangList {
    position: absolute;
    right: 0;
    width: 180px;
    height: 100vh;
    overflow-y: scroll;
  }

  .header .sidebar .headerLangList .item .text {
    border-bottom: 1px solid #afb3b7;
    color: #333;
    font-size: 14px;
  }

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