#float-btn {
    position: fixed;
    left: calc(100% - 40px - 10px);
    top: 10px;
    width: 40px;
    height: 40px;
    background-image: url("exitdialog/float_btn.png");
    background-size: cover;
    /* border-radius: 50%; */
    cursor: pointer;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
    user-select: none;
    z-index: 9998;
    border: none;
    outline: none;
}


#float-btn.active {
    transform: scale(0.98);
}


.loading-overlay-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9997;
    display: none;
    /* 屏蔽所有指针事件 */
    pointer-events: auto;
    /* 默认隐藏 */
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
}

.loading-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* 控制两个div之间的间距 */
    justify-content: center;
    align-items: center;
}

.loading-text {
    color: white;
    font-size: clamp(14px, 3vw, 22px);
    line-height: 1.4;
    max-width: 100%;
    overflow-wrap: break-word;
    font-weight: normal;
    text-align: center;
    align-items: center;
}

.loading-box {
    width: 80px;
    height: 77px;
    background-size: 100% 100%;
    animation: loading 1.6s linear infinite;
    background-image: url('exitdialog/loading.png');
    justify-content: center;
    align-items: center;
}

@keyframes loading {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}


.transparent-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9800;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.transparent-overlay * {
    pointer-events: auto;
}

.transparent-button {
    position: fixed;
    left: calc(50%);
    top: 20px;
    width: 100px;
    height: 40px;
    background-color: #ffffff00;
    background-size: cover;
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
}

.transparent-button:active {
    transform: scale(1.1);
}