@charset "UTF-8";

/* table_component 表格组件 */
table {
    background-color: transparent;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th {
    border-top: 0;
    font-weight: normal;
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #65aaef;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    border-top: 1px solid #ddd;
}
tr td:nth-child(2) a {
    padding: 4px 6px;
    margin-right: 5px;
    border: 1px solid transparent;
}
tr td:nth-child(2) a i{
    font-size:14px
}
th {
    text-align: left;
    font-size: 16px
}
td, th {
    padding: 0;
}
tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}
.table>tbody>tr:hover {
    background-color: #f5f5f5
}