// YcAnimateSelector 动画选择器组件样式
// 注意：组件使用的类名是 .yc-*，不能使用 @include b() mixin

// 下拉弹出层样式（非 scoped，需要全局生效）
.yc-animate-popper {
  min-width: 0 !important;
}

.yc-animate-container {
  width: 280px;
}

.yc-animate-scrollbar {
  border-top: 1px solid var(--el-border-color-light, #e5e7eb);
}

.yc-animate-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
  margin: 0 0 4px 0;
  list-style: none;
}

.yc-animate-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 100px;
  margin-top: 4px;
  cursor: pointer;
  border: 1px solid var(--el-border-color-light, #e5e7eb);
  transition: all 0.3s;

  &:hover {
    color: var(--el-color-primary);
    transition-duration: 700ms;
  }
}

