Existe um seletor CSS padrão semelhante a: eq () em jQuery?

Não sei se existe um seletor CSS que possa fazer o mesmo que a linha abaixo (código jQuery):

.tab_cadre_central .top:eq(0) table tbody tr td table tbody tr:eq(3)

Eu tentei em CSS algo como isto:

.tab_cadre_central .top::nth-child(0) table tbody tr td table tbody nth-child:eq(3) {
    display:none;
}

mas não funcionou.

questionAnswers(1)

yourAnswerToTheQuestion