/* 公共：独立页面顶部简洁导航（不使用首页头部） */
.page-topbar {
  background: #504e4e; /* 浅灰色背景 */
  height: 100px; /* 默认高度50px - 可被覆盖 */
  width: 100%; /* 宽度自适应 */
  padding: 0; /* 移除内边距，通过高度和flex居中对齐内容 */
  border-bottom: none;
  display: flex; /* 使用flex布局便于垂直居中 */
  align-items: center; /* 垂直居中对齐 */
  box-sizing: border-box;
}
.page-topbar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%; /* 容器占满头部高度 */
  background-color: #525d63;
  
}
.topbar-home {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  
}
.topbar-sep {
  color: #bbb;
}
.topbar-current {
  color: #ffffff;
  font-size: 16px;
}
.topbar-current:hover {
  color: #fa7900;
  text-decoration: none;
}

