.suspension_SQ {
    width: 40px;
    height: 138px;
    padding: 11px 8px 0 8px;
    background: #FFFFFF;
    box-shadow: 0px 8px 15px 0px rgba(180,180,180,0.28);
    border-radius: 3px;
    position: fixed;
    right: 30px;
    bottom: 426px;
    z-index: 999;
}

/* 确保内容可见 */
.suspension_SQ li {
    text-align: center;
    margin-bottom: 8px;
}

.suspension_SQ li img {
    display: block;
    width: 20px;
    margin: 0 auto;
}

.suspension_SQ li.suspension-qrcode {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.suspension_SQ:hover::after {
    content: '';
    position: fixed;
    right: 85px;
    bottom: 426px;  /* 根据实际情况微调这个值 */
    width: 200px;
    height: 200px;
    background: url('/images/WEIXIN_SQ.png') center/cover no-repeat;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.suspension_SHH {
    width: 40px;
    height: 138px;
    padding: 11px 8px 0 8px;
    background: #FFFFFF;
    box-shadow: 0px 8px 15px 0px rgba(180,180,180,0.28);
    border-radius: 3px;
    position: fixed;
    right: 30px;
    bottom: 288px;
    z-index: 999;
}

/* 确保内容可见 */
.suspension_SHH li {
position: relative;
    text-align: center;
    margin-bottom: 8px;
}

.suspension_SHH li img {
    display: block;
    width: 20px;
    margin: 0 auto;
}

.suspension_SHH li.suspension-qrcode {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}
/* 最简单的方法 - 直接微调bottom值 */
.suspension_SHH:hover::after {
    content: '';
    position: fixed;
    right: 85px;
    bottom: 288px;  /* 根据实际情况微调这个值 */
    width: 200px;
    height: 200px;
    background: url('/images/WEIXIN_SH.png') center/cover no-repeat;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}