You can add the following code to your theme’s functions.php to dequeue the style file:
add_action('wp_print_styles', 'my_dequeued_styles', 100);
function my_dequeued_styles() {
wp_dequeue_style('se-link-styles');
}
Of course do not forget to copy the original CSS code to your main stylesheet or perhaps create conditional enqueuing if the pages is search results.