table {
    width: 90%;
    /*表格居中 */
    margin: auto; 
    
    /* background-color: #666666; */
    border-collapse: collapse;
}

th{
    height: 30px;
    line-height: 30px;
    /* font-size: 16px; */
    text-align: center;
    border: 1px solid #000;
}
td{
    height: 25px;
    line-height: 25px;
    padding-left: 3px;
    /* font-size: 16px; */
    text-align: left;
    border: 1px 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;
}