.page-header {
    height: calc(540 * var(--rpx));
}

section .wrapper {
    /*
    *960px at 1920
    *900px at 960
    */
    width: calc(6.250vw + 840px)
}

.page-header {
    color: #000;
}

.page-header .btn-back {
    margin-bottom: calc(36 * var(--rpx));
    display: flex;
    align-items: center;
}

.page-header .title {
    margin-bottom: calc(4 * var(--rpx));
}

.btn-back::before {
    content: "";
    font-size: 1rem;
    width: calc(40em / 16);
    height: calc(40em / 16);
    border-radius: 50%;
    margin-right: calc(18em / 16);
    background: #e70012 url("../images/icon_arrow_left_white.svg") center/calc(15em / 16) calc(12em / 16) no-repeat;
}

section.main {
    border-bottom: 1px solid #dfe2e5;
    font-size: calc(20rem / 16);
    /*font-weight: lighter;*/
}

.main .wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: calc(50 * var(--rpx));
    padding-bottom: calc(80 * var(--rpx));
    position: relative;
}

.main .left {
    flex: 0 0 auto;
    width: calc(200 * var(--rpx));
    top: 0;
}

.main .right {
    width: calc(100% - 240 * var(--rpx));
    flex: 0 0 auto;
}

.left-title {
    margin-bottom: calc(18 * var(--rpx));
    font-weight: bold;
}

.location-list {
    margin-bottom: calc(20 * var(--rpx));
}

.location {
    display: block;
    line-height: 1.5em;
    padding-top: calc(10em / 20);
    padding-bottom: calc(10em / 20);
    padding-left: 1em;
    border-left: 2px solid #fff;
}

.location.active {
    border-left-color: #e70012;
    background: #f6f7f8 url("../images/icon_arr_right_red.svg") calc(100% - calc(20em / 20)) center/calc(7em / 20) auto no-repeat;
}

.main .right {

}

.external-link-list.mobile{
    display: none;
}

.external-link {
    display: block;
    margin-bottom: calc(20 * var(--rpx));
    width: 100%;
    box-shadow: 0 calc(10 * var(--rpx)) calc(20 * var(--rpx)) rgba(0, 0, 0, 0.06);
    transition: .3s;
}

.external-link img {
    display: block;
    width: 100%;
    height: auto;
}

.external-link:hover {
    transform: translateY(-5%);
    box-shadow: 0 calc(15 * var(--rpx)) calc(24 * var(--rpx)) rgba(0, 0, 0, 0.1);
}

.right-title {
    font-size: calc(38 * var(--rpx));
    font-weight: bold;
    margin-bottom: 4.5rem;
}

.job-list .job {
    width: 100%;
    padding: calc(30 * var(--rpx)) calc(36 * var(--rpx));
    cursor: pointer;
    background: #f6f7f8;
    transition: .3s;
    margin-bottom: calc(20 * var(--rpx));
}

