/* 强制 body 和 html 高度占满全屏 */
body, html {
    height: 100%;
    margin: 0;
}
body {
    /* 替换下面的 url 内容 */
    background-image: url('https://api.paugram.com/wallpaper/') !important;
    background-attachment: fixed; /* 背景固定 */
    background-size: cover;       /* 图片覆盖全屏 */
    background-position: center;  /* 居中显示 */
    background-repeat: no-repeat;
}