// тут class="txt-color-black"
preg_match_all('#<span style="font-size:22px" class="txt-color-black">(.+?)</span>#is', $str, $arr);
// тут class="txt-color-red"
preg_match_all('#<span style="font-size:22px" class="txt-color-red">(.+?)</span>#is', $str, $arr);
class="txt-color-[a-z]+"
preg_match_all('#<span[^<>]*?class="txt-color-[a-z]+"[^<>]*?>(.+?)</span>#is', $str, $arr);