body {  
    font-family: Arial, sans-serif;  
    margin: 0;  
    padding: 0px;  
}  
.QrCode {
    position: fixed; /* 使用 fixed 而不是 absolute */
    top: 200px;
    right: 10px; /* 将 left 改为 right */
    z-index: 1000;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center; /* 调整二维码的对齐方式 */
    align-items: center; /* 垂直居中二维码 */
    flex-direction: column;
}

.QrCode .home {
    width: 250px;
    height: 250px;
}

@media (max-width: 520px) {
    .QrCode {
        position: fixed; /* 使用 fixed 而不是 absolute */
        top: 200px;
        right: 10px; /* 将 left 改为 right */
        z-index: 1000;
        width: 100px;
        height: 100px;
        display: flex;
        justify-content: center; /* 调整二维码的对齐方式 */
        align-items: center; /* 垂直居中二维码 */
        flex-direction: column;
        visibility: hidden;
    }
}