html {
    font-size: 16px;
}

body {
    min-width: 0;
    background: #f4f7fb;
    color: #13243f;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

body.hr-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.hr-container {
    width: min(1400px, calc(100% - 56px));
    margin: 0 auto;
}

.hr-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 2px 18px rgba(17, 36, 64, .08);
}

.hr-nav {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.hr-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.hr-nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 34px;
}

.hr-nav-item {
    position: relative;
}

.hr-nav-link,
.hr-nav-links > a {
    position: relative;
    display: block;
    color: #26364e;
    font-size: 14px;
    line-height: 72px;
}

.hr-nav-link::after,
.hr-nav-links > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 19px;
    width: 0;
    height: 3px;
    background: #0066c9;
    transform: translateX(-50%);
    transition: width .2s ease;
}

.hr-nav-link:hover,
.hr-nav-link.active,
.hr-nav-links > a:hover,
.hr-nav-links > a.active {
    color: #005eb8;
}

.hr-nav-link:hover::after,
.hr-nav-link.active::after,
.hr-nav-links > a:hover::after,
.hr-nav-links > a.active::after {
    width: 24px;
}

.hr-submenu-toggle {
    display: none;
}

.hr-submenu {
    position: absolute;
    left: 50%;
    top: 66px;
    width: 150px;
    padding: 8px;
    background: #fff;
    border: 1px solid #edf1f6;
    box-shadow: 0 16px 32px rgba(17, 36, 64, .14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.hr-nav-item:hover .hr-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.hr-submenu a {
    display: block;
    padding: 9px 10px;
    color: #50637d;
    font-size: 13px;
    line-height: 1.45;
}

.hr-submenu a:hover {
    background: #f0f6ff;
    color: #0069d9;
}

.hr-nav-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #d69b2d;
    font-weight: 700;
    font-size: 13px;
}

.hr-search {
    width: 20px;
    height: 20px;
    position: relative;
}

.hr-search::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #1d2b3d;
    border-radius: 50%;
    left: 1px;
    top: 1px;
}

.hr-search::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: #1d2b3d;
    transform: rotate(45deg);
    right: 1px;
    bottom: 4px;
}

.hr-menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    padding: 8px;
}

.hr-menu-btn span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #16253e;
    transition: transform .2s ease, opacity .2s ease;
}

.hr-hero {
    position: relative;
    min-height: 560px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hr-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 23, 51, .88) 0%, rgba(6, 34, 72, .66) 45%, rgba(6, 21, 44, .22) 100%);
}

.hr-hero-inner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hr-hero-copy {
    width: min(670px, 100%);
    color: #fff;
}

.hr-hero-copy h1 {
    margin: 0 0 20px;
    font-size: 50px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0;
}

.hr-hero-copy p {
    max-width: 700px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.85;
}

.hr-primary,
.hr-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 152px;
    height: 44px;
    padding: 0 22px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
}

.hr-primary {
    background: #0069d9;
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 105, 217, .26);
}

.hr-primary::after {
    content: ">";
    margin-left: 10px;
}

.hr-secondary {
    background: #fff;
    color: #0e2a4f;
    box-shadow: inset 0 0 0 1px #dfe7f1;
}

.hr-secondary::after {
    content: ">";
    margin-left: 10px;
}

.hr-quick {
    position: relative;
    z-index: 2;
    margin-top: -64px;
}

.hr-quick-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.2fr;
    background: #fff;
    box-shadow: 0 18px 36px rgba(13, 33, 66, .16);
}

.hr-quick-item,
.hr-quick-news {
    min-height: 142px;
    padding: 36px 40px;
    border-right: 1px solid #edf1f6;
}

.hr-quick-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-content: center;
}

.hr-icon,
.hr-quick-item i {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f65a7;
    font-style: normal;
    font-size: 22px;
}

.hr-quick-item strong,
.hr-quick-news strong {
    display: block;
    color: #162846;
    font-size: 16px;
    line-height: 1.4;
}

