   /* 重置默认样式 */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 2000px; /* 只为测试滚动效果 */
    background-color: #f5f5f5;
}

/* 客服二维码容器 - 核心样式 */
.customer-service {
    position: fixed; /* 固定定位，始终在可视区 */
    right: 30px;     /* 距离右侧30px */
    bottom: 30px;    /* 距离底部30px */
    z-index: 9999;   /* 提高层级，避免被其他元素遮挡 */
    cursor: pointer;
}

/* 收起/展开按钮 */
.service-toggle {
    width: 50px;
    height: 50px;
    background-color: #0088ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 136, 255, 0.3);
    transition: all 0.3s ease;
}

.service-toggle:hover {
    background-color: #0066cc;
}

/* 二维码面板 - 修改：默认显示（去掉display: none） */
.qrcode-panel {
    width: 180px;
    height: 200px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    bottom: 60px; /* 与按钮保持间距 */
    text-align: center;
}

.qrcode-panel img {
    width: 160px;
    height: 160px;
    margin-bottom: 5px;
}

.qrcode-panel p {
    font-size: 12px;
    color: #666;
}