/* 招募信息区域 */
.recruit-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 0;
    border-left: 3px solid #00629B;
}

.recruit-info h3 {
    color: #003C6B;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.recruit-info ul {
    padding-left: 20px;
    margin: 10px 0;
}

.recruit-info li {
    margin: 8px 0;
    line-height: 1.6;
}

/* 申请表单样式 */
.application-form {
    background: white;
    padding: 20px;
    border-radius: 0;
}

.application-form h3 {
    color: #003C6B;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    color: #003C6B;
    font-size: 0.9em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.9em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00629B;
    box-shadow: 0 0 5px rgba(0, 98, 155, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 40px;
}

/* 提交按钮 */
.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00629B 0%, #003C6B 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #007CC4 0%, #004D8B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 双栏布局 */
.recruit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 768px) {
    .recruit-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 人员表格样式 */
.staff-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.staff-table thead {
    background: linear-gradient(135deg, #00629B 0%, #003C6B 100%);
    color: white;
}

.staff-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
}

.staff-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.staff-table tbody tr {
    transition: background-color 0.2s ease;
}

.staff-table tbody tr:hover {
    background-color: #f5f5f5;
}

.staff-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.staff-table tbody tr:nth-child(even):hover {
    background-color: #f0f0f0;
}

.staff-table a {
    color: #00629B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.staff-table a:hover {
    color: #D36A00;
    text-decoration: underline;
}

/* 简介按钮样式 */
.view-profile-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00629B 0%, #003C6B 100%);
    color: white;
    padding: 6px 15px;
    border: none;
    border-radius: 0;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

.view-profile-btn:hover {
    background: linear-gradient(135deg, #007CC4 0%, #004D8B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.view-profile-btn:active {
    transform: translateY(0);
}
