/* 飞窗客服样式 */
.service-float {
    position: fixed;
    right: 30px;
    bottom: 150px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.service-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.service-popup {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    display: none;
    min-width: 200px;
}

.service-popup::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.service-popup .contact-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.service-popup .qrcode-img {
    display: block;
    max-width: 150px;
    height: auto;
    margin: 10px auto 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .service-float {
        right: 20px;
        bottom: 120px;
    }
    
    .service-item {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-popup {
        right: 70px;
        min-width: 180px;
        padding: 15px;
    }
    
    .service-popup .qrcode-img {
        max-width: 120px;
    }
}