html,
body.jbj-body,
body.jubijia-mobile-body {
    overscroll-behavior-y: none;
}

.fk-global-pull-refresh-indicator {
    position: fixed;
    z-index: 1005;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    box-sizing: border-box;
    color: var(--jbj-blue, var(--theme-primary, #0071e3));
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(226, 232, 240, .96);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .14);
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -22px, 0) scale(.8);
    transition: opacity .18s ease, transform .18s cubic-bezier(.22, .61, .36, 1);
}

.fk-global-pull-refresh-indicator.is-visible,
.fk-global-pull-refresh-indicator.is-refreshing {
    opacity: 1;
}

.fk-global-pull-refresh-indicator.is-ready i {
    transform: rotate(180deg);
}

.fk-global-pull-refresh-indicator.is-refreshing i {
    animation: jbjMobilePullRefreshSpin .75s linear infinite;
}

@keyframes jbjMobilePullRefreshSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .fk-global-pull-refresh-indicator {
        transition: none;
    }
}
