body {
    width: 100vw;
    height: 100vh;
    cursor: url(../cursor/Arrow.png), auto;
}

/** 链接指针样式**/
a:hover {
    cursor: url(../cursor/Hand.png), pointer;
}

.icon-link {
    position: relative;
    display: inline-block;
}

.popup {
    display: none;
    position: absolute;
    top: 50px;
    /* 根据需要调整位置 */
    left: 50%;
    transform: translateX(-50%);
    background: #2AAD69;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 175px;
    /* 宽度 */
    height: 175px;
    /* 高度 */
}



.icon-link:hover .popup {
    display: block;
}

#qrcodeimg {
    width: 100%;
    /* 宽度填充容器 */
    height: 100%;
    /* 高度填充容器 */
    object-fit: cover;
    /* 保持宽高比，图片可能会被裁剪 */
}