/* 全局样式 */
section {
    --bgColor: #fff;
    background: var(--bgColor);
    padding: 3.75rem var(--p);
}

section .sectionContent {
    background-color: var(--bgColor) !important;
}

section .sectionHeader {
    background: var(--bgColor);
}

section .sectionHeader {
    border: none;
}

section .sectionTitle .tip {
    font-size: 1rem;
    color: var(--text);
}

section .sectionHeader .sectionBtns {
    padding: 20px 10px;
}

section .sectionContent {
    background: #fff;
    position: relative;
}

section.contact .sectionContent {
    padding: 80px 0;
}

.container {
    padding: 0;
}

.about .sectionContentBox {
    margin-left: auto;
}

.featureGrid {
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.cardBox {
    padding: 10px;
}

.featureCard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    column-gap: 16px;
    row-gap: 6px;
    padding: 20px;
    border: 1px solid var(--line, #e6e6e6);
    border-radius: 12px;
    background: #f7faff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
}

.featureIcon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: var(--link, #1f6fff);
    box-shadow: inset 0 0 0 1px rgba(31, 111, 255, 0.08);
}

.featureIcon i {
    font-size: 22px;
    line-height: 1;
}

.featureBody {
    display: grid;
    gap: 6px;
}

.featureCard .featureTitle {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--textActive, #0f172a);
}

.featureCard p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text, #475569);
    line-height: 1.65;
}

.featureCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.06);
}

.featureCard:focus-within {
    box-shadow: 0 0 0 3px rgba(31, 111, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #1f6fff;
}

/* 职位模块 */
section.jobs .sectionHeader .sectionTitle {
    padding: 0 1.25rem 10px;
    border: none;
}

section .sectionTitle .title {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.jobs {
    --bgColor: #fafafa;
}

.jobTabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.jobTab {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.jobTab:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.jobTab.is-active {
    border-color: #1f6fff;
    box-shadow: 0 0 0 3px rgba(31, 111, 255, 0.12);
}

.jobList {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.jobCard {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 1s;
    opacity: 1;
}
.jobCard.hidden {
    display: none;
    opacity: 0;
}
.jobCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.06);
}

.jobCard:focus-within {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 111, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #1f6fff;
}

.jobHeader {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.jobTitle {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.jobType {
    padding: 2px 8px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 12px;
    line-height: 1.8;
    white-space: nowrap;
    color: var(--textActive);
}

.jobMeta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.jobMeta > * {
    position: relative;
}

.jobMeta > *:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    color: #cbd5e1;
}

.jobMeta .jobSalary {
    color: var(--link);
    font-weight: 600;
}

.jobMeta .jobLoc i {
    margin-right: 4px;
}

.jobDesc {
    margin: 0;
    color: var(--text);
    line-height: 1.65;
}

.jobReq {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.jobActions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
    justify-content: space-between;
}

.jobActions .jobApply {
    font-weight: 600;
}

.jobExpand {
    transition: background 0.2s ease, transform 0.05s ease;
}

.jobExpand:active {
    transform: translateY(1px);
}

.jobMore {
    margin-top: 8px;
}

.jobExpand {
    padding: 8px 12px;
    border-radius: 8px;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
}

.jobMore {
    padding: 10px 12px;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
}

section.contact {
    width: 100%;
    padding: 0 var(--p);
}

section.contact .sectionContent {
    background: #fff;
    padding: 80px 0;
}

.contactInfoGrid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.contactCard {
    background: #f7faff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 24px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contactCard:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.contactTitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.contactSubtitle {
    margin: 6px 0 0;
}

.contactList {
    margin: 20px 0 16px;
}

.contactItem {
    display: grid;
    grid-template-columns: 168px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
}

.contactItem:last-child {
    border-bottom: none;
}

.contactLabel {
    margin: 0;
    font-weight: 600;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contactIcon {
    width: 18px;
    text-align: center;
}

.contactValue {
    margin: 0;
}

.contactLink {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contactLink:hover {
    color: var(--link);
    border-color: var(--link);
}

.contactAddresses {
    margin-top: 8px;
}

.addressList {
    margin: 6px 0 0;
    padding-left: 1.1rem;
}

.addressItem {
    line-height: 1.65;
    color: var(--text);
}

.qrWrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.qr-large {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.qrCaption {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    section {
        padding: 0 var(--p) 20px;
    }

    section .sectionHeader {
        margin-bottom: 10px !important;
    }

    .contactInfoGrid {
        grid-template-columns: 1fr;
    }

    .featureGrid {
        padding: 0;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .featureCard {
        flex-direction: row;
        text-align: start;
        align-items: flex-start;
    }

    section.jobs .sectionHeader .sectionTitle {
        padding: 3.75rem 1.25rem 0;
        border: none;
    }

    .jobTabs {
        justify-content: flex-start;
    }

    .jobMeta {
        column-gap: 10px;
        row-gap: 4px;
    }

    .jobList {
        grid-template-columns: 1fr;
    }

    .page-content .banner .banner-title {
        padding: 40px calc(var(--p) + 2.5rem);
    }

    .banner-title .banner-title-text {
        font-size: 1.875rem;
        gap: 1.2rem;
        line-height: normal;
    }

    section.contact .sectionContent {
        padding: 0;
    }

    .contactItem {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .contactLabel {
        color: #0f172a;
    }
}
