// 主体
.app-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #f0f2f5;
  // 折叠菜单
  &.hideSidebar {
    .#{$namespace} {
      &-sidebar {
        width: 64px;
      }
      &-container {
        width: calc(100% - 64px);
        margin-left: 64px;
      }
      &-header {
        width: 100%;
      }
    }
  }
}
