/* banner图 */
.banner-wrap{
    width: 100%;
    height: auto;
    font-size: 0;
}
.banner-wrap img{
    width: 100%;
    height: 100%;
}
/* 路由跳转 */
.router-wrap{
    width: 100%;
    height: 80px;
    box-shadow:0 2px 5px rgba(100, 100, 100, 0.5);
}
.router-list{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.router-item a{
    display: inline-block;
    width: 130px;
    height: 80px;
    text-align: center;
    font-size: 16px;
    line-height: 80px;
}
.router-itemOn a{
    color: white;
    background-color: #54B33E;
}
/* 职位 */
.position-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
}
.position-box{
    max-width: 1200px;
    margin: 0 auto;
}
.positionItem{
    margin-top: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F0F0F0;
}
.positionItem:first-child{
    margin-top: 0;
}
.positionText{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.positionName{
    color: #54B33E;
    font-size: 18px;
}
.positionRequire{
    margin-top: 20px;
    color: #333333;
    font-size: 14px;
}
.openBtn{
    cursor: pointer;
    color: #333333;
    font-size: 24px;
}
.closeBtn{
    color: #82B62B;
    font-size: 24px;
}
.positionDetail{
    display: none;
    padding-top: 30px;
    color: #666666;
    font-size: 14px;
    line-height: 30px;
}
/* 分页按钮 */
.paging-wrap{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 86px;
}
.paging-prev,.paging-next{
    cursor: pointer;
    display: inline-block;
    width: 120px;
    height: 50px;
    color: #666666;
    font-size: 34.38px;
    border: 1px solid #E5E5E5;
    text-align: center;
    line-height: 50px;
    background-color: white;
}
.page-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-num{
    width: 75px;
    height: 50px;
    color: #333333;
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    margin: 0 10px;
}
.page-num a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #E5E5E5;
}
.pageNum-on a{
    color: white;
    background: #54B33E;
}
/* 手机端 */
@media screen and (max-width:768px){
    .position-wrap{
        margin-top: 50px;
        padding: 0 50px;
    }
}