/* ===================================
   招贤纳士页面样式
   =================================== */

/* 顶部Banner */
.page_careers .banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page_careers .banner .picbox {
    width: 100%;
    height: 100%;
}

.page_careers .banner .pic {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.page_careers .banner .pic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 86, 204, 0.85) 0%, rgba(56, 132, 244, 0.75) 100%);
}

.page_careers .banner .titlebox {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.page_careers .banner .atitle {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.page_careers .banner .btitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
}

.page_careers .banner .subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* 通用标题样式 */
.page_careers .section_title {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 5px;
}

.page_careers .section_title .atitle {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.page_careers .section_title .line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3884f4 0%, #1a56cc 100%);
    margin: 0 auto 10px;
    border-radius: 2px;
}

.page_careers .section_title .btitle {
    font-size: 18px;
    color: #666;
}

/* 企业文化板块 */
.page_careers .culture_section {
    padding: 80px 0;
    background: #fff;
}

.page_careers .culture_item {
    text-align: center;
    padding: 40px 20px;
    background: #f8faff;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.page_careers .culture_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(56, 132, 244, 0.15);
}

.page_careers .culture_item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.page_careers .culture_item .icon .picbox {
    width: 100%;
    height: 100%;
}

.page_careers .culture_item .icon .pic {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.page_careers .culture_item .title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.page_careers .culture_item .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 福利待遇板块 */
.page_careers .benefits_section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f8ff 0%, #fff 100%);
}

.page_careers .benefit_item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page_careers .benefit_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(56, 132, 244, 0.12);
}

.page_careers .benefit_item .icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 20px;
}

.page_careers .benefit_item .icon .picbox {
    width: 100%;
    height: 100%;
}

.page_careers .benefit_item .icon .pic {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.page_careers .benefit_item .content .title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page_careers .benefit_item .content .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 热门职位板块 - 列表展开样式 */
.page_careers .jobs_section {
    padding: 10px 0 60px;
    background: linear-gradient(180deg, #dde4f5 0%, #e8edff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.page_careers .jobs_section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 132, 244, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page_careers .jobs_section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(56, 132, 244, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page_careers .jobs_section .container-xl {
    position: relative;
    z-index: 1;
}

.page_careers .jobs_list {
    max-width: 900px;
    margin: 0 auto;
}

.page_careers .job_item {
    background: #e4eaff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.page_careers .job_item:hover {
    box-shadow: 0 4px 20px rgba(56, 132, 244, 0.1);
    border-left-color: #c5d5f5;
}

.page_careers .job_item.open {
    border-left: 3px solid #3884f4;
    box-shadow: 0 4px 20px rgba(56, 132, 244, 0.12);
}

.page_careers .job_item_header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.page_careers .job_arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.page_careers .job_arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 3px solid #3884f4;
    border-bottom: 3px solid #3884f4;
    transform: rotate(-45deg) translate(-1px, -1px);
    transition: all 0.3s ease;
}

.page_careers .job_item.open .job_arrow {
    transform: rotate(90deg);
    background: #3884f4;
}

.page_careers .job_item.open .job_arrow::before {
    border-color: #fff;
}

.page_careers .job_item_info {
    flex: 1;
    min-width: 0;
    padding-left: 24px;
}

.page_careers .job_item_title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.page_careers .job_item:hover .job_item_title {
    color: #3884f4;
}

.page_careers .job_item_salary {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.02) 100%);
    padding: 4px 14px;
    border-radius: 6px;
    flex-shrink: 0;
}

.page_careers .job_item_body {
    display: none;
    padding: 0 24px 24px 56px;
}

.page_careers .job_item.open .job_item_body {
    display: block;
}

.page_careers .job_item_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.page_careers .job_item_tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.page_careers .job_item_tags .tag:nth-child(1) {
    color: #2563eb;
    background: #eff6ff;
}

.page_careers .job_item_tags .tag:nth-child(2) {
    color: #059669;
    background: #ecfdf5;
}

.page_careers .job_item_tags .tag:nth-child(3) {
    color: #7c3aed;
    background: #f5f3ff;
}

.page_careers .job_item_desc {
    font-size: 14px;
    color: #5a6577;
    line-height: 2;
    margin-bottom: 16px;
}

.page_careers .job_item_email {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px dashed #e8ecf3;
    font-size: 14px;
    color: #888;
}

.page_careers .job_item_email .icon {
    font-size: 18px;
    color: #3884f4;
}

.page_careers .job_card_email a {
    color: #1a56cc;
    font-weight: 600;
    text-decoration: none;
}

.page_careers .job_card_email a:hover {
    color: #3884f4;
    text-decoration: underline;
}

/* 职位详情页 */
.page_careers .job_detail_card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #3884f4;
}

.page_careers .job_detail_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.page_careers .job_detail_title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    flex: 1;
}

.page_careers .job_detail_salary {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.02) 100%);
    padding: 8px 20px;
    border-radius: 10px;
    white-space: nowrap;
}

.page_careers .job_detail_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.page_careers .job_detail_tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #eef2ff;
    color: #3884f4;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
}

