/* common.css —— 两端共用的基础重置
   说明：B 端与 C 端各自的完整设计令牌（CSS 变量 :root{}）与组件样式
   分别保留在 b-theme.css / c-theme.css 中（两端是相互独立的两套设计，
   为保证像素级一致，未强行合并）。本文件只放真正中性、无副作用的重置。*/
*{ -webkit-tap-highlight-color: transparent; }
html, body{ margin:0; padding:0; }
*, *::before, *::after{ box-sizing: border-box; }
img{ max-width:100%; }
button{ font-family: inherit; }
