        /* 右侧悬浮客服组件样式 */
        .floating-service {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .service-button {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 0px 0px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(22, 93, 255, 0.3);
        }

        .service-button img {
            width: 48px;
            height: 48px;
        }

        /* 移动端样式 */
        .mobile-hide {
            display: flex;
        }

        @media (max-width: 768px) {
            .mobile-hide {
                display: none;
            }
        }

        /* 移动端客服按钮 */
        .mobile-service-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background-image: url(/Uploads/WhatsApp.svg);
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-service-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(22, 93, 255, 0.3);
        }

        @media (max-width: 768px) {
            .mobile-service-toggle {
                display: flex;
            }
        }

        /* 移动端客服面板 */
        .mobile-service-panel {
            position: fixed;
            bottom: 110px;
            right: 30px;
            transform-origin: bottom right;
            transform: scale(0);
            width: 280px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 1002;
        }

        .mobile-service-panel.active {
            transform: scale(1);
            opacity: 1;
        }

        .panel-header {
            background-color:#337ab7;
            color: white;
            padding: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        .panel-content {
            padding: 15px;
        }

        .close-btn {
            cursor: pointer;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        .contact-item {
            display: flex;
            align-items: center;
            padding: 10px 5px;
            margin-bottom: 10px;
            border-radius: 8px;
            transition: all 0.2s ease;
            border: 1px solid #eee;
        }

        .contact-item:hover {
            background-color: #f8f9fa;
            transform: translateX(-3px);
        }

        .contact-item img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }


        // 语言切换器

      .language-dropdown {
        margin: 8px 0 0 15px;
    }
    
    .language-dropdown .dropdown-menu {
        min-width: 100px;
        text-align: center;
        right: 0;
        left: auto;
    }
    
    .language-dropdown .dropdown-menu li {
        cursor: pointer;
    }
    
    .language-dropdown .dropdown-menu li:hover {
        background-color: #f5f5f5;
    }
    
    .language-dropdown .dropdown-menu li.active a {
        font-weight: bold;
    }
    
    /* 移动设备适配 */
    @media (max-width: 767px) {
        .language-dropdown {
            margin: 5px 15px;
            float: none !important;
            display: block;
        }
        
        .language-dropdown .dropdown-menu {
            width: 100%;
        }
    }