/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* 主色调 */
/* 字体 */
/* 圆角 */
/* 阴影 */
/* 按钮 */
/* 面包屑 */
/* 标签页*/
/* 单选框 */
/* 复选 */
/* 输入 */
/* 步骤条 */
/* 开关 */
/* 对话框 */
/* 抽屉 */
/* 气泡卡片 */
/* 全局提示 */
/* 卡片 */
/* 加载 */
/* 表单 */
/* 表格 */
/* 选择器 */
/* 穿梭框 */
/* 文字提示 */
/* 时间控件 下拉面板 */
.bonree-layout {
  display: flex;
  flex: auto;
  flex-direction: column;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
  background: #f0f2f5;
}
.bonree-layout,
.bonree-layout * {
  box-sizing: border-box;
}
.bonree-layout.bonree-layout-has-sider {
  flex-direction: row;
}
.bonree-layout.bonree-layout-has-sider > .bonree-layout,
.bonree-layout.bonree-layout-has-sider > .bonree-layout-content {
  width: 0;
}
.bonree-layout-header,
.bonree-layout-footer {
  flex: 0 0 auto;
}
.bonree-layout-header {
  height: 64px;
  padding: 0 50px;
  color: #172634;
  line-height: 64px;
  background: #001529;
}
.bonree-layout-footer {
  padding: 24px 50px;
  color: #172634;
  font-size: 12px;
  background: #f0f2f5;
}
.bonree-layout-content {
  flex: auto;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
}
.bonree-layout-sider {
  position: relative;
  /* fix firefox can't set width smaller than content on flex item */
  min-width: 0;
  background: #001529;
  transition: all 0.2s;
}
.bonree-layout-sider-children {
  height: 100%;
  margin-top: -0.1px;
  padding-top: 0.1px;
}
.bonree-layout-sider-children .bonree-menu.bonree-menu-inline-collapsed {
  width: auto;
}
.bonree-layout-sider-has-trigger {
  padding-bottom: 48px;
}
.bonree-layout-sider-right {
  order: 1;
}
.bonree-layout-sider-trigger {
  position: fixed;
  bottom: 0;
  z-index: 1;
  height: 48px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  background: #002140;
  cursor: pointer;
  transition: all 0.2s;
}
.bonree-layout-sider-zero-width > * {
  overflow: hidden;
}
.bonree-layout-sider-zero-width-trigger {
  position: absolute;
  top: 64px;
  right: -36px;
  z-index: 1;
  width: 36px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  background: #001529;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.bonree-layout-sider-zero-width-trigger::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  transition: all 0.3s;
  content: '';
}
.bonree-layout-sider-zero-width-trigger:hover::after {
  background: rgba(255, 255, 255, 0.1);
}
.bonree-layout-sider-zero-width-trigger-right {
  left: -36px;
  border-radius: 3px 0 0 3px;
}
.bonree-layout-sider-light {
  background: #fff;
}
.bonree-layout-sider-light .bonree-layout-sider-trigger {
  color: #172634;
  background: #fff;
}
.bonree-layout-sider-light .bonree-layout-sider-zero-width-trigger {
  color: #172634;
  background: #fff;
}
.bonree-layout-rtl {
  direction: rtl;
}
