
    /* 严格隔离的动画和悬停效果 */
    @keyframes ueeshop-wa-pulse {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* 将样式直接绑定在 td 单元格上，避开 a 标签被过滤的问题 */
    .ueeshop-wa-btn {
        background: #fff;
        border: 1px solid #dce5e2;
        border-radius: 40px;
        padding: 6px;
        cursor: pointer;
        transition: all 0.3s ease !important;
        animation: ueeshop-wa-pulse 2.5s infinite;
    }

    .ueeshop-wa-btn:hover {
        background-color: #ffffff !important;
        border-color: #25D366 !important;
        transform: translateY(-4px) !important;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15) !important;
        animation: none !important;
    }

    .ueeshop-wa-num {
        color: #2c3e50;
        font-size: 13px;
        font-weight: bold;
        margin-top: 2px;
        transition: color 0.3s ease !important;
    }

    .ueeshop-wa-btn:hover .ueeshop-wa-num {
        color: #347561 !important;
    }
