.con {
    padding: 50px 0px 70px 0px;
}

.formBox {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
}

.formBox>div {
    background: #F8F9FB;
    position: relative;
}

.chooseBox {
    width: 28%;
}

.inputBox {
    display: block;
    width: 100%;
    line-height: 56px;
    padding: 0px 40px 0px 20px;
    color: #333;
    cursor: pointer;
    position: relative;
}

.inputBox::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    display: block;
    width: 6px;
    height: 11px;
    background: url(../images/triangle7.png)no-repeat center center;
    background-size: 100% 100%;
}

.chooseDropDown {
    position: absolute;
    z-index: 10;
    top: calc(100% + 30px);
    left: -99999px;
    width: 100%;
    height: auto;
    text-align: center;
    opacity: 0;
    -webkit-transition: top 0.5s, opacity 0.5s;
    -moz-transition: top 0.5s, opacity 0.5s;
    -o-transition: top 0.5s, opacity 0.5s;
    transition: top 0.5s, opacity 0.5s;
}

.chooseDropDown ol {
    background: #fff;
    box-shadow: 0px 6px 20px rgba(16, 59, 138, 0.12);
}

.chooseDropDown ol {
    max-height: 320px;
    overflow-y: auto;
}

.chooseDropDown li {
    padding: 10px 14px;
    color: #666;
    cursor: pointer;
}

.chooseDropDown li:hover {
    background: rgb(249, 252, 252);
    color: #32A3C6;
}

.chooseDropDown.on {
    top: 100%;
    left: 0px;
    opacity: 1;
    -webkit-transition: top 0.5s, opacity 0.5s;
    -moz-transition: top 0.5s, opacity 0.5s;
    -o-transition: top 0.5s, opacity 0.5s;
    transition: top 0.5s, opacity 0.5s;
}

/* 搜索框 */
.searchBox {
    width: 40%;
    display: flex;
    align-items: center;
}

.searchBox button {
    border: none;
    background: none;
    padding: 0px 20px;
    flex-shrink: 0;
    color: #32A3C6;
    position: relative;
}

.searchBox button::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 18px;
    background: #C4C4C4;
    opacity: 0.3;
}

.searchBox input {
    display: block;
    flex-grow: 1;
    line-height: 56px;
    padding: 0px 16px 0px 44px;
    background: url(../images/search.png)no-repeat center left 16px;
    background-size: 16px 16px;
}



/* 招聘列表 */
.recruitmentUl {
    margin-bottom: 50px;
}

.recruitmentUl>li {
    border-bottom: 1px solid #EDF0F4;
}

