.wxcode {
    margin-top: 1rem;
    position: relative;
}

.wxcode img {
    width: 20%;
    height: 20%;
    /* 保持图片比例 */
    object-fit: cover;
    /* 添加过渡效果 */
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.wxcode img:hover {
    transform: scale(2); /* 放大1.5倍 */
    /* position: absolute; 脱离文档流 */
    z-index: 10; /* 提升层级，覆盖其他内容 */
    top: 0;
    left: 0;
}