.jk_popup_bottom ::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.jk_popup_bottom ::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: transparent;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.jk_popup_bottom ::-webkit-scrollbar-track {
    border-radius: 0;
    background: transparent;
}

.jk_popup_bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.jk_popup_content {
    width: 10rem;
    margin: 0 auto;
    box-sizing: border-box;
    background: #ffffff;
    border-top-left-radius: 0.53rem;
    border-top-right-radius: 0.53rem;
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: fixed;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.popup-enter-active,
.popup-leave-active {
    transition: opacity 0.3s ease;
}

.popup-enter-active .jk_popup_content,
.popup-leave-active .jk_popup_content {
    transition: transform 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.popup-enter,
.popup-leave-to {
    opacity: 0;
}

.popup-enter .jk_popup_content,
.popup-leave-to .jk_popup_content {
    transform: translateY(100%);
}

.jk_popup_content_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jk_popup_content_header_close {
    font-weight: bold;
    font-size: 0.43rem;
    color: #9C9795;
    line-height: 0.43rem;
}

.jk_popup_content_header_title {
    font-weight: bold;
    font-size: 0.48rem;
    color: #2C2724;
    line-height: 0.43rem;
}

.jk_popup_content_header_confirm {
    font-weight: bold;
    font-size: 0.43rem;
    color: #FF803B;
    line-height: 0.43rem;
}

.jk_popup_link {
    border: none;
    height: 0.02rem;
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: 0.4rem;
}