
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 视频铺满整个容器 */
    z-index: -1; /* 将视频置于内容下方 */
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色 */
    z-index: 0; /* 将覆盖层置于视频下方 */
}

#content {
    position: relative;
    z-index: 1; /* 网盘内容在视频上方 */
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}