
.lightboxContainer{
    position: fixed;
    top: 0;
    /*background-color: rgba(64, 64, 64, 0.541);*/
    width: 100%;
    height: 100%;    
    display: none;
}
.lightboxBG{
    background-color: rgba(64, 64, 64, 0.541);
    width: 100%;
    height: 100%;    

}
.lightbox{
    position: fixed;
    top: 50%;
    width: 500px;
    height: 500px;
    background-color: white;
    left: 50%;
    margin: -250px 0 0 -250px;
}
.lightbox form {
    padding: 20px;
    height: 460px;
    display: flex;
    flex-direction: column;
}
.lightbox form input[type="submit"] {
    color: red;
    margin: auto 0 0 0;
}
.partyContainer{
    display: flex;
    margin: 24px auto 0 auto;
    width: 100%;
    /* background-color: blueviolet; */
    justify-content: center;
    padding: 0 0 50px 0;
    flex-wrap: wrap;
}
.party{
    width: 382px;
    height: 263px;
    /*background: #000;*/
    margin: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.party img{
    width: 338px;
    margin: 0 0 0 0;
}
.party h3{
    
    margin: 0 0 7px 0;
}
.partyImg{
    position: relative;
    margin: 0 0 7px 0;
}
.canceledWeek{
	position: absolute;
	width: 270px;
	top: 42%;
	left: calc(50% - 135px);
	font-size: 34px;
	text-align: center;
	color: white;
	text-shadow: 5px 4px 3px black;
}
.darkBg{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #63636396, #000000de);
    /*background-color: rgba(0, 0, 0, 0.5); /* 半透明色块 */
    pointer-events: none; /* 确保色块不会阻挡鼠标事件 */
}