1.修改默认的hover颜色
.table-hover>tbody>tr:hover>td, .table-hover>tbody>tr:hover>th{
background-color: red;
}
2. 不要 表格边框
.bootstrap-table * {
border: none !important;
}
3.修改点击事件后选中颜色
.changeColor{
background-color: green !important;
color: white;
}