/* globals.css — 仅全局复位与视图切换动效;颜色/字体全部来自 colors_and_type.css(单一真相源)。 */ html, body { margin: 0; } body { background: var(--bg); font-family: var(--font-sans); } * { -webkit-font-smoothing: antialiased; } button { font-family: inherit; } @keyframes uc-in-l { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } } @keyframes uc-in-r { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: translateX(0); } }