/* 悬浮提示框 */
.hover-tip {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 130px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 10px;
    border-radius: 8px;
    display: none; /* 默认隐藏 */
}

/* 内容布局 */
.hover-tip .qrcode-box {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.hover-tip .qrcode-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.hover-tip .qrcode-text {
    font-size: 14px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
}

.hover-tip .qrcode-text .code {
    font-weight: bold;
    color: #ff0000;
}