/* 七鱼客服右下角弹窗（全站共用） */
.right_bar {
    z-index: 100002;
    pointer-events: auto;
}

.right_bar .bar_list,
.right_bar .bar_list a {
    pointer-events: auto;
}

#qiyu-service-popup {
    position: fixed;
    right: 90px;
    bottom: 20px;
    width: 380px;
    height: 520px;
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 40px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    z-index: 100000;
    display: none;
    overflow: visible;
    box-sizing: border-box;
}

#qiyu-service-popup.is-visible {
    display: block;
}

#qiyu-service-popup.is-maximized {
    width: 480px;
    height: min(720px, calc(100vh - 40px));
}

#qiyu-service-popup .service-popup__close {
    display: none;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(51, 51, 51, 0.85);
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#qiyu-service-popup .service-popup__close:hover {
    background: #AC3226;
}

#qiyu-service-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: #f5f5f5;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    #qiyu-service-popup {
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        height: calc(100vh - 80px);
        max-width: none;
        max-height: none;
    }
}
