.item:nth-child(2n-1)
{
background-color: red;
}
.item:nth-child(2n-2)
{
background-color: yellow;
}
div.item:last-child /* добавил div, чтобы увеличить вес последнего селектора */
{
flex-basis: 100%;
background-color: green;
}
.item:nth-child(3n)
{
}
.item:nth-child(3n+1)
{
}
.item:nth-child(3n+2)
{
}
new Date (1517390556544)