/* 使页脚背景透明 */
#footer {
  background: transparent !important; /* 透明背景 */
  background-color: transparent !important; /* 兼容部分主题版本 */
  border-top: none !important; /* 去除顶部边框（如果有） */
  box-shadow: none !important; /* 去除阴影（如果有） */
}
/* 导航栏做居中处理 */
#nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
}

/* 去除导航栏选项中底下的蓝条 */
#nav *::after {
  background-color: transparent !important;
}

/* 导航栏菜单鼠标移入字体放大 */
#nav #site-name:hover,
#nav .menus_item:hover,
#nav #search-button:hover {
  font-size: 28px;
}
