.colorful-table {
    // 偶数行
    .tr:nth-child(2n) .td {
        background-color: #FFFFFF;
    }
    // 奇数行
    .tr:nth-child(2n+1) .td {
        background-color: #EBF3FF;
    }
    .table-head {
        .th {
            color: #FFF;
            background-color: #2F82F5;
            font-family: 微软雅黑;
            font-weight: 700;
            line-height: 30px;
        }
    }
    .tr {
        height: 30px;
        line-height: 30px;
    }
    .td, .th {
        padding: 0 5px 0 5px;
    }
}
