/* 強制表格100%，若不設定則無法響應 */
figure.table{
    width: 100% !important;
}

/* 如果做以下設定值，則表格除th外的顏色無法更改 */

/* 斑馬紋 */
figure.table table tbody tr{
    background-color: #fff !important;
}

figure.table table tbody tr:nth-of-type(odd){
    background-color: rgba(0, 0, 0, 0.05) !important;
}

/* pc以上hover效果 */
@media(min-width:1200px){
    figure.table table tbody tr:hover {
        background-color: #FEE6AA !important;
    }   
}

