.el-aside {
  border-right: solid 1px rgba(0 0 0 /5%);
}
.container-menu {
  display: flex;
  .main-menu-wrapper {
    height: 100vh;
    width: 68px;
    text-align: center;
    background: #f9f9f9;
    padding: 20px 0;
    box-sizing: border-box;
    overflow: auto;

    &::-webkit-scrollbar {
      display: none;
    }

    .logo {
      img {
        height: 47px;
        width: 47px;
      }
    }
    .main-menu {
      padding: 25px 0;
      .main-menu-link {
        cursor: pointer;
        opacity: 0.7;
        img {
          width: 24px;
          height: 24px;
          margin-bottom: 5px;
        }
        padding: 25px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        color: #737373;
        line-height: 20px;
        &.active {
          opacity: 1;
        }
      }
    }
  }
  .main-menu-sider {
    text-align: center;
    height: 100vh;
    overflow: auto;

    &::-webkit-scrollbar {
      display: none;
    }
    .menu-title {
      font-size: 20px;
      font-weight: 500;
      color: #9a9a9a;
      line-height: 28px;
      padding: 34px 0;
    }
    .el-menu {
      border: none;
      & > .el-sub-menu {
        margin: 15px 0;
      }
    }
    .el-menu-item,
    .el-submenu__title,
    .el-sub-menu__title {
      font-size: 14px;
      font-weight: 500;
      color: #9a9a9a;
      line-height: 33px;
      height: 33px;
      text-align: left;
      box-sizing: border-box;
      margin: 15px 0;
      padding: 0 30px !important;
      &:hover {
        background: #fff;
      }
      transition: none;
    }
    .el-sub-menu__title {
      margin: 0;
    }
    .el-menu-item-group,
    .el-submenu {
      .el-menu-item-group__title {
        display: none;
      }
      .el-menu-item {
        box-sizing: border-box;
        padding: 0 30px !important;
        text-align: center;
        min-width: auto;
      }
      .el-menu {
        margin-top: -15px;
      }
    }
    .el-sub-menu {
      .el-menu-item {
        min-width: auto;
      }
    }
    .el-menu-item.is-active {
      width: 122px;
      height: 33px;
      background: #3ac6d5;
      border-radius: 5px;
      margin: 15px 20px;
      color: #fff;
      font-weight: 400;
      padding: 0 10px !important;
    }
  }
}
.el-menu-vertical-demo:not(.el-menu--collapse) {
  width: 162px;
}
