body {
            background-attachment: fixed;  /* 固定背景 */
            overflow: auto;  /* 允许滚动 */
            height: 100%;  /* 确保页面可以滚动 */
        }
        #canvas {
            position: fixed;
            left: 0;
            top: 0;
            z-index: -1;  /* 确保画布在内容下面 */
        }
        .content {
            min-height: 2000px;  /* 设置页面内容高度，确保可以滚动 */
        }