/*隔行换色*/
tr:nth-child(odd) {background-color: royalblue;}
tr:nth-child(even) {background-color: gold;}
tr:nth-child(1) {background-color: teal;}
tr:nth-child(odd) {background-color: royalblue;}
tr:nth-child(even) {background-color: gold;}
tr:nth-child(1) {background-color: teal;}