.l-container {
  /* header高度 */
  --l-header-height: 50px;
  /* footer高度 */
  --l-footer-height: var(--l-header-height, 50px);
  /* 侧边栏宽度 */
  --l-aside-width: 240px;
  display: flex;
  flex-flow: row nowrap;
  box-sizing: border-box;
  flex-grow: 1;
  height: 100%;
}
.l-container .l-container {
  height: calc(100% - var(--l-header-height));
}
.l-container.l-layout-vertical {
  flex-direction: column;
  width: 100%;
}
.l-aside {
  overflow: auto;
  box-sizing: border-box;
  width: var(--l-aside-width);
  flex-shrink: 0;
  border-right: 1px solid #dedede;
  padding: 10px;
}
.l-header {
  padding: 0 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--l-header-height);
}
.l-footer {
  padding: 10px;
  box-sizing: border-box;
  border-top: 1px solid #dedede;
  height: var(--l-footer-height);
}
.l-main {
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
  padding: 10px;
  flex-grow: 1;
  --webkit-overflow-scrolling: touch;
}
