/* public.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* 禁止滚动条 */
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    background-color: #f7f9fa; /* 清新的浅灰色背景 */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
