.fb-body-title{
    display: flex;
    align-items: center;
    font-size: 16px;
}
.fb-body-title-icon{
    width: 4px;
    height: 17px;
    background-image: linear-gradient(5deg, #3498ff 0%, #39acff 100%), linear-gradient(0deg, #39a9fe 0%, #ffffff 100%);
    background-blend-mode: normal, normal;
    box-shadow: 0px 0px 6px 0px rgba(0, 141, 242, 0.46);
    border-radius: 2px;
    margin-right: 14px;
}
.fb-list-search{
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items:center;

}

/*表格*/
.fb-block-table-nolist{
    min-height: 550px;
}
.fb-block-table{
    margin-top:20px;
    box-shadow: 0px 2px 6px 0px rgba(224, 237, 249, 0.46);
    border-radius: 8px;
    background: #fff;
}
.fb-list-container{
    position: relative;
}
.fb-list-title {
    height: 76px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0 30px;
}
.fb-table{
    border-spacing: 0;
    width: 100%;
    word-break:break-all;
}
.fb-table-title{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.fb-table tr>td {
    text-align: center;
    align-items: center;
    padding: 21px 14px;
    background: #fff;
    font-size: 14px;
    color: #383838;
}
.fb-table tr>td.fb-table-justify {
    text-align: justify;
}
.fb-table>thead>tr>th{
    /*background: #f9f9f9;*/
    padding: 20.5px 0;
    font-size: 14px;
    color: #666666;
    font-weight: 300;
    background-color: #f3f8fc;
    box-shadow: 0px 0px 3px 0px rgba(233, 235, 239, 0.46);
}
.fb-table tr:first-child th:first-child {
    border-top-left-radius: 8px;
}
.fb-table tr:first-child th:last-child {
    border-top-right-radius: 8px;
}
.fb-table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.fb-table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.fb-table tr th.no-border:first-child,.fb-table tr th.no-border:first-child {
    border-radius: 0;
}
.fb-table tr th.no-border:last-child,.fb-table tr th.no-border:last-child {
    border-radius: 0;
}
.fb-table td,.fb-table th{
    border-right: solid 1px #f1f1f1;
    border-bottom: solid 1px #f1f1f1;
}
.fb-table tr:last-child>td{
    border-bottom: none;
}
.fb-table tr>td:last-child{
    border-right: none;
}
.fb-table tbody>tr:hover>td{
    /*background-color: #eff8ff;*/
    background-color: #eff9ff;
}
.fb-table-act{
    font-size: 14px;
}
.fb-table-act-color{
    color: #3faefe;
}
.fb-table-img{
    width: 90px;
    height: auto;
    border-radius: 6px;
}
.fb-table-act-td>a{
    margin-right: 27px;
}
.fb-table-act-td>a:last-child{
    margin-right: 0px;
}
.fb-table-sort{
    width: 12px;
    height: 18px;
    display: block;
    margin-left: 10px;
    background: url(../img/no-sort.png) no-repeat;
}
.fb-sort-container{
    display: flex;
    align-items:center;
    justify-content: center;
    cursor: pointer;

}
.fb-sort-container>div{
    max-width: 70%;
}
.fb-table-sort.fb-sort-up{
    background: url(../img/ascending.png) no-repeat;
}
.fb-table-sort.fb-sort-down{
    background: url(../img/-Descending-order.png) no-repeat;
}
.switch-container{
    display: flex;
    align-items:center;
}
.switch-container>label{
    margin: 0 auto;
}

.search-contianer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-contianer-title{
    /*width: 120px;*/
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 16px;
    color: #666666;
}
/*无数据列表占位图*/
.no-list{
    background: #ffffff;
    width: 248px;
    position: absolute;
    left: calc(50% - 100.5px);
    top:216px;

}
.no-list-msg{
    margin-top: 21px;
    color: #c1c4c6;
    font-size: 16px;
    text-align: center;
}