.tableModel{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tableModel thead {
    width: 100%;
    display: inline-block;
    background: #fafafa;
    overflow: hidden;
    position: relative;
    border: none;
}

.tableModel thead tr {
    width: 100%;
    line-height: 34px;
    display: table;
    white-space: nowrap;
    font-size: 0;
    background: #c8d7f4;
}
.tableModel tbody {
    display: block;
    width: 100%;
    height: calc(100% - 35px);
    overflow: hidden;
    position: relative;
}

.tableModel tbody tr {
    width: 100%;
    height: 32px;
    display: table;
    white-space: nowrap;
    border-bottom: 1px solid #ead7d1;
    font-size: 0;
}

.tableModel th {
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
    height: 34px;
    /*text-align: left;*/
    text-align: center;
    display: inline-block;
    padding: 0;
    border:1px solid #f0f0f0;
    background: #c8d7f4;
    color: #1a4885;
}
.tableModel td{
    font-size: 0;
    text-align: left;
    height: 32px;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    border:1px solid #f0f0f0;
}

.tableModel th span,
.tableModel td span {
    display: inline-block;
    font-size: 16px;
    height: 34px;
    line-height: 32px;
}