        /* WhatsApp 联系按钮基础样式 */
        .whatsapp-contact {
            position: fixed;
            bottom: 80px;
            right: 10px;
            z-index: 9999; /* 确保按钮在最上层 */
            transition: all 0.3s ease;
        }

        /* 按钮样式 */
        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: #25D366; /* WhatsApp 品牌绿色 */
            color: white;
            border-radius: 50%;
            text-decoration: none;

            transition: all 0.3s ease;
            font-size: 36px;
        }

        /* 悬停效果 */
        .whatsapp-btn:hover {
            transform: scale(1.1);

            background-color: #f4f4f4; /* 浅色版本 */
        }

        /* 移动设备适配 */
        @media (max-width: 768px) {
            .whatsapp-contact {
                bottom: 80px;
                right: 10px;
            }
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 36px;
            }
        }

        /* 带文字的扩展样式（可选） */
        .whatsapp-btn-with-text {
            width: auto;
            height: 50px;
            padding: 0 20px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
        }

        .whatsapp-btn-with-text i {
            margin-right: 8px;
        }
		

		    /* 添加提示框样式 */
    .whatsapp-btn {
        position: relative; /* 为提示框定位做准备 */

    }
    
    /* 提示框基础样式（修改为左方显示） */
    .whatsapp-btn .tooltip-text {
        visibility: hidden;
        width: 260px;
        background-color: #f4f4f4;
        color: #e84545;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        right: 100%; /* 提示框右侧贴紧按钮左侧 */
        top: 50%; /* 垂直居中对齐 */
        transform: translateY(-50%); /* 精准垂直居中 */
        margin-right: 10px; /* 与按钮保持10px间距（可选） */
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 14px;
        font-weight: normal;
    }
    
    /* 提示框小箭头（修改为朝右） */
    .whatsapp-btn .tooltip-text::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -10px; /* 箭头贴紧提示框右侧 */
        transform: translateY(-50%); /* 垂直居中 */
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent transparent #f4f4f4; /* 左方颜色生效（朝右箭头） */
    }
    
    /* 悬停时显示提示框 */
    .whatsapp-btn:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }