.zonkvm-top a{margin:0 10px}    /* 悬浮客服样式 */
        .customer-service {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
        }
    .zonkvm-doc a{color:#0066ff;}    
        .service-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0066ff, #006aff);
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
            transition: all 0.3s ease;
        }
        
        .service-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
        }
        
        .service-panel {
            position: absolute;
            right: 80px;
            top: 0;
            width: 300px;
            background-color: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(20px);
            transition: all 0.3s ease;
        }
        
        .service-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        .panel-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .panel-header i {
            color: #3498db;
            font-size: 20px;
            margin-right: 10px;
        }
        
        .panel-header h3 {
            color: #2c3e50;
            font-size: 18px;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f8f9fa;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .service-item:hover {
            background-color: #f8f9fa;
            padding-left: 10px;
            
        }
        
        .service-item:last-child {
            border-bottom: none;
        }
        
        .service-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 15px;
            font-size: 18px;
            color: white;
        }
        
        .wechat-icon {
            background: linear-gradient(135deg, #09bb07, #09bb07);
        }
        
        .qq-icon {
            background: linear-gradient(135deg, #12b7f5, #0084ff);
        }
        .qqkefu-icon {
            background: linear-gradient(135deg, #FF9900, #FF6600);
        }
        .phone-icon {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        }
        
        .service-info h4 {
            color: #2c3e50;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .service-info p {
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .qrcode-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .qrcode-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .qrcode-content {
            background-color: white;
            padding: 30px;
            text-align: center;
            max-width: 320px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
         .qrcode-content button{
           margin-left: 50px;
        }
        .qrcode-popup.active .qrcode-content {
            transform: translateY(0);
        }
        
        .qrcode-content h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .qrcode-img {
            width: 200px;
            height: 200px;
            background-color: #f8f9fa;
            
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #7f8c8d;
        }
        
        .qrcode-img.wechat {
            background: linear-gradient(135deg, #f8f9fa, #e9f5e9);
        }
        
        .qrcode-img.qq {
            background: linear-gradient(135deg, #f8f9fa, #e9f0f9);
        }
        
        .qrcode-close-kefu {
            margin-left: 30px;
            background-color: #3498db;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s ease;
        }
        
        .qrcode-close-kefu:hover {
            background-color: #2980b9;
        }
        
        .phone-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .phone-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .phone-content {
            background-color: white;
            padding: 30px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .phone-popup.active .phone-content {
            transform: translateY(0);
        }
        
        .phone-content h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .phone-number {
            font-size: 28px;
            color: #e74c3c;
            font-weight: 700;
            margin: 20px 0;
            padding: 15px;
            background-color: #f8f9fa;
            
            letter-spacing: 2px;
        }
        
        .phone-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }
        
        .phone-btn {
            padding: 12px 20px;
            border-radius: 6px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .phone-btn.call {
            background-color: #2ecc71;
            color: white;
        }
        
        .phone-btn.call:hover {
            background-color: #27ae60;
        }
        
        .phone-btn.copy {
            background-color: #3498db;
            color: white;
        }
        
        .phone-btn.copy:hover {
            background-color: #2980b9;
        }
        
        .phone-btn.close {
            background-color: #e74c3c;
            color: white;
        }
        
        .phone-btn.close:hover {
            background-color: #c0392b;
        }
          .qqkefu-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .qqkefu-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .qqkefu-content {
            background-color: white;
            padding: 30px;
            text-align: center;
            max-width: 380px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .qqkefu-popup.active .qqkefu-content {
            transform: translateY(0);
        }
        
        .qqkefu-content h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .qqkefu-content p {
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        .qq-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        
        .qq-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: #f8f9fa;
            border-left: 4px solid #FF9900;
        }
        
        .qq-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .qq-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .qq-number {
            font-size: 18px;
            color: #FF9900;
            font-weight: 700;
        }
        
        .qq-actions {
            display: flex;
            gap: 8px;
        }
        
        .qq-btn {
            padding: 8px 12px;
            border-radius: 4px;
            border: none;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .qq-btn.copy {
            background-color: #3498db;
            color: white;
        }
        
        .qq-btn.copy:hover {
            background-color: #2980b9;
        }
        
        .qq-btn.contact {
            background-color: #FF9900;
            color: white;
        }
        
        .qq-btn.contact:hover {
            background-color: #FF6600;
        }
        
        .qqkefu-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .qqkefu-btn {
            padding: 12px 20px;
            border-radius: 6px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .qqkefu-btn.close {
            background-color: #e74c3c;
            color: white;
        }
        
        .qqkefu-btn.close:hover {
            background-color: #c0392b;
        }
      
        @media (max-width: 768px) {
            .customer-service {
                right: 10px;
            }
            
            .service-panel {
                width: 280px;
                right: 70px;
            }
            
            .service-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .service-panel {
                width: 260px;
            }
            
            .qrcode-content, .phone-content {
                padding: 20px;
            }
            
            .phone-number {
                font-size: 22px;
            }
            
            .phone-actions {
                flex-direction: column;
            }
        }