So if you have only these two conditions then you can try this solution
Solution
This will target only the child of p tag
p>em { color: #ff0000; font-size:30px; }
If em is below
tag then this code will target every em that is below
tag
p+em { color: #ff0000; font-size:30px; }