css样式 奇数 (隔一个样式一样)

.home a:nth-of-type(odd){ }

css样式 偶数 

.home a:nth-of-type(even){background:#0000ff;}

或者是数组函数

.home a:nth-of-type(2n){background:#0000ff;}

.home a:nth-of-type(2n+1){background:#0000ff;}