.social-chat-icons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-icon2 {
    width: 60px;
    height: 55px;
    background-color:#06c755;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.chat-icon2 i {
    color: white;
    font-size: 32px;
}

.social-icons {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.social-icons.active {
    display: flex;
}

.social-icons.expanded {
    padding-left: 190px;
}

.social-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-code {
    position: absolute;
    bottom: 15px;
    left: 10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    display: none;
    width: auto;
    height: auto;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.qr-code img {
    width: 150px;
    height: 130px;
    max-width: none;
    object-fit: contain;
}

.qr-code.active {
    display: block;
}

/* 動畫效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons.active {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes expandLeft {
    from {
        padding-left: 15px;
    }
    to {
        padding-left: 190px;
    }
}

.social-icons.expanded {
    animation: expandLeft 0.3s ease forwards;
} 