/* ... existing code ... */
#wechat-notice {
    position: fixed; /* 使用固定定位覆盖在其他内容上方 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 添加背景色以便更好地显示图片 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* 确保覆盖在其他内容上方 */
}

#wechat-notice img {
    width: 80%; /* 使图片宽度自适应 */
    height: auto; /* 图片高度自适应 */
    margin: 0 auto; /* 修改为水平居中 */
    max-width: 100%; /* 移除最大宽度限制 */
}

#wechat-notice .open-browser-btn {
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

header {
    text-align: center;
    padding: 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

#download-section {
    margin-bottom: 20px;
}

#download-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

.qr-code img {
    width: 200px;
    height: 200px;
}

.qr-code p {
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
}