        .floating-container {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000000000;
            display: flex;
            align-items: center;
        }
    
	      .jiantou {
			background: #000000;
			height: 20px;
			width: 40px;
			padding: 15px 0 18px 0;
            display: flex;
            justify-content: flex-start;
            align-items: center;
			margin: 0 0 10px 0;
			border-radius: 8px 0 0 0px;
			    

        }	

        .floating-btn {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            width: 40px;
            height: 166px;
            background: linear-gradient(135deg, rgb(243 158 49),  rgb(243 158 49));
            color: white;
            border-radius: 8px 0 0 8px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 2px;
            cursor: pointer;
            box-shadow: -2px 0 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
            z-index: 1001;
            padding: 0  0 15px 0;
        }
        
        .contact-form {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            background: white;
            border-radius: 10px 0 0 10px;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            padding: 20px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            z-index: 1000000000;
        }
        
        .form-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .form-header h3 {
            color: #333;
            font-size: 18px;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 20px;
            color: #999;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .close-btn:hover {
            color: #ff6b6b;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            color: #555;
            font-size: 14px;
        }
        
        input, textarea, select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        
        textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #4a6cf7, #8a3ffb);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        
        .submit-btn:hover {
            opacity: 0.9;
        }
        
        @media (max-width: 480px) {
            .contact-form {
                width: 280px;
                right: 40px;
            }
            
            .floating-btn {
                height: 166px;
                font-size: 14px;
            }
        }