$(function () {
//    tab 组件
    $('.tab .tab-bar span').mouseenter(function () {
        var index=$(this).index();
        if(index>0&&index%2===0){
            --index;
        }
        $(this).siblings('span').removeClass('active');
        $(this).addClass('active');
        $(this).parent().parent()
            .find('.tab-container .tab-content').removeClass('active');
        $(this).parent().parent()
            .find('.tab-container .tab-content')
            .eq(index).addClass('active');
    })
});