.hr-quick-item span,
.hr-quick-news a {
    display: block;
    margin-top: 7px;
    color: #7a8492;
    font-size: 13px;
    line-height: 1.5;
}

.hr-quick-news {
    border-right: 0;
}

.hr-section {
    padding: 92px 0;
}

.hr-title {
    margin-bottom: 52px;
    text-align: center;
}

.hr-title span,
.hr-section-head span,
.hr-recruit-copy span {
    color: #7c8796;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.hr-title h2,
.hr-section-head h2,
.hr-recruit-copy h2 {
    margin: 12px 0 0;
    color: #11264a;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
}

.hr-title h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    margin: 18px auto 0;
    background: #0069d9;
}

.hr-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hr-service-card {
    min-height: 254px;
    padding: 50px 48px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(19, 36, 63, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hr-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(19, 36, 63, .1);
}

.hr-service-card i {
    display: block;
    color: #1f65a7;
    font-size: 26px;
    font-style: normal;
    margin-bottom: 28px;
}

.hr-service-card h3 {
    margin: 0 0 18px;
    color: #1a2d49;
    font-size: 19px;
    line-height: 1.35;
}

.hr-service-card p {
    margin: 0;
    color: #687483;
    font-size: 14px;
    line-height: 1.85;
}

.hr-data {
    position: relative;
    padding: 84px 0 92px;
    overflow: hidden;
    background: #071b3b;
}

.hr-data::before,
.hr-data::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    box-shadow: 120px 80px rgba(255,255,255,.28), 340px 34px rgba(255,255,255,.22), 560px 124px rgba(255,255,255,.36), 920px 68px rgba(255,255,255,.3);
}

.hr-data::before {
    left: 80px;
    top: 54px;
}

.hr-data::after {
    right: 140px;
    bottom: 84px;
}

.hr-title-light span,
.hr-title-light h2 {
    color: #fff;
}

.hr-data-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 40px rgba(255,255,255,.03);
}

.hr-data-item {
    min-height: 210px;
    padding: 46px 28px;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.hr-data-item:last-child {
    border-right: 0;
}

.hr-data-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(214, 155, 45, .12);
    color: #d69b2d;
    font-style: normal;
    font-size: 22px;
}

.hr-data-item strong {
    display: block;
    font-size: 40px;
    line-height: 1;
}

.hr-data-item span {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.hr-news-section {
    padding: 76px 0;
    background: #fff;
}

.hr-news-layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 56px;
    align-items: center;
}

.hr-feature-news {
    position: relative;
    min-height: 390px;
    display: block;
    overflow: hidden;
    color: #fff;
}

.hr-feature-news img {
    width: 100%;
    height: 390px;
    display: block;
    object-fit: cover;
}

.hr-feature-news::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 18, 42, .08), rgba(3, 18, 42, .84));
}

.hr-feature-news div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 1;
}

.hr-feature-news h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.38;
}

.hr-feature-news p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.7;
}

.hr-section-head {
    position: relative;
    margin-bottom: 30px;
}

.hr-section-head a {
    position: absolute;
    right: 0;
    bottom: 8px;
    color: #7c8796;
    font-size: 13px;
}

.hr-news-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hr-news-list li {
    border-bottom: 1px solid #edf1f6;
}

.hr-news-list li a {
    min-height: 52px;
    display: grid;
    grid-template-columns: 82px 1fr 94px;
    align-items: center;
    gap: 16px;
    color: #26364e;
}

.hr-news-list em {
    justify-self: start;
    padding: 5px 10px;
    border: 1px solid #c7d7ed;
    color: #1e64a8;
    font-style: normal;
    font-size: 12px;
}

.hr-news-list span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.hr-news-list time {
    color: #8993a0;
    font-size: 12px;
    text-align: right;
}

.hr-recruit {
    padding: 70px 0;
    background: #f4f7fb;
}

.hr-recruit-card {
    display: grid;
    grid-template-columns: 1.25fr 540px;
    min-height: 330px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(19, 36, 63, .08);
}

.hr-recruit-copy {
    padding: 70px 78px;
}

