/* 页脚与头图透明 */
#footer {
  background: transparent !important;
}
#page-header {
  background: transparent !important;
}

/* 白天模式遮罩透明 */
#footer::before {
  background: transparent !important;
}
#page-header::before {
  background: transparent !important;
}

/* 夜间模式遮罩透明 */
[data-theme="dark"] #footer::before {
  background: transparent !important;
}
[data-theme="dark"] #page-header::before {
  background: transparent !important;
}


/* 一级菜单居中 */
#nav .menus_items {
  position: absolute !important;
  width: fit-content !important;
  left: 50% !important;
  transform: translate(-50%, -12px) !important;
  font-size: 26px !important;
}
#nav .menus_items .menus_item {
  margin: 0 8px !important;
  color: rgb(70, 212, 255) !important;
}

/* 站点名字体大小 */
#nav .site-name {
  font-size: 28px !important;
  position: relative;
  top: 12px;
  color: rgb(255, 195, 255);
}
/* 子菜单横向展示 */
#nav .menus_items .menus_item:hover .menus_item_child {
  display: flex !important;
}
/* 这里的2是代表导航栏的第2个元素，即有子菜单的元素，可以按自己需求修改 */
.menus_items .menus_item:nth-child(2) .menus_item_child {
  left: -125px;
}

/* 隐藏 tk-submit-action-icon（不含 OwO） */
.tk-submit-action-icon:not(.OwO) {
  display: none !important;
}