/* 职教高考题库 · 共享 UX 样式（被所有学生端页面引用，走 /vendor/ 永久缓存+gzip）
   一处定义：骨架屏 + 触摸按压反馈 + 页面进场淡入。 */

/* ── 骨架屏 ── */
.skeleton {
  background: linear-gradient(90deg, #eef0f2 25%, #e3e6ea 37%, #eef0f2 63%);
  background-size: 400% 100%;
  animation: uxShimmer 1.4s ease infinite;
  border-radius: 8px;
  display: block;
}
@keyframes uxShimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ── 触摸按压反馈：去掉移动端灰色高亮块；按钮按下轻微回弹，点了有“手感” ── */
button, a, [onclick], [role="button"], label, summary { -webkit-tap-highlight-color: transparent; }
button:active:not(:disabled) { transform: scale(0.97); }

/* ── 页面进场淡入：柔化硬跳转的白屏突兀（并顺带遮住样式编译的瞬时闪动） ── */
@keyframes uxFadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: uxFadeIn .24s ease-out; }