.hr-recruit-copy p {
    max-width: 620px;
    margin: 22px 0 28px;
    color: #657384;
    font-size: 15px;
    line-height: 1.9;
}

.hr-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hr-recruit-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.hr-footer {
    background: #071426;
    color: rgba(255, 255, 255, .7);
    border-top: 5px solid #0069d9;
}

.hr-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 52px;
    padding: 58px 0 52px;
}

.hr-footer-brand img {
    width: 150px;
    display: block;
    margin-bottom: 26px;
    opacity: .82;
}

.hr-footer h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 17px;
}

.hr-footer h3::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    margin-right: 10px;
    vertical-align: -4px;
    background: #0069d9;
}

.hr-footer p,
.hr-footer a {
    display: block;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.8;
}

.hr-copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.toolbar,
.ewmbox {
    display: none !important;
}

@media (max-width: 1100px) {
    .hr-nav {
        gap: 20px;
    }

    .hr-nav-links {
        gap: 20px;
    }

    .hr-quick-card,
    .hr-business-grid,
    .hr-data-panel,
    .hr-news-layout,
    .hr-recruit-card,
    .hr-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hr-quick-news {
        border-top: 1px solid #edf1f6;
    }
}

@media (max-width: 768px) {
    .hr-container {
        width: calc(100% - 38px);
    }

    .hr-nav {
        height: 58px;
        justify-content: space-between;
        gap: 12px;
        position: relative;
    }

    .hr-logo img {
        width: 115px;
    }

    .hr-menu-btn {
        display: block;
        order: 3;
        position: relative;
        z-index: 31;
        border-radius: 4px;
    }

    .hr-menu-btn.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hr-menu-btn.is-open span:nth-child(2) {
        opacity: 0;
    }

    .hr-menu-btn.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hr-nav-links {
        position: fixed;
        left: 0;
        right: 0;
        top: 58px;
        bottom: 0;
        display: block;
        padding: 20px 18px 34px;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: 0 22px 42px rgba(17, 36, 64, .18);
        z-index: 30;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        transform: translateY(-18px);
        transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    }

    .hr-nav-links.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hr-nav-item {
        border-bottom: 1px solid #edf1f6;
    }

    .hr-nav-link,
    .hr-nav-links > a {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 0 48px 0 4px;
        border-bottom: 0;
        border-radius: 0;
        color: #22344f;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        background: #fff;
    }

    .hr-nav-link.active,
    .hr-nav-link:hover,
    .hr-nav-links > a.active,
    .hr-nav-links > a:hover {
        background: transparent;
        color: #0069d9;
    }

    .hr-nav-link::after,
    .hr-nav-links > a::after {
        display: none;
    }

    .hr-submenu-toggle {
        position: absolute;
        right: 0;
        top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 6px;
        background: #f4f7fb;
    }

    .hr-submenu-toggle::before,
    .hr-submenu-toggle::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 2px;
        background: #50637d;
        transition: transform .2s ease;
    }

    .hr-submenu-toggle::after {
        transform: rotate(90deg);
    }

    .hr-nav-item.is-sub-open .hr-submenu-toggle::after {
        transform: rotate(0);
    }

    .hr-submenu {
        position: static;
        width: auto;
        max-height: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        transform: none;
        transition: max-height .28s ease, padding .28s ease;
    }

    .hr-nav-item:hover .hr-submenu {
        transform: none;
    }

    .hr-nav-item.is-sub-open .hr-submenu {
        max-height: 360px;
        padding: 0 0 12px;
    }

    .hr-submenu a {
        margin: 0 0 6px;
        padding: 11px 14px;
        border-radius: 6px;
        background: #f4f7fb;
        color: #50637d;
        font-size: 14px;
        line-height: 1.4;
    }

    .hr-nav-meta {
        display: none;
    }

    .hr-hero {
        min-height: 370px;
        background-position: 66% center;
    }

    .hr-hero-inner {
        min-height: 370px;
        align-items: flex-start;
        padding-top: 78px;
    }

    .hr-hero-shade {
        background: linear-gradient(90deg, rgba(4, 20, 46, .9), rgba(5, 31, 68, .58));
    }

    .hr-hero-copy h1 {
        max-width: 320px;
        font-size: 28px;
        line-height: 1.28;
    }

    .hr-hero-copy p {
        max-width: 305px;
        margin-bottom: 22px;
        font-size: 13px;
        line-height: 1.7;
    }

    .hr-primary,
    .hr-secondary {
        min-width: 130px;
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }

    .hr-quick {
        display: none;
    }

    .hr-section {
        padding: 54px 0;
    }

    .hr-title {
        margin-bottom: 30px;
    }

    .hr-title span,
    .hr-section-head span,
    .hr-recruit-copy span {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hr-title h2,
    .hr-section-head h2,
    .hr-recruit-copy h2 {
        font-size: 24px;
    }

    .hr-title h2::after {
        width: 36px;
        height: 3px;
        margin-top: 14px;
    }

    .hr-business-grid,
    .hr-news-layout,
    .hr-recruit-card,
    .hr-footer-grid {
        grid-template-columns: 1fr;
    }

    .hr-business-grid {
        gap: 16px;
    }

    .hr-service-card {
        min-height: 186px;
        padding: 32px 28px;
    }

    .hr-service-card i {
        margin-bottom: 22px;
        font-size: 23px;
    }

    .hr-service-card h3 {
        font-size: 17px;
    }

    .hr-service-card p {
        font-size: 13px;
    }

    .hr-data {
        padding: 56px 0 62px;
    }

    .hr-data-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .hr-data-item {
        min-height: 130px;
        padding: 24px 12px;
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .hr-data-item:nth-child(2n) {
        border-right: 0;
    }

    .hr-data-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .hr-data-item i {
        width: 34px;
        height: 34px;
        margin-bottom: 14px;
        font-size: 18px;
    }

    .hr-data-item strong {
        font-size: 25px;
    }

    .hr-data-item span {
        margin-top: 9px;
        font-size: 11px;
        line-height: 1.45;
    }

    .hr-news-section {
        padding: 54px 0;
    }

    .hr-news-layout {
        gap: 30px;
    }

    .hr-feature-news,
    .hr-feature-news img {
        min-height: 260px;
        height: 260px;
    }

    .hr-feature-news div {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .hr-feature-news h3 {
        font-size: 18px;
    }

    .hr-section-head {
        margin-bottom: 18px;
    }

    .hr-section-head a {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }

    .hr-news-list li a {
        min-height: 58px;
        grid-template-columns: 70px 1fr;
        gap: 10px;
    }

    .hr-news-list time {
        grid-column: 2;
        text-align: left;
    }

    .hr-news-list span {
        white-space: nowrap;
        font-size: 13px;
    }

    .hr-recruit {
        padding: 50px 0;
    }

    .hr-recruit-copy {
        padding: 34px 26px;
    }

    .hr-recruit-copy p {
        margin: 18px 0 22px;
        font-size: 13px;
    }

    .hr-actions {
        gap: 10px;
    }

    .hr-recruit-card img {
        min-height: 210px;
        height: 210px;
    }

    .hr-footer-grid {
        gap: 18px;
        padding: 30px 0 22px;
    }

    .hr-footer-brand p {
        display: none;
    }

    .hr-footer-grid > div:nth-child(3) {
        display: none;
    }

    .hr-footer-grid > div:nth-child(2) a {
        display: inline-block;
        margin: 0 16px 8px 0;
    }

    .hr-footer-grid > div:nth-child(4) p:nth-of-type(n+3) {
        display: none;
    }

    .hr-footer h3 {
        margin-bottom: 14px;
    }

    .hr-footer p,
    .hr-footer a {
        font-size: 13px;
        line-height: 1.65;
    }

    .hr-copyright {
        display: none;
        line-height: 1.8;
    }
}

@media (max-width: 420px) {
    .hr-container {
        width: calc(100% - 30px);
    }

    .hr-hero-copy h1 {
        font-size: 25px;
    }

    .hr-news-list span {
        max-width: 190px;
    }
}
