blob: 72c144a73266ceceef6a5ffa16d76e7db94d8ba4 [file] [log] [blame]
TRM-codingd1cbf672025-06-18 15:15:08 +08001* {
2 margin: 0;
3 padding: 0;
4 box-sizing: border-box;
5}
6
7body {
8 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
9 -webkit-font-smoothing: antialiased;
10 -moz-osx-font-smoothing: grayscale;
11 background-color: #f5f7fa;
12}
13
14button {
15 border: none;
16 background: none;
17 cursor: pointer;
18 font-family: inherit;
19}
20
21a {
22 text-decoration: none;
23 color: inherit;
24}
25
26#root {
27 width: 100%;
28 min-height: 100vh;
29}