/******** radius *******/
/******** 间隙 *******/
/******** fontSize *******/
/******** 组件尺寸 *******/
/******** z-index *******/
/******** borderSize *******/
/******** borderStyle *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontWeight ********/
/******** Animation *******/
/******** color *******/
/******** diff *******/
/******** icon hover *******/
/******** media *******/
.pd-Layout {
  display: flex;
  flex: 1;
  margin: 0;
  padding: 0;
  flex-direction: column;
  height: 100%;
}
.pd-Layout-sider {
  position: relative;
  width: auto;
  margin: 0;
  padding: 0;
  flex: none;
  background: var(--color-bg-1);
  transition: width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.pd-Layout-sider-children {
  height: 100%;
  overflow: auto;
}
.pd-Layout-sider-collapsed .pd-Layout-sider-children {
  /* width */
}
.pd-Layout-sider-collapsed .pd-Layout-sider-children::-webkit-scrollbar {
  width: 0;
}
.pd-Layout-sider-has-trigger {
  padding-bottom: 48px;
  box-sizing: border-box;
}
.pd-Layout-sider-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-fill-1);
  cursor: pointer;
  transition: width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
  z-index: 1;
  overflow: hidden;
}
.pd-Layout-sider-trigger-light {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-bg-5);
  color: var(--color-text-1);
}
.pd-Layout-sider-light {
  background: var(--color-bg-2);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08);
}
.pd-Layout-header {
  margin: 0;
  flex: 0 0 auto;
  box-sizing: border-box;
  z-index: 100;
}
.pd-Layout-content {
  flex: 1;
}
.pd-Layout-footer {
  flex: 0 0 auto;
  margin: 0;
}
.pd-Layout-has-sider {
  flex-direction: row;
}
.pd-Layout-has-sider > .pd-Layout,
.pd-Layout-has-sider > .pd-Layout-content {
  overflow-x: hidden;
}
