21 lines
335 B
CSS
21 lines
335 B
CSS
|
|
/* 全局基础样式 */
|
||
|
|
html {
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
font-family:
|
||
|
|
-apple-system,
|
||
|
|
BlinkMacSystemFont,
|
||
|
|
'Segoe UI',
|
||
|
|
Roboto,
|
||
|
|
'Helvetica Neue',
|
||
|
|
Arial,
|
||
|
|
'PingFang SC',
|
||
|
|
'Hiragino Sans GB',
|
||
|
|
'Microsoft YaHei',
|
||
|
|
sans-serif;
|
||
|
|
}
|