// 动画
// 旋转动画
@keyframes vci-amt-rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.vci-amt-rotate {
  animation: vci-amt-rotate 36s infinite both linear;
}

// 渐隐渐显
@keyframes vci-amt-fade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.6;
  }
}

.vci-amt-fade {
  animation: vci-amt-fade 2s infinite both linear alternate-reverse;
}
