# CSS 配置

使用本框架前,请在您的 CSS 中开启 border-box

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}