Differentiate Between Parent & Child Categories

The child ul comes with the class “children”, so you can use this to target your css.
ul.children li { }

Even without that, though, you could just use the hierarchy of lists to target..

ul#catList ul li { } would target any li within a ul, within the #catList ID.