/* 企业微信二维码样式 - 简洁版 */
.qrcode-trigger {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 0; /* 移除内边距 */
    transition: all 0.3s ease;
    text-decoration: underline;
    line-height: 1.2; /* 设置较小的行高 */
    font-size: inherit; /* 使用父元素的字体大小 */
}

.qrcode-trigger:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

/* 二维码容器 */
.qrcode-container {
    position: absolute;
    top: 100%;
    left: 100%;
    margin-left: 20px;
    width: 180px;
    padding: 15px;
    background: #ffffff; /* 改为浅灰色背景，与白色网页形成对比 */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);.边框增强视觉效果 */
}

.qrcode-trigger:hover .qrcode-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.qrcode-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f8f9fa; /* 与容器背景色一致 */
}

.qrcode {
    width: 150px;
    height: 150px;
    background: white; /* 二维码区域使用白色背景，与容器形成对比 */
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    border: 1px solid #dee2e6;
}

.qrcode img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
}

.qrcode-text {
    font-size: 0.9rem;
    color: #6c757d; /* 使用深灰色文字，提高可读性 */
    margin-top: 5px;
    font-weight: bold; /* 加粗文字，更显眼 */
}