.share-item-wechat {
    position: relative;
    display: inline-block;
}
.share-item-wechat:hover {
    z-index: 9999; /* 触发悬停时，强制将当前图标层级提升至最高 */
}

/* 悬浮二维码气泡卡片 */
.qrcode-popover {
    position: absolute;
    top: 100%;               /* 定位在图标正下方 */
    left: 50%;
    transform: translateX(-50%); /* 水平居中对齐 */
    margin-top: 12px;        /* 与图标的间距 */
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
    text-align: center;
    z-index: 99999 !important;
    
    /* 默认隐藏，带淡入平移过渡效果 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease-in-out;
}

/* 鼠标悬停在图标或气泡上时显示 */
.share-item-wechat:hover .qrcode-popover {
    opacity: 1;
    visibility: visible;
}

/* 顶部朝上的小三角箭头 */
.qrcode-arrow {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-left: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
}

/* Canvas 容器调整 */
.share-qrcode-canvas {
    display: block;
    margin: 0 auto;
}

/* 底部提示文字 */
.qrcode-tip {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    white-space: nowrap;
}
.bdsharebuttonbox {
    height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    overflow: visible !important;
}
.share{
    overflow: visible !important;
    height: auto !important;
}