
.post_tab{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
}

.post_tab_item.active{
    background-color: #376678;
    color: #fff;
}
.post_tab_item{
    width: calc(200px - 10px);
    box-sizing: border-box;
    padding: 10px 0;
    text-align: center;
    background-color: #b7b7b7;
    color: #000;
    margin: 0 10px 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select_box{
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-bottom: 30px;
}

.search_box{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.select_title{
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 20px;
}

.search_btn{
    border: none;
    background-color: #376678;
    color: #fff;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 10px 15px;
    cursor: pointer;
}
.search_inp{
    border-radius: 3px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    padding: 10px 15px;
    margin-right: 20px;
}

.table_box .table_tips {
    padding: 10px;
    font-size: 12px;
    color: red;
}
.table_box table {
    width: 100%;
}
.table_box table thead tr th{
    background-color: #f7f7f7;
}
.table_box table tbody tr td,
.table_box table thead tr th{
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}
.table_box{
    width: 100%;
}