table {
    width: 85%;
    /* background-color: #666666; */
    border-collapse: collapse;
    margin:auto;
    
}

td {
    height: 30px;
    line-height: 30px;
    /* font-size: 16px; */
    text-align: left;
    border: 0px solid #000;
}

.sylj{
    font-size:16px;
    font-weight: bold;
}
/* odd 标识奇数行，even标识偶数行 */

/* tr:nth-of-type(odd) {
    background: rgb(233, 234, 236);
} */


/*第一行标题蓝色背景*/

/* table tr:first-child {
    background: #98bf21;
} */

/* table tr:first-child td {
    text-align: left;
    text-indent: 1em;
    font-weight: bold;
} */


/* 因为是链接，所以改变td里的字体颜色没用，必须改变a里的颜色才有效 */

table tr:first-child td a {
    color: #fff;
}