/*
 * 仅由 index.html 的无刷新外壳使用。
 * 首页保持原 game-content；其他视图只替换最小 909px 的中间承载区。
 * 实际内容更高时，由嵌入页通知外壳扩展高度，页脚随内容自然下移。
 */
.site-shell-frame-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 909px;
    height: 909px;
    margin-top: 60px;
    overflow: hidden;
}

.site-shell-frame-wrap[hidden] { display: none; }

.site-shell-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    overflow: hidden;
}

/* 移动端让内容承载区至少铺满当前视口，页脚不会提前出现在屏幕中部。 */
@media (max-width: 960px) {
    .site-shell-frame-wrap {
        min-height: calc(100vh - 60px);
        height: calc(100vh - 60px);
        margin-top: 60px;
    }
}
