.hire-content {
    background: #F6F8FA;
}

.hire-content .pub-container {
    /* background: pink; */
    padding: 0 110px;
}

.hire-content .hire-title {
    font-weight: bold;
    font-size: 36px;
    font-family: "NotoSansRegular", "Noto Sans", sans-serif;
    color: #333333;
    line-height: 50px;
    text-align: center;
    padding: 113px 0 50px;
    /* background-color: red; */
}

/* 搜索 */
.pub-container .hire-search {
    margin: 0 100px 50px;
    background: #FFFFFF;
    height: 84px;
    border-radius: 42px;
    overflow: hidden;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pub-container .hire-search>input {
    height: 100%;
    padding: 0 50px;
    flex: 1;
    font-family: "NotoSansRegular", "Noto Sans", sans-serif;
    font-size: 16px;
    line-height: 22px;
}

.pub-container .hire-search .clean-btn {
    width: 19px;
    height: 19px;
    /* height: 100%; */
    /* background-color: black;  */
    margin: auto 10px;
    cursor: pointer;
}

.pub-container .hire-search .clean-btn>img {
    /* display: none; */
}

.pub-container .hire-search>img {
    margin-right: 50px;
}

/* 岗位 */
.station {
    padding-bottom: 50px;
    /* background-color: red; */
}

.station-item {
    margin-bottom: 30px;
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
}

.station-item:last-child {
    margin-bottom: 0;
}

.station-item .station-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0 60px 0 80px;
    transition: all .5s;
}

.station-item .station-top .cut {
    background: url(../images/hire-station-item-cut-img.png);
    width: 16px;
    height: 16px;
    transition: all .5s;
}

.station-item.open .station-top {
    background: #AB1F24;
    transition: all .5s;
}

.station-item.open .station-top .title {
    color: white;
}

.station-item.open .station-top .cut {
    background: url(../images/hire-station-item-up-cut-img.png);
    /* transform: rotate(-180deg); */
    transition: all .5s;
}

.station-item .title {
    font-weight: bold;
    font-size: 18px;
    font-family: "NotoSansRegular", "Noto Sans", sans-serif;
    color: #333333;
    line-height: 27px;
    padding: 30px 0;
}

/* 岗位 */
.station-item .station-height {
    max-height: 0;
    transition: all .5s;
}

.station-item.open .station-height {
    max-height: 1000px;
    transition: all .5s;
}

.station-item .station-content {
    padding: 40px 80px;
}

.station-content .station-content-item .job {
    font-family: "NotoSansRegular", "Noto Sans", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    line-height: 25px;
    margin-bottom: 10px;
    display: inline-block;
}

.station-content .station-content-item .duty {
    margin: 20px 0;
    font-weight: bold;
    font-family: "NotoSansRegular", "Noto Sans", sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 25px;
    display: inline-block;
}

.station-content .station-content-item .desc {
    font-weight: normal;
    font-family: "NotoSansRegular", "Noto Sans", sans-serif;
    font-size: 16px;
    color: #7F7F7F;
    line-height: 30px;
    text-align: justify;
    margin: 10px 0;
}


.page-box {
    margin: 0 !important;
    padding: 50px 0 80px;
}

@media screen and (max-width:1400px) {}

@media screen and (max-width:1200px) {}

@media screen and (max-width:980px) {
    .page-box {
        margin: 0 !important;
        padding: 20px 0;
    }

    .hire-content .hire-title {
        font-size: 18px;
        font-family: "NotoSansRegular", "Noto Sans", sans-serif;
        line-height: 1.5;
        padding: 20px 0;
    }

    .hire-content .pub-container {
        padding: 0 20px;
    }

    /* 搜索 */
    .pub-container .hire-search {
        margin: 0 20px 20px;
        height: 42px;
    }

    /* 搜索框 */
    .pub-container .hire-search>input {
        padding: 0 20px;
        font-family: "NotoSansRegular", "Noto Sans", sans-serif;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pub-container .hire-search>img {
        margin-right: 20px;
        width: 18px;
        height: 18px;
    }

    .station {
        padding-bottom: 0;
    }

    /* 每一项 标题 */
    .station-item {
        margin-bottom: 20px;
    }

    .station-item .station-top {
        padding: 0 20px 0 20px;
    }

    .station-item .title {
        padding: 15px 0;
        font-family: "NotoSansRegular", "Noto Sans", sans-serif;
        font-size: 14px;
        line-height: 1.5;
    }

    /* 每一项内容 */
    .station-item .station-content {
        padding: 20px 20px;
    }

    .station-content .station-content-item .job {
        font-size: 14px;
        font-family: "NotoSansRegular", "Noto Sans", sans-serif;
        line-height: 1.5;
    }

    .station-content .station-content-item .desc {
        font-size: 14px;
        font-family: "NotoSansRegular", "Noto Sans", sans-serif;
        line-height: 1.2;
    }

    .station-content .station-content-item .duty {
        font-size: 14px;
        font-family: "NotoSansRegular", "Noto Sans", sans-serif;
        line-height: 1.5;
        margin: 10px 0;
    }

}