*,
:after,
:before {
    box-sizing: border-box;
    line-height: 1;
}

body {
    background-color: rgb(255, 255, 255);
    color: rgb(29, 29, 31);
    font-family: 'zh';
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
    font-family: inherit;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: rgb(0, 0, 0);
        color: rgb(245, 245, 247);
    }
}