/* 样式用于覆盖整个屏幕并居中显示弹窗 */
#notification-overlay {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* 确保弹窗在最上层 */
}

#notification-box {
    position: relative;
    background-color: white;
    width: 600px; /* 弹窗宽度为屏幕的90% */
    height: 90%; /* 弹窗高度为屏幕的90% */
    max-width: 1200px; /* 可选：限制最大宽度 */
    max-height: 800px; /* 可选：限制最大高度 */
    overflow: auto; /* 如果内容超出弹窗大小，显示滚动条 */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
}

#notification-image {
    width: 70%; /* 图片宽度为原始大小的50% */
    height: auto; /* 高度自动调整以保持比例 */
    display: block; /* 确保图片居中 */
    margin: 0 auto; /* 图片水平居中 */
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    z-index: 1001; /* 确保关闭按钮在弹窗内容之上 */
}