/* 右侧联系方式快速栏样式 */
.quick-contact-sidebar {
    position: fixed;
    right: 12px;
    bottom: 120px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.quick-contact-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item:hover {
    background-color: #f8f8f8;
}

.quick-contact-item:hover .quick-contact-icon {
    color: #F6A609;
}

.quick-contact-icon {
    font-size: 18px;
    color: #666;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.quick-contact-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.quick-contact-text {
    font-size: 10px;
    color: #666;
    white-space: nowrap;
}

.quick-contact-item:hover .quick-contact-text {
    color: #F6A609;
}

/* 二维码弹出框样式 */
.quick-contact-qrcode {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-right: 10px;
    min-width: 150px;
}

.quick-contact-qrcode::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

.quick-contact-item:hover .quick-contact-qrcode {
    opacity: 1;
    visibility: visible;
}

.quick-contact-qrcode-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
    border-radius: 4px;
}

.quick-contact-qrcode-header {
    background: linear-gradient(135deg, #F6A609 0%, #FF8C00 100%);
    color: #fff;
    padding: 8px 12px;
    margin: -12px -12px 10px -12px;
    border-radius: 6px 6px 0 0;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.quick-contact-qrcode-title {
    font-size: 12px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.quick-contact-qrcode-desc {
    font-size: 10px;
    color: #666;
    text-align: center;
    margin-top: 4px;
    line-height: 1.4;
}

/* 响应式隐藏 - 移动端隐藏 */
@media (max-width: 768px) {
    .quick-contact-sidebar {
        display: none;
    }
}
