/* 班组履职评价系统 V1.5.1
 * 移动端吸顶标题栏与抽屉层级热修复。
 */

@media (max-width: 760px) {
  :root {
    --v151-mobile-topbar-height: calc(62px + env(safe-area-inset-top));
  }

  /* iOS Safari 中 sticky 会受祖先 overflow 影响；手机端改为视口固定。 */
  .topbar {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 0;
  }

  /* 固定标题栏脱离文档流后，为正文保留完整的标题栏和安全区高度。 */
  .workspace {
    min-height: 100dvh;
    padding-top: var(--v151-mobile-topbar-height);
  }

  /* 菜单打开时，遮罩和侧栏完整覆盖标题栏，不再被顶部区域挡住。 */
  .mobile-menu-backdrop {
    z-index: 190;
  }

  .sidebar {
    z-index: 200;
  }
}
