How can I style the first submenu link in the drop-down menu?

ou can target the first submenu link with something like this, added to Divi > Theme Options > Custom CSS:

.sub-menu li:first-child > a {
    font-style: italic;
}

Of course, change the style to whatever you’d like!