/* ========================================
   加入我们页面样式
   ======================================== */

/* 招聘Banner区域 */
.join-banner {
    position: relative;
    width: 100%;
    height: 416px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.join-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.join-banner-title {
    font-size: 31px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 36px;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 16px 0;
}

.join-banner-description {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 28px;
    letter-spacing: 0px;
    color: #777777;
    margin: 0 0 32px 0;
}

.join-apply-button {
    display: inline-block;
    padding: 12px 40px;
    background-color: #0052d9;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-apply-button:hover {
    background-color: #0041a8;
    box-shadow: 0px 2px 12px 0px rgba(0, 82, 217, 0.3);
    transform: translateY(-2px);
}

.join-apply-button:active {
    transform: translateY(0);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
}

/* 热招岗位区域 */
.hot-positions-section {
    position: relative;
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.hot-positions-title {
    position: relative;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333333;
    margin: 0 0 6px 0;
    z-index: 2;
}

.hot-positions-title::before {
    content: 'Hot Recruitment Position';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: bold;
    color: rgba(0, 82, 217, 0.08);
    letter-spacing: 2px;
    z-index: 1;
    white-space: nowrap;
}

.hot-positions-subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666666;
    margin: 0 0 60px 0;
}

/* 岗位卡片网格 */
.positions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 224px);
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
}

.position-card {
    width: 224px;
    height: 90px;
    background-image: linear-gradient(0deg, #f1f6ff 0%, #ffffff 100%);
    box-shadow: 0px 3px 6px 0px rgba(213, 229, 255, 0.47);
    border-radius: 8px;
    border: solid 2px #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 12px 9px;
    position: relative;
    overflow: visible;
}

.position-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 12px 0px rgba(0, 82, 217, 0.25);
    border-color: #0052d9;
}

.position-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
    position: relative;
}

.position-tag {
    position: absolute !important;
    top: -25px !important;
    left: -20px !important;
    width: 74px !important;
    height: 74px !important;
    z-index: 10 !important;
    pointer-events: none;
}

.tag-icon {
    width: 74px !important;
    height: 74px !important;
    display: block !important;
    position: relative !important;
}

.tag-text {
    position: absolute !important;
    top: 46% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    z-index: 11 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.position-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #333333;
    text-align: center;
    width: 100%;
    padding-left: 30px;
}

.position-divider {
    width: 206px;
    height: 0px;
    border: solid 1px #d5e5ff;
    margin: 8px 0;
}

.position-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 20px;
    letter-spacing: 0px;
    color: #666666;
}

.location-icon {
    flex-shrink: 0;
}

/* 更多岗位卡片特殊样式 */
.position-card-more .position-name {
    color: #0052d9;
    padding-left: 0;
}

/* 关于写逸区域 */
.about-xiyi-section {
    padding: 100px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 1010px;
}

.about-xiyi-title {
    position: relative;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333333;
    margin: 0 0 20px 0;
    z-index: 2;
}

.about-xiyi-title::before {
    content: 'About Us';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: bold;
    color: rgba(0, 82, 217, 0.08);
    letter-spacing: 2px;
    z-index: 1;
    white-space: nowrap;
}

.about-xiyi-slogan {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666666;
    margin: 0 0 60px 0;
}

.about-xiyi-description {
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: #666666;
    text-align: justify;
    max-width: 1000px;
    margin: 0 auto 40px;
    text-indent: 2em;
}

.about-xiyi-images {
    display: grid;
    grid-template-columns: repeat(2, 590px);
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.about-image {
    width: 590px;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* 技术实力区域 */
.tech-strength-section {
    position: relative;
    padding: 80px 20px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 559px;
}

.tech-strength-title {
    position: relative;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333333;
    margin: 0 0 6px 0;
    z-index: 2;
}

.tech-strength-title::before {
    content: 'Technical strength';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: bold;
    color: rgba(0, 82, 217, 0.08);
    letter-spacing: 2px;
    z-index: 1;
    white-space: nowrap;
}

.tech-strength-subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666666;
    margin: 0 0 60px 0;
}

.tech-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    width: 590px;
    height: 300px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: solid 1px #ffffff;
    padding: 30px 26px;
    text-align: left;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 16px 0px rgba(0, 82, 217, 0.15);
}

.tech-card-title {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #0052d9;
    margin: 0 0 20px 0;
}

.tech-card-content p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 18px;
    letter-spacing: 0px;
    color: #333333;
    margin: 0 0 16px 0;
}

.tech-card-content p:last-child {
    margin-bottom: 0;
}

/* 加入理由区域 */
.reasons-section {
    padding: 100px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 1040px;
}

.reasons-title {
    position: relative;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333333;
    margin: 0 0 6px 0;
    z-index: 2;
}

.reasons-title::before {
    content: 'Reasons for joining';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: bold;
    color: rgba(0, 82, 217, 0.08);
    letter-spacing: 2px;
    z-index: 1;
    white-space: nowrap;
}

.reasons-subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666666;
    margin: 0 0 36px 0;
}

