//table主色调
#ui-table {
  width: 100%;
  line-height: 2em;
  border-collapse: collapse;
  text-align: center;
  table-layout: auto;
  background-color: white;
}

//头尾行颜色
thead>tr,tfoot>tr {
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
//文字属性设置
#ui-table td, #ui-table th {
  padding: 5px 10px;
  font-size: 12px;
  color: #000000d9;
  white-space: nowrap;
}
#ui-table th,#ui-table tfoot td{
  font-weight: 700;

}

td{
  word-break: break-word;

}
th{
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
}

//奇偶行颜色设置
#ui-table>tbody>tr:nth-child(even) {
  background: #fafafa;
}
#ui-table>tbody>tr:nth-child(odd) {
  background:#ffffff ;
}

#ui-table>tbody>tr:hover {
  background: #40a9ff;
}

