/* 基本样式 */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden; /* 防止滚动条出现 */
    background: url('images/site_main_bkg.webp') no-repeat center center fixed; /* 背景图 */
    background-size: cover;
}

/* 粒子十字架画布 */
#shuzuiParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; /* 在文字雨之下 */
}

/* 文字雨画布 */
#shuzuiTextCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* 在粒子十字架之上 */
}

/* 按钮容器 */
.shuzui-button-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3; /* 在最上层 */
}

/* 按钮样式 */
.shuzui-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.shuzui-button:hover {
    background-color: #555;
}



.shuzui-eventTitle {
			font-family: "Smiley Sans Oblique";
            display: block;
            text-align: center;
            align-items: center;
            align-content: center;
            font-size: 4vh;
            font-style: normal;
            color: #000;
            width: 100%;
            height: 70%;
			transition: 0.2s ease;
			cursor: help;
}

/* 正文样式 */
.shuzui-ECTextX1 {
    font-size: 2vh;  /* 字体大小 */
    color: #000;  /* 字体颜色 */
    text-align: center;  /* 居中对齐 */
    margin: 20px auto;  /* 上下间距 */
    width: 80%;  /* 宽度为页面的80% */
    font-family: "Arial", sans-serif;  /* 字体 */
    line-height: 1.5;  /* 行间距 */
    position: relative;
    top: 50vh;  /* 位置在十字架底部附近 */
    transform: translateY(-50%);  /* 垂直居中 */
}
