/* IM客服图标样式 */
.IM-notification-icon {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: url('im-notification.svg') no-repeat center;
    background-size: contain;
    /*margin-right: 10px;*/
}

.IM-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #f5222d;
    color: #fff;
    font-size: 13px;
    /*padding: 2px 2px;*/
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 0 0 2px #fff;
    min-width: 20px;
    text-align: center;
}

.IM-blink {
    animation: IM-blink-animation 1.5s infinite;
}

@keyframes IM-blink-animation {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}
