/**
 * @Author   swcn-tlj
 * @Date    2024-01-09
 */
/**
 * @Author   swcn-tlj
 * @Date     2024-01-09
 */
html, body {
  height: 100%;
}

.sw-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0 auto;
}

.sw-layout-head,
.sw-layout-foot {
  flex-shrink: 0;
}

.sw-layout-body {
  flex: 1;
}

.sw-layout-head {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 300;
  width: 100%;
  height: auto;
  max-width: 1920px;
  transform: translateX(-50%);
  transition: .3s;
}

.sw-layout-head.sw-hide-top {
  transform: translate(-50%, -10rem);
}

.sw-layout-head.sw-z-down {
  z-index: 100;
}

.sw-layout-scroll {
  height: 100vh;
}

.sw-layout-scroll .sw-layout-body {
  overflow: hidden;
}