.page_careers .job_detail_body {
    font-size: 15px;
    color: #444;
    line-height: 2;
    white-space: pre-wrap;
}

.page_careers .job_detail_email {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #e8ecf3;
    font-size: 15px;
    color: #666;
}

.page_careers .job_detail_email .icon {
    font-size: 20px;
    color: #3884f4;
}

.page_careers .job_detail_email a {
    color: #1a56cc;
    font-weight: 600;
    text-decoration: none;
}

.page_careers .job_detail_email a:hover {
    color: #3884f4;
    text-decoration: underline;
}

.page_careers .job_detail_back {
    text-align: center;
    margin-top: 40px;
}

.page_careers .job_detail_back .back_btn {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: #3884f4;
    font-size: 15px;
    font-weight: 500;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid #3884f4;
    transition: all 0.3s ease;
}

.page_careers .job_detail_back .back_btn:hover {
    background: #3884f4;
    color: #fff;
    text-decoration: none;
}

/* 成长发展板块 */
.page_careers .growth_section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}

.page_careers .growth_text {
    padding: 30px;
}

.page_careers .growth_text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page_careers .growth_text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page_careers .growth_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page_careers .growth_text ul li {
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.6;
}

.page_careers .growth_text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #3884f4 0%, #1a56cc 100%);
    border-radius: 50%;
}

/* 招聘流程板块 */
.page_careers .process_section {
    padding: 80px 0;
    background: #fff;
}

.page_careers .process_steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page_careers .step_item {
    text-align: center;
    padding: 30px 15px;
    position: relative;
}

.page_careers .step_item::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3884f4 0%, rgba(56, 132, 244, 0.3) 100%);
}

.page_careers .step_item:last-child::after {
    display: none;
}

.page_careers .step_num {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, #3884f4 0%, #1a56cc 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(56, 132, 244, 0.25);
}

.page_careers .step_title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page_careers .step_desc {
    font-size: 13px;
    color: #888;
}

/* 联系我们板块 */
.page_careers .contact_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a56cc 0%, #3884f4 100%);
}

.page_careers .contact_section .section_title .atitle {
    color: #fff;
}

.page_careers .contact_section .section_title .btitle {
    color: rgba(255, 255, 255, 0.9);
}

.page_careers .contact_section .section_title .line {
    background: rgba(255, 255, 255, 0.8);
}

.page_careers .contact_info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.page_careers .contact_info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.page_careers .info_item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.page_careers .info_item .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 20px;
}

.page_careers .info_item .icon .picbox {
    width: 100%;
    height: 100%;
}

.page_careers .info_item .icon .pic {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.page_careers .info_item .text .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.page_careers .info_item .text .value {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.page_careers .info_item .text .value a {
    color: #fff;
    text-decoration: none;
}

.page_careers .info_item .text .value a:hover {
    text-decoration: underline;
}

.page_careers .resume_tips {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.page_careers .resume_tips h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.page_careers .resume_tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page_careers .resume_tips ul li {
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.7;
}

.page_careers .resume_tips ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

/* 响应式适配 */
@media (max-width: 991px) {
    .page_careers .banner {
        height: 300px;
    }

    .page_careers .banner .atitle {
        font-size: 36px;
    }

    .page_careers .banner .btitle {
        font-size: 18px;
    }

    .page_careers .section_title .atitle {
        font-size: 28px;
    }

    .page_careers .job_item_header {
        padding: 16px 20px;
    }

    .page_careers .job_item_title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .page_careers .job_item_salary {
        font-size: 16px;
    }

    .page_careers .job_item_body {
        padding: 0 20px 20px 52px;
    }

    .page_careers .step_item::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .page_careers .banner {
        height: 140px;
    }

    .page_careers .banner .titlebox {
        padding: 25px 0 20px;
    }

    .page_careers .banner .atitle {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .page_careers .banner .btitle {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .page_careers .banner .subtitle {
        font-size: 11px;
    }

    .page_careers .culture_section,
    .page_careers .benefits_section,
    .page_careers .growth_section,
    .page_careers .process_section,
    .page_careers .contact_section {
        padding: 50px 0;
    }

    .page_careers .section_title {
        margin-bottom: 30px;
    }

    .page_careers .section_title .atitle {
        font-size: 24px;
    }

    .page_careers .section_title .btitle {
        font-size: 15px;
    }

    .page_careers .culture_item {
        padding: 25px 15px;
    }

    .page_careers .benefit_item {
        padding: 20px;
    }

    .page_careers .job_item_header {
        padding: 14px 16px;
        gap: 10px;
    }

    .page_careers .job_item_title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .page_careers .job_item_tags .tag {
        font-size: 11px;
        padding: 3px 10px;
    }

    .page_careers .job_item_salary {
        font-size: 15px;
        padding: 3px 10px;
    }

    .page_careers .job_item_body {
        padding: 0 16px 16px 40px;
    }

    .page_careers .job_item_desc {
        font-size: 13px;
    }

    .page_careers .contact_info,
    .page_careers .resume_tips {
        padding: 25px;
    }
}
