/* Add additional stylesheets below
-------------------------------------------------- */
/*
	配合 DataTables CSS（ 包括 FixedHeader 等） 文件使用的，自己修正的一些CSS样式
	DataTables 自带的一些样式跟我们整体的系统样式风格不是很匹配，所以要进行修正
*/


/* 注意：fixedHeader自带的一些样式需要进行如下调整 */
table.dataTable {
  border-collapse: collapse;	/*边框会合并为一个单一的边框*/
  border-spacing: 0;
  width: 100%;
  margin-bottom: 20px;  
}

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}

table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}

table.dataTable thead th,
table.dataTable tbody th,
table.dataTable tfoot th,
table.dataTable thead td,
table.dataTable tbody td,
table.dataTable tfoot td {
  padding: 5px;
}

/* 官方设置的是 box-sizing: content-box; 不能修改，修改成别的值后，表头固定后对不齐 */



table.dataTable thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* 官方设置的是 border-bottom: 1px solid #111; */
table.dataTable.no-footer {
  border-bottom: 0px none;
}


/* -------------------------------------------------------------------------------------------- */