.recruitmentLi {
    padding: 20px 75px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

.recruitmentLi h3 {
    color: #333;
    padding-left: 30px;
    background: url(../images/recruitmentIcon.png)no-repeat center left;
    background-size: 18px 18px;
}

.recruitmentLi:hover h3 {
    color: #32A3C6;
}

.recruitmentLi p {
    color: #999;
    margin-left: 50px;
    flex-shrink: 0;
}

.recruitmentBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -2px;
    flex-shrink: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.recruitmentBtn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.recruitmentBtn span:first-child {
    width: 12px;
    height: 2px;
    border-radius: 10px;
    background: #82CBD9;
}

.recruitmentBtn span:last-child {
    width: 2px;
    height: 12px;
    border-radius: 10px;
    background: #82CBD9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.recruitmentBtn.active span:last-child {
    height: 0px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 详情内容 */
.recruitmentOl {
    display: none;
    background: #F8F9FB;
}

.recruitmentCon {
    padding: 40px 45px;
}

.recruitmentCon>div {
    margin-bottom: 45px;
}

.recruitmentCon h4 {
    color: #333;
    margin-bottom: 14px;
}

.recruitmentTxt {
    color: #666;
}

.recruitmentCon button {
    border: 1px solid #999999;
    border-radius: 100px;
    color: #666;
    line-height: 42px;
    padding: 0px 32px;
    background: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.recruitmentCon button:hover {
    transform: translateY(-5px);
    background: #82CBD9;
    border: 1px solid #82CBD9;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 投递简历 弹窗 */
.recruitmentLayer {
    width: 520px !important;
    border-radius: 6px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.layui-layer-shade {
    opacity: 0.6 !important;
}

.recruitmentLayer .layui-layer-title {
    height: 70px;
    line-height: 70px;
    padding: 0px 24px;
    background-color: #fff;
    border-radius: unset;
    font-size: 22px;
    border-bottom: 1px solid #EDF0F4;
    font-weight: bold;
}

.recruitmentLayer .layui-layer-setwin {
    right: 24px;
    top: 28px;
}

.popUpCon {
    padding: 30px 24px;
}

.popUpCon label {
    display: block;
    margin: 0px;
    width: 100%;
}

.popUpUl>li {
    margin-bottom: 26px;
}

.popUpUl>li:last-of-type {
    margin-bottom: 0px;
}

.popUpCon .subBtn {
    display: block;
    width: 100%;
    height: 56px;
    background: #82CBD9;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin-top: 40px;
}

.label1 {
    display: flex;
    align-items: center;
}

.labelL {
    width: 84px;
    flex-shrink: 0;
    color: #333;
    font-weight: bold;
}

.label1 input {
    flex-grow: 1;
    line-height: 55px;
    padding: 0px 18px;
    background: #F8F9FB;
    border-radius: 4px;
}

.label1 img {
    height: 56px;
    width: auto;
    margin-left: 12px;
}

.tip {
    padding-left: 84px;
    margin-top: 8px;
    color: #999;
}

/* 上传 */
.fileInput {
    position: relative;
}

.fileInput input {
    display: none;
}
/*
.fileInput span {
    display: block;
    max-width: 388px;
    line-height: 55px;
    height: 55px;
    padding: 0px 20px;
    border: 1px solid #82CBD9;
    color: #82CBD9;
    border-radius: 4px;
    cursor: pointer;
}
*/
.fileBox {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}



/* 适配 */
@media (max-width: 1440px) {
    .con {
        padding: 40px 0px;
    }

    .formBox {
        margin-bottom: 40px;
    }

    .recruitmentLi h3 {
        font-size: 18px;
    }

    .recruitmentLi p {
        font-size: 14px;
    }

    .recruitmentLi {
        padding: 18px 60px 18px 0px;
    }

    .recruitmentCon {
        padding: 26px 30px;
    }

    .recruitmentCon h4 {
        font-size: 16px;
        margin: 0px 0px 14px 0px;
    }

    /* 弹窗 */
    .recruitmentLayer .layui-layer-title {
        font-size: 18px;
        line-height: 60px;
        height: 60px;
    }

    .recruitmentLayer .layui-layer-setwin {
        top: 24px;
    }

    .label1 input,
    .fileInput span {
        line-height: 50px;
        height: 50px;
    }

    .label1 img {
        height: 50px;
    }
}

@media (max-width: 992px) {
    .con {
        padding: 30px 0px;
    }

    .formBox {
        flex-wrap: wrap;
    }

    .chooseBox {
        width: 48%;
        margin-bottom: 16px;
    }

    .searchBox {
        width: 100%;
    }

    .chooseDropDown ol {
        max-height: 200px;
    }

    .chooseDropDown li {
        padding: 8px 14px;
    }

    .recruitmentLi h3 {
        font-size: 16px;
    }

    .recruitmentLi {
        padding: 14px 30px 14px 0px;
    }

    .recruitmentBtn {
        right: 0px;
    }

    .recruitmentCon {
        padding: 18px 20px;
    }

    .recruitmentCon>div {
        margin-bottom: 32px;
    }

    .recruitmentCon button {
        line-height: 38px;
    }

    .popUpCon {
        padding: 22px 24px;
    }

    .label1 input,
    .fileInput span {
        height: 46px;
        line-height: 46px;
    }

    .label1 img {
        height: 46px;
    }

    .labelL {
        width: 70px;
    }

    .tip {
        padding-left: 70px;
    }

    .popUpUl>li {
        margin-bottom: 18px;
    }

    .recruitmentLayer {
        width: 480px !important;
    }

    .popUpCon .subBtn {
        height: 50px;
        font-size: 16px;
        margin-top: 26px;
    }

    .fileInput span {
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .chooseBox {
        width: 100%;
        margin-bottom: 12px;
    }

    .inputBox {
        line-height: 46px;
        padding-left: 16px;
    }

    .searchBox input {
        padding: 0px 14px 0px 34px;
        line-height: 46px;
        background: url(../images/search.png)no-repeat center left 12px;
        background-size: 12px 12px;
    }

    .formBox {
        margin-bottom: 22px;
    }

    .mPageBox {
        width: 100%;
    }

    .recruitmentUl {
        margin-bottom: 28px;
    }

    .recruitmentLi {
        flex-direction: column;
        align-items: unset;
    }

    .recruitmentLi h3 {
        background-size: 14px 14px;
        padding-left: 22px;
    }

    .recruitmentLi p {
        margin: 8px 0px 0px 0px;
        font-size: 12px;
    }

    .recruitmentBtn {
        transform: unset;
        top: 17px;
    }

    .recruitmentLi {
        padding: 16px 30px 8px 0px;
    }

    .recruitmentCon h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .recruitmentCon {
        padding: 18px 16px;
    }

    .recruitmentCon>div {
        margin-bottom: 22px;
    }

    /*  */
    .recruitmentLayer {
        width: 90% !important;
    }

    .recruitmentLayer .layui-layer-title {
        font-size: 16px;
        line-height: 50px;
        height: 50px;
        padding: 0px 18px;
    }

    .recruitmentLayer .layui-layer-setwin {
        top: 18px;
        right: 16px;
    }

    .popUpCon {
        padding: 18px 14px;
    }

    .label1 {
        flex-wrap: wrap;
    }

    .labelL {
        width: 100%;
        margin-bottom: 4px;
        font-weight: normal;
    }

    .label1 input,
    .fileInput span {
        height: 38px;
        line-height: 38px;
        padding: 0px 14px;
    }

    .fileInput span {
        max-width: 255px;
    }

    .tip {
        padding: 0px;
    }

    .label1 img {
        height: 38px;
        margin-left: 8px;
    }

    .codeInput {
        max-width: 48%;
    }

    .popUpCon .subBtn {
        height: 42px;
        font-size: 14px;
        margin-top: 15px;
    }
}


/**/
 .zpList .pubA {
            cursor: pointer;
            border: 1px solid #CFCFCF;
            color: #666;
        }

        @media (min-width: 768px) {
            .zpList .pubA:hover {
                color: #fff;
                border: 1px solid #E60012;
            }
        }

        .subPopUp {
            position: fixed;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none;
        }

        .subConBox {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subLabel {
            width: 90%;
            max-width: 460px;
            background: #fff;
            box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }

        .popUpTitle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 24px;
            border-bottom: 1px solid #E6E6E6;
        }

        .popUpTitle span {
            display: block;
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            cursor: pointer;
        }

        .popUpCon {
            padding: 20px 24px 30px;
        }

        .popUpCon label {
            display: block;
            margin-bottom: 0px;
            font-weight: unset;
        }

        .itemBox {
            margin-bottom: 18px;
        }

        .popUpCon .itemBox:last-of-type {
            margin-bottom: 0px;
        }

        .itemBox>p {
            color: #333;
            margin-bottom: 16px;
        }

        .nameInput input,
        .codeBox input {
            width: 100%;
            line-height: 52px;
            background: #F7F7F7;
            padding: 0px 16px;
            border-radius: 4px;
        }

        .fileInput input {
            display: none;
        }

        .fileInput {
            display: flex;
        }

        .fileInput span {
            display: block;
            line-height: 42px;
            padding: 0px 16px;
            border: 1px solid #82CBD9;
            color: #82CBD9;
            border-radius: 4px;
            flex-shrink: 0;
            cursor: pointer;
            margin-right: 14px;
        }

        .fileInput p {
            color: #666;
            line-height: 42px;
            max-width: 200px;
        }

        .codeBox input {
            width: 200px;
            margin-right: 10px;
        }

        .popUpCon .subBtn {
            display: block;
            width: 100%;
            height: 46px;
            line-height: 46px;
            margin: 40px auto 0px auto;
            background: #82CBD9;
            color: #fff;
            border: 1px solid #82CBD9;
            border-radius: 4px;
        }

        @media (max-width: 767px) {
            .popUpTitle {
                padding: 18px;
            }

            .popUpCon {
                padding: 18px 16px 24px 16px;
            }

            .itemBox>p {
                margin-bottom: 8px;
            }

            .nameInput input,
            .codeBox input,
            .fileInput span {
                line-height: 42px;
            }
            .fileInput span{
                height: 42px;
            }

            .itemBox {
                margin-bottom: 20px;
            }

            .fileInput p {
                max-width: 140px;
            }

            .codeBox input {
                width: 40%;
            }
        }