.job-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 0;
}
.job-filter{
    width: 90%;
    /*background: #F5F5F5;*/
    display: flex;
    margin-top:20px;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
.job-filter-container {
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 5px;
}

.filter-title{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 20px;
}
.filter-title i {
    font-size: 30px;
    color: #0056BD;
    margin-right: 10px;
}
.filter-title span {
    color: #0056BD;
    font-weight: bold;
    display: block;
    white-space: nowrap;
}
.job-filter ul{
    display: flex;
    flex-wrap: wrap;
}
.job-filter li {
    border: none;
    outline: none;
    background-color: #F5F5F5;
    margin: 8px;
    border-radius: 6px;
}
.job-filter .checked {
    background: #0056BD;
    border-radius: 6px;
    color: white;
}
.job-filter li:hover {
    background: #0056BD;
}

.job-filter li:hover span {
    color: white;
}

.job-filter li span {
    margin: 5px;
    font-size: 14px;
    display: block;
    white-space: nowrap;
}


/* 职位列表样式 */
.job-list{
    margin: 20px 12px;
    width: 90%;
    text-align: center;
    border-collapse: collapse;
    border-bottom: 1px solid #EDEDED;
}
.job-list thead {
    color: #333;
    font-weight: bold;
}

.job-list thead tr {
    height: 50px;
    color: #333;
    font-weight: bold;
}

.job-list thead td {
    height: 50px;
}
.no-data{
    display: none;
}

