/* ----------JOB---------- */
/*招聘项目详情*/
.job-info {
    max-width: var(--page-maxwidth);
    padding: 0 var(--page-padding);
    margin: 120px var(--page-margin);
    display: flex;
    gap: 80px;
    justify-content: space-between;
    flex-direction: row;

    /*招聘职位*/
    .job-menu {
        max-width: 30%;
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        a {
            display: flex;
            align-items: center;
            box-sizing: border-box;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            height: 120px;
            color: #808080;
            font-size: 28px;
            width: 100%;
            background: #fff;
            position: relative;
            margin-bottom: -1px;
            padding-right: 30px;
        }

        a::after {
            content: "";
            width: 40px;
            height: 40px;
            position: absolute;
            right: 20px;
            background: url(../imgs/ico_arrow.svg) no-repeat center right / auto 50%;
            opacity: 0;
            transition: all .3s ease-in-out;
        }

        a:hover,
        a.active {
            color: #222;
        }

        a:hover::after,
        a.active::after {
            right: 0;
            opacity: 1;
        }
    }

    /*招聘详细*/
    .job-detail {
        display: flex;
        max-width: 70%;
        width: 70%;
        height: auto;
        overflow: hidden;
        box-sizing: border-box;
        border: 1px solid #ddd;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        padding: 80px 80px 200px 80px;
        box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.05);
        background: linear-gradient(360deg, #FDFBFB 0%, #EBEDEE 100%);
        border-radius: 0 0 200px 0;
        flex-direction: column;

        h2 {
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
            display: block;
            width: 100%;
        }

        .content {
            line-height: 40px;
            font-size: 20px;
            color: #222;

        }
    }

    .job-detail::after {
        content: " ";
        position: absolute;
        bottom: 0;
        right: 0;
        background: url(../imgs/img_pageCorner.svg) no-repeat right bottom /100%;
        width: 200px;
        height: 200px;
    }
}


/*-----------------------------------1600-----------------------------------*/
@media screen and (max-width:1600px) {}



/*-----------------------------------1300-----------------------------------*/
@media screen and (max-width:1300px) {
    .job-info {
        gap: 60px;
    }
}



/*-----------------------------------1000-----------------------------------*/
@media screen and (max-width:1000px) {
    .job-info {
        margin: 80px var(--page-margin);
        gap: 30px;

        .job-menu {
            a {
                font-size: 24px;
            }
        }

        .job-detail {
            padding: 40px 40px 100px 40px;
            border-radius: 0 0 100px 0;

            h2 {
                font-size: 20px;
                margin-bottom: 20px;
            }
        }

        .job-detail::after {
            content: " ";
            position: absolute;
            bottom: 0;
            right: 0;
            background: url(../imgs/img_pageCorner.svg) no-repeat right bottom / 100%;
            width: 100px;
            height: 100px;
        }
    }
}


/*-----------------------------------500------------------------------------*/
@media screen and (max-width:500px) {
    .job-info {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .job-menu {
            max-width: 100%;
            width: 100%;

            a {
                height: 80px;
            }
        }

        .job-detail {
            max-width: 100%;
            width: 100%;
        }
    }
}