a {
    cursor: pointer;
}


/* 蒙版 */

#maskingOut {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow: hidden;
}


/* 加载 */

#loading {
    width: 180px;
    height: 180px;
    position: absolute;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-color: #303133;
}


/* 滚动动画 */

.roll {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 4px solid #303133;
    border-radius: 50%;
    border-bottom-color: #fff;
    border-right-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    animation: rotation 1s linear infinite;
}


/* 提示文字样式 */

.message {
    color: #ffff;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* 
客服标签
<div style="position: unset">
                <div class="kf-location">
                    <div class="kf-content">
                        <div class="kf-img">
                            <span onclick="openKf()" class="kf-title">在线咨询</span>
                        </div>
                    </div>
                </div>
</div>

*/


/* 客服定位 */

.kf-location {
    position: fixed;
    z-index: 999999;
    right: 0;
    top: 208px;
}


/* 客服内容 */

.kf-content {
    width: 120px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(206, 213, 224);
    display: block;
}


/* 客服图片 */

.kf-img {
    float: left;
    width: 100%;
    height: 220px;
    background: url(https://img.qianyi1.cn/imgs/202411/1731490786278kfpage.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
}


/* 客服标题 */

.kf-title {
    position: absolute;
    height: 28px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    border-radius: 2px;
    padding: 0px 10px;
    cursor: pointer;
    width: 88px;
    text-align: center;
    bottom: 18px;
    font-size: 12px;
    box-sizing: border-box;
    left: 16px;
    background: #1f8ceb;
    display: block;
}