/* ============================================================
 * 文件：css/touch-fix.css
 * 作用：移动端触摸高亮、长按选中、轮廓线全局修复
 * 来源：从 index.html <style> 标签拆出
 * ============================================================ */
* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}