.job .title {
    font-size: calc(24 * var(--rpx));
    font-weight: bold;
    margin-bottom: calc(6 * var(--rpx));

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.job .keyword {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.job .more {
    margin-top: calc(32 * var(--rpx));
    font-size: calc(14rem / 16);
    filter: url(#gray-overlay);
    transition: .3s;
}

.job .more::after {
    content: "";
    width: calc(7em / 14);
    height: calc(12em / 14);
    margin-left: calc(8em / 14);
    vertical-align: middle;
    margin-top: calc(-3em / 14);
    display: inline-block;
    background: url("../images/icon_arr_right.svg") center/contain no-repeat;
}

.job-list .job:hover {
    background: #fff;
    box-shadow: 0 calc(10 * var(--rpx)) calc(20 * var(--rpx)) 0 rgba(0, 0, 0, 0.08);
}

.job:hover .more {
    filter: url(#red-overlay);
}

.job-dialog-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;

    overflow: auto;
    padding-top: calc(120 * var(--rpx));
    padding-bottom: calc(120 * var(--rpx));
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.job-dialog-layer.show{
    opacity: 1;
    visibility: visible;
}

.job-dialog {
    width: calc(960 * var(--rpx));
    height: auto;
    flex: 0 0 auto;
    background-color: #fff;
    position: relative;
    margin: auto;
}

.job-dialog .btn-close {
    position: absolute;
    right: calc(24 * var(--rpx));
    top: calc(24 * var(--rpx));
    width: calc(50 * var(--rpx));
    height: calc(50 * var(--rpx));
    border-radius: 50%;
    background: #e70012 url("../images/icon_close.svg") center/calc(12 * var(--rpx)) auto no-repeat;
    cursor: pointer;
}

.job-dialog .btn-close:hover {
    filter: brightness(1.2);
}

.job-dialog .header {
    padding: calc(32 * var(--rpx)) calc(56 * var(--rpx));
    background-color: #fff;
    /*font-weight: lighter;*/
}

.job-dialog .content{
    padding: calc(36 * var(--rpx)) calc(56 * var(--rpx)) calc(56 * var(--rpx)) calc(56 * var(--rpx));
    font-size: calc(18rem / 16);
    background-color: #f8f9fb;
    /*font-weight: lighter;*/
    line-height: calc(34em / 18);
    overflow: auto;
}

.job-dialog .content h1,
.job-dialog .content h2,
.job-dialog .content h3,
.job-dialog .content h4,
.job-dialog .content h5,
.job-dialog .content h6{
    padding-left: .5em;
    font-weight: bold;
    position: relative;
    line-height: 1em;
    margin-bottom: 1.5em;
}

.job-dialog .content h1::before,
.job-dialog .content h2::before,
.job-dialog .content h3::before,
.job-dialog .content h4::before,
.job-dialog .content h5::before,
.job-dialog .content h6::before{
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgb(80,155,223) 0%, rgb(72,192,206) 50%, rgb(221,187,193) 100%);
}

.job-dialog .content h1{
    font-size: calc(24em / 18);
}

.job-dialog .content h2,
.job-dialog .content h3,
.job-dialog .content h4,
.job-dialog .content h5,
.job-dialog .content h6{
    font-size: calc(20rem / 16);
}

.job-dialog .content p+h1,
.job-dialog .content p+h2,
.job-dialog .content p+h3,
.job-dialog .content p+h4,
.job-dialog .content p+h5,
.job-dialog .content p+h6{
    margin-top: 2em;
}
.loading-wrap {
    /* display: flex;
    justify-content: center; */
    position: relative;
    padding-bottom: 40%;
}

.loading-wrap .icon-1,
.loading-wrap .icon-3 {
    position: absolute;
    animation: loading 2s infinite linear;
    aspect-ratio: 1;
    width: 9%;
    height: auto;
}

.loading-wrap .icon-2 {
    aspect-ratio: 1;
    width: 13.5%;
    height: auto;
    position: absolute;
    animation: loading2 2s infinite linear;
}

@keyframes loading {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes loading2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-wrap .icon-1 {
    left: 44%;
    top: 2%;
}

.loading-wrap .icon-2 {
    left: 50%;
    top: 11%;
}

.loading-wrap .icon-2 path {
    fill: #d72f2b;
}

.loading-wrap .icon-3 {
    left: 44%;
    top: 32%;
}


@media (max-width: 750px) {
    .main .wrapper{
        width: calc(100% - 60 * var(--rpx));
        display: block;
    }

    .main .left{
        width: 100%;
        margin-bottom: calc(60 * var(--rpx));
    }

    .main .right{
        width: 100%;
    }

    .external-link-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .external-link-list.mobile{
        display: flex;
        margin-top: calc(30 * var(--rpx));
    }

    .external-link-list.pc{
        display: none;
    }

    .external-link{
        width: calc(50% - 10 * var(--rpx));
        margin-bottom: calc(20 * var(--rpx));
        flex: 0 0 auto;
    }

    .job-dialog{
        width: calc(100% - 60 * var(--rpx));
        max-height: 60vh;

        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .job-dialog .btn-close{
        top: calc(12 * var(--rpx));
        right: calc(12 * var(--rpx));
    }

    .job-dialog .content{
        overflow: auto;
        flex: 0 1 auto;
        padding: calc(28 * var(--rpx)) calc(32 * var(--rpx));
    }

    .job-dialog .header{
        padding: calc(28 * var(--rpx)) calc(60 * var(--rpx)) calc(24 * var(--rpx)) calc(32 * var(--rpx));
    }

    .job-dialog .header *{
        white-space: normal;
    }

    .job-dialog .btn-close{
        position: absolute;
    }

    .action--site-social-recruitment .page-header .header-back{
        object-position: 45% center;
    }
}
