/**
 * 前端公共样式
 */

/* loading 旋转动画 */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  animation: spin 1s linear infinite;
}

/* 移动端点按时去掉浏览器默认的灰色闪高亮，
   按下的视觉反馈由各元素的 active: 样式统一提供 */
a, button, select, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}
