.container {
  width: 100vw;
  overflow: hidden;
}
.container .header-box {
  width: 100vw;
}
.container .header-box .header {
  height: 81px;
}
.container .header-box .header .head {
  height: 81px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .header-box .header .head-left {
  width: 100%;
  height: 81px;
  padding: 18px;
  position: relative;
}
.container .header-box .header .head-left .title {
  font-size: 18px;
  font-family: Square721 BT, Square721 BT;
  font-weight: normal;
  color: #ffffff;
}
.container .header-box .header .head-left .menu {
  position: absolute;
  opacity: 1;
  z-index: 1;
  top: 32px;
  right: 24px;
}
.container .header-box .header .nav-list {
  top: 81px;
  right: 0;
  bottom: 0;
  position: fixed;
  flex-direction: column;
  background-color: #928c8c;
  z-index: 1000;
  height: 336px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: all 0.25s;
}
.container .header-box .header .nav-list.show {
  transform: translateX(0);
}
.container .header-box .header .nav-list .our-server {
  color: #000000;
  height: 56px;
  line-height: 56px;
  margin-left: 20px;
}
.container .header-box .header .nav-list .nav-i {
  background-color: #fff;
  flex-shrink: 0;
  flex-direction: column;
  width: 194px;
  height: 56px;
  overflow: hidden;
  border-bottom: 1px solid #ECECEC;
}
.container .header-box .header .nav-list .nav-i.active > a {
  color: #2D5EC4;
}
.container .header-box .header .nav-list .nav-i.active .our-server {
  color: #2D5EC4;
}
.container .header-box .header .nav-list .nav-i:last-of-type {
  border-bottom: none;
}
.container .header-box .header .nav-list .nav-i a {
  height: 56px;
  line-height: 56px;
  color: #000000;
  margin-left: 20px;
}
.container .header-box .header .nav-list .nav-i.open {
  height: 504px;
}
.container .header-box .header .nav-list .nav-i .menu {
  width: 194px;
  height: 448px;
  background-color: #F5F7FF;
}
.container .header-box .header .nav-list .nav-i .menu li {
  border-bottom: 1px solid #ECECEC;
}
.container .header-box .header .nav-list .nav-i .menu li:last-of-type {
  border-bottom: none;
}
.container .header-box .header .nav-list .nav-i .menu li a {
  margin-left: 38px;
  color: #595959;
}
.container .header-box .header .nav-list .nav-i .menu li a.active {
  color: #2d5ec4;
}
