/**
  Created with IntelliJ IDEA 2017.2.3.
  author: LXF
  DateTime: 2020/4/7 14:20
  updateTime: 2020/4/7 14:20
  Description: 
 */
@charset "utf-8";

.tool-table{
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.tool-table .table-header-group{
    display: table-header-group;
    height: 40px;
    background-color: #0e9249;
    line-height: 40px;
    color: #fff;
}
.tool-table .table-row-group{
    display: table-row-group;
}
.tool-table .table-row{
    display: table-row;
}
.tool-table .table-row>div{
     display: table-cell;
 }

.tool-floatTab .table-row>div{
    float: left;
}
.tool-floatTab .table-row{
    clear: both;
}
.tool-floatTab .table-row:after {
    content: ' ';
    clear: both;
    display: block;
}