How to use jquery to achieve the following effects

clipboard.png

clipboard.png
when the other two tab, are not selected, the mouse will change color. If the mouse moves over the selected tab, it will not change color

Code:

$( document).ready(function(){
  $(".fixed_bar").find("li").click(function(){
    $(".fixed_bar").find("li").removeClass("active");
    $(this).addClass("active");
  });                                                                    
})

this code is realized by clicking tab to turn red and gray tab font to orange. I don"t know how to achieve

Mar.04,2021


tab:<br>.status_on :hover{

color:-sharpFF9900

}

Menu