/* 在线客服侧边菜单样式 */
@keyframes playAnimation {
    0% { background-position: 0 0; }
    100% { background-position: 0 -4200px; }
}

.consultation-image-container {
    width: 125px;
    height: 125px;
    overflow: hidden;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    padding-left: 35px;
}

.consultation-image-animation {
    transform-origin: top left;
    width: 125px;
    height: 95px;
    background-size: 125px 4200px;
    animation: playAnimation 2s steps(48) infinite;
    transform: translateY(20px);
}

.button-offset {
    margin-left: 80px;
}

/* 动态样式类 */
.consultation-button {
    /* 背景色通过内联样式设置: background: {$side.customerServiceColor}; */
}

.cursor-no-drop {
    cursor: no-drop;
}

.color-dynamic {
    /* 颜色通过内联样式设置: color: {$wo.colorv}; */
}