.wrapper-content {
  width: 100%;
  display: flex;
}
aside {
  width: 240px;
  transition: 0.3s;
}
aside .aside {
  width: 240px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: #343C5D;
  padding-top: 70px;
  transition: 0.3s;
  overflow-x: hidden;
  padding-bottom: 100px;
}
aside .aside::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
aside .aside::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
aside .aside .back {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
aside .aside .back button:hover i {
  transform: scale(0.9);
}
aside .aside .back button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
aside .aside .back button i {
  color: #ccc;
  font-size: 16px;
  transition: 0.1;
}
aside .aside .menuList {
  width: 240px;
}
aside .aside .menuList .menu[active='true'] {
  background: rgba(255, 255, 255, 0.1);
}
aside .aside .menuList .menu.active {
  background: rgba(255, 255, 255, 0.17);
  border-color: #F39D18;
}
aside .aside .menuList .menu:hover {
  background: rgba(255, 255, 255, 0.05);
}
aside .aside .menuList .menu {
  display: flex;
  align-items: center;
  height: 45px;
  padding-left: 35px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  border-left: solid 4px transparent;
}
aside .aside .menuList .menu i {
  font-size: 20px;
}
aside .aside .menuList .menu .icon {
  display: flex;
  align-items: center;
}
aside .aside .menuList .menu .icon img {
  width: 20px;
}
aside .aside .menuList .menu span {
  font-size: 14px;
  padding-left: 10px;
  white-space: nowrap;
}
aside .aside .tip {
  width: 240px;
  padding: 10px 0;
  font-size: 14px;
  color: #999;
  padding-left: 35px;
  box-sizing: border-box;
}
.showAsideBtn {
  position: fixed;
  left: 0;
  top: 100px;
  display: none;
  z-index: 99;
}
.showAsideBtn button:hover {
  transform: scale(1.1);
}
.showAsideBtn button {
  width: 36px;
  height: 36px;
  background-color: #343C5D;
  border-radius: 0 36px 36px 0;
  color: #fff;
  font-size: 18px;
}
main {
  flex: 1;
  padding-top: 60px;
}
