html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  position: relative;
  font-size: 14px;
  color: #333;
  letter-spacing: 2px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, Helvetica Neue, Arial, PingFang SC, PingFang TC, PingFang HK, Microsoft Yahei, Microsoft JhengHei;
}

body {
  background-image: url('/static/image/bg1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(16px);
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.layout-screen {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.global-flex {
  display: flex;
  align-items: center;
}

.global-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------------------------------ */

.layout-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.aside-logo {
  font-size: 22px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  /* color: #fff;
  text-shadow: 2px 2px 4px rgba(219, 0, 44, 0.32);  */
}

.aside-menu {
  height: 80px;
}

.aside-menu .item {
  display: block;
  /* color: hsla(0, 0%, 96.1%, .6); */
  /* color: #fff; */
  color: rgba(0, 0, 0, 0.4);
  margin-left: 24px;
}

.aside-menu .item:hover,
.aside-menu .item.active {
  /* color: #fff;
  text-shadow: 2px 2px 4px rgba(219, 0, 44, 0.32);  */
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

.aside-menu .item a {
  padding: 5px 10px;
}

.layout-main {
  height: 100%;
  position: relative;
  z-index: 1;
}

.layout-footer {
  font-size: 12px;
  /* color: hsla(0, 0%, 96.1%, .6); */
  color: rgba(0, 0, 0, 0.8);
  line-height: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}