I just want to list ONLY the child categories, but not grandchildren

worked it out already.

<?php wp_list_categories("child_of=&depth=1&hide_empty=0&title_li="); ?>

put the above code at the proper place in the files category.php or archive.php and modify “depth=0” to “depth=1”. It works.

Thank you all.