·
Across the Great Wall, we can reach every corner in the world.

直接 tr 选子类对齐就可以:

tr:nth-child(2) {
    text-align: left;
}

选择器示例

tr:nth-child(2n+1)表示HTML表格中的奇数行。tr:nth-child(odd)表示HTML表格中的奇数行。tr:nth-child(2n)表示HTML表格中的偶数行。tr:nth-child(even)表示HTML表格中的偶数行。

参考 mdn 文档:nth-child