/* 登录弹框样式 - 让Vue的v-show指令控制 */
.alogin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    display: flex; /* 初始显示为flex，Vue的v-show会覆盖这个值 */
}

/* 移除可能干扰Vue v-show指令的规则 */
