/* 设置表格 
table {
    
    border: 1px solid white;
}

th {
    border: 1px solid white;
}*/

/* 设置表格中每一个单元格 
td {
    border: 1px solid white;
}*/

/* 设置排名为奇数的一行表格 */
.odd {
    background-color: #c6cdff;
    height: 25px;
    color: white;
    text-shadow: #000000 1px 1px 10px;
}

/* 设置排名为偶数的一行表格 */
.even {
    background-color: #2194d9;
    height: 25px;
    color: white;
    text-shadow: #000000 1px 1px 10px;
}