@import "social_recruitment.css";

.page-header .share-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: calc(100 * var(--rpx));
    border-top: 1px solid #c8c9ce;

    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.share-icon {
    margin: 0 calc(5em / 16);
    overflow: hidden;
}

.share-icon img {
    width: calc(40em / 16);
    height: calc(40em / 16);
    border-radius: 50%;
}

.page-header .wrapper {
    width: 100%;
    padding: 0 20px;
}


.page-header .share-bar {
    padding-right: 20px;
}

section.main .wrapper {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    padding-top: calc(60 * var(--rpx));
    padding-bottom: calc(110 * var(--rpx));
    max-width: 1200px;
}

section.main .wrapper img {
    margin: 20px auto;
    max-width: 100%;
    height: auto !important;
    display: block;
}

section.main .wrapper p {
    line-height: 1.5;
}

.nav-ctn {
    display: flex;
    width: 100%;
    align-items: stretch;
    margin-top: calc(40 * var(--rpx));
}

.nav-ctn a {
    width: 50%;
    flex: 0 0 auto;
    padding: calc(28 * var(--rpx)) calc(50 * var(--rpx));
    background-color: #f9fafc;

    display: flex;
    flex-direction: column;
    position: relative;
}

.nav-ctn a.prev {
    border-right: 1px solid #e5e5e5;
    margin-left: 0;
    margin-right: auto;
    justify-self: flex-start;
}

.nav-ctn a.next {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    justify-self: flex-end;
}

.nav-ctn a:hover {
    filter: brightness(.9);
}

.nav-ctn a .line1 {
    font-size: calc(14rem / 16);
}

.nav-ctn a .line2 {
    font-weight: bold;
    font-size: calc(20rem / 16);
}

.nav-ctn a::before {
    content: "";
    width: calc(16 * var(--rpx));
    height: calc(32 * var(--rpx));
    background: center/contain no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.nav-ctn a:hover::before {
    filter: url(#red-overlay);
}

.nav-ctn a.prev::before {
    left: calc(24 * var(--rpx));
    background-image: url("../images/icon_arr_left_thin.svg");
}

.nav-ctn a.next::before {
    right: calc(24 * var(--rpx));
    background-image: url("../images/icon_arr_right_thin.svg");
}

@media (max-width: 1380px) {
    section.main .wrapper {
        max-width: 900px;
    }
}


@media (max-width: 750px) {

    .page-header .share-bar {
        display: none;
    }

    .nav-ctn {
        display: flex;
        flex-direction: column;
    }

    .nav-ctn a {
        width: 100%;
    }

    .nav-ctn a.prev {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
}