/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'KaiTi', '楷体', 'STKaiti', '华文楷体', 'Kaiti SC', 'DFKai-SB', '标楷体', serif;
    background: transparent;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}