.reasons-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 590px);
    gap: 20px;
    justify-content: center;
}

.reason-card {
    width: 590px;
    height: 385px;
    background-image: linear-gradient(90deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 8px;
    border: solid 1px #d5e5ff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 16px 0px rgba(0, 82, 217, 0.15);
}

.reason-card-header {
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 26px;
}

.reason-card-title {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
}

.reason-card-body {
    padding: 26px;
    text-align: left;
}

.reason-card-body p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #333333;
    margin: 0 0 12px 0;
}

.reason-card-body p:last-child {
    margin-bottom: 0;
}

.reason-icon {
    color: #0052d9;
    margin-right: 6px;
    font-weight: bold;
}

/* 员工体验区域 */
.employee-section {
    position: relative;
    padding: 80px 20px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 559px;
}

.employee-title {
    position: relative;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333333;
    margin: 0 0 6px 0;
    z-index: 2;
}

.employee-title::before {
    content: 'Employee Experience';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: bold;
    color: rgba(0, 82, 217, 0.08);
    letter-spacing: 2px;
    z-index: 1;
    white-space: nowrap;
}

.employee-subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666666;
    margin: 0 0 62px 0;
}

.employee-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.employee-card {
    width: 590px;
    height: 300px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: solid 1px #d5e5ff;
    padding: 30px 26px;
    text-align: left;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.employee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 16px 0px rgba(0, 82, 217, 0.15);
}

.employee-card-title {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.employee-card-content p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 18px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.employee-card-content p:last-child {
    margin-bottom: 0;
}

.employee-icon {
    color: #ffffff;
    margin-right: 6px;
    font-weight: bold;
}

/* 简历投递区域 */
.resume-section {
    position: relative;
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resume-title {
    font-size: 29px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 41px;
    letter-spacing: 0px;
    color: #0052d9;
    margin: 0 0 20px 0;
}

.resume-content {
    max-width: 800px;
    margin: 0 auto;
}

.resume-content p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 28px;
    letter-spacing: 0px;
    color: #000000;
    margin: 0 0 12px 0;
}

.resume-content p:last-child {
    margin-bottom: 0;
}

.resume-email,
.resume-phone {
    color: #0052d9;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .join-banner {
        height: 320px;
    }
    
    .join-banner-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .join-banner-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    
    .join-apply-button {
        padding: 10px 32px;
        font-size: 14px;
    }
    
    .hot-positions-section {
        padding: 60px 0 40px;
    }
    
    .hot-positions-title::before {
        font-size: 36px;
        top: -16px;
    }
    
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        gap: 16px;
    }
    
    .position-card {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .join-banner {
        height: 280px;
    }
    
    .join-banner-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    
    .join-banner-description {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .join-apply-button {
        padding: 10px 28px;
        font-size: 14px;
    }
    
    .hot-positions-title {
        font-size: 20px;
    }
    
    .hot-positions-title::before {
        font-size: 28px;
        top: -14px;
    }
    
    .hot-positions-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 12px;
    }
    
    .position-card {
        height: 80px;
    }
    
    .position-tag {
        width: 60px;
        height: 60px;
        left: -6px;
    }
    
    .tag-icon {
        width: 60px;
        height: 60px;
    }
    
    .tag-text {
        font-size: 12px;
    }
    
    .position-divider {
        width: 100%;
    }
    
    .about-xiyi-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .about-xiyi-title::before {
        font-size: 36px;
        top: -16px;
    }
    
    .about-xiyi-slogan {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 40px;
    }
    
    .about-xiyi-description {
        font-size: 14px;
        line-height: 24px;
    }
    
    .about-xiyi-images {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        aspect-ratio: 590 / 300;
    }
    
    .tech-strength-section {
        padding: 60px 20px 40px;
        min-height: auto;
    }
    
    .tech-strength-title::before {
        font-size: 36px;
        top: -16px;
    }
    
    .tech-strength-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 40px;
    }
    
    .tech-cards-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .tech-card {
        width: 100%;
        height: auto;
        min-height: 250px;
        padding: 24px 20px;
    }
    
    .tech-card-content p {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    
    .reasons-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .reasons-title::before {
        font-size: 32px;
        top: -16px;
    }
    
    .reasons-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    .reasons-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .reason-card {
        width: 100%;
        height: auto;
        min-height: 350px;
    }
    
    .reason-card-header {
        height: 80px;
        padding-left: 20px;
    }
    
    .reason-card-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .reason-card-body {
        padding: 20px;
    }
    
    .reason-card-body p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    
    .employee-section {
        padding: 60px 20px 40px;
        min-height: auto;
    }
    
    .employee-title::before {
        font-size: 32px;
        top: -16px;
    }
    
    .employee-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 40px;
    }
    
    .employee-cards-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .employee-card {
        width: 100%;
        height: auto;
        min-height: 250px;
        padding: 24px 20px;
    }
    
    .employee-card-content p {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    
    .resume-section {
        padding: 40px 20px;
        min-height: 220px;
    }
    
    .resume-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    
    .resume-content p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}
