* { box-sizing: border-box; }
        html, body {
            margin: 0; /* 消除边界[1](@ref)[9](@ref) */
            padding: 0; /* 消除边界[9](@ref) */
            width: 100vw; /* 全屏宽度[5](@ref) */
            height: 100vh; /* 全屏高度[2](@ref)[4](@ref)[5](@ref) */
            overflow: hidden; /* 移除滚动条[1](@ref)[5](@ref) */
            background-color: black; /* 黑色背景 */
        }
        /* 可选：通过CSS禁止文本选择，作为防复制的补充 */
        body {
            -webkit-user-select: none; /* Safari */
            -moz-user-select: none; /* Firefox */
            -ms-user-select: none; /* IE/Edge */
            user-select: none; /* 标准语法[7](@ref)[8](@ref) */
        }