/* 人才招聘页面样式 */
.layout-content {
    padding-top: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.second {
    position: relative;
    margin-bottom: 50px;
}

.second img {
    width: 100%;
    height: auto;
}

.tableCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.tableCenter p {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tableCenter span {
    font-size: 18px;
}

.mission {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.missonLeft {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
}

.missonRight {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.thirdContent {
    text-align: center;
    margin: 50px 0;
}

#cell {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #0066cc;
    border-radius: 50px;
}

#cell p {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    margin: 0;
}

.train {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.train > div {
    text-align: center;
}

.train img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.train p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.dashedStyle {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    border-bottom: 2px dashed #0066cc;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .train {
        grid-template-columns: 1fr;
    }
    
    .mission {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    
    .tableCenter p {
        font-size: 24px;
    }
    
    .tableCenter span {
        font-size: 16px;
    }
    
    /* 移动端布局调整 */
    .layout-content {
        padding-top: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .second {
        margin-bottom: 30px;
    }
    
    .thirdContent {
        margin: 30px 0;
    }
    
    .train {
        gap: 15px;
        margin: 30px 0;
    }
    
    /* 调整使命区域 */
    .missonLeft {
        font-size: 20px;
    }
    
    .missonRight {
        font-size: 16px;
    }
    
    /* 调整单元格 */
    #cell {
        padding: 8px 20px;
    }
    
    #cell p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    /* 小屏幕设备进一步调整 */
    .tableCenter p {
        font-size: 20px;
    }
    
    .tableCenter span {
        font-size: 14px;
    }
    
    .missonLeft {
        font-size: 18px;
    }
    
    .missonRight {
        font-size: 14px;
    }
    
    #cell p {
        font-size: 18px;
    }
}