/* After Love 模板：手机端固定返回按钮统一位置 */
@media (max-width: 768px) {
    .scroll-indicator,
    .back-button {
        bottom: max(40px, calc(env(safe-area-inset-bottom) + 24px)) !important;
    }

    .back-button {
        position: fixed !important;
        top: auto !important;
        right: auto !important;
        left: max(46px, calc(env(safe-area-inset-left) + 28px)) !important;
        z-index: 90;
        margin: 0 !important;
    }
}
