Try the following CSS (Settings > Appearance > Advanced > Custom stylesheet for rendered markdown):

/* 2nd-level ordered lists */
ol > li > ol {
  list-style-type: lower-alpha;
}

/* 3rd-level ordered lists */
ol > li > ol > li > ol {
  list-style-type: lower-roman;
}

See also list-style-type - CSS: Cascading Style Sheets | MDN