

/* 领导团队网格 */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 207px 40px;
    padding-top: 20px;
    padding-left: 91px;
}

.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.leader-photo {
    position: relative;
    width: 225px;
    height: 275px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-photo::before {
    content: '';
    position: absolute;
    width: 62px;
    height: 62px;
    background: #AF032A;
    bottom: -24px;
    right: -24px;
}

.leader-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.leader-photo a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.leader-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    overflow: visible;
}

.leader-name {
    font-size: 31px;
    font-weight: 400;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.leader-name a {
    color: #AF022A;
}

.leader-info p {
    width: 202px;
    font-size: 19px;
}

/* 人员信息表格样式 */
.staff-table-container {
    margin-top: 30px;
    overflow-x: auto;
}

.staff-table {
    width: 100%;
    max-width: 1300px;
    border-collapse: collapse;
    font-size: 16px;
    color: #333;
}

.staff-table th {
    background-color: #f5f5f5;
    padding: 22px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    word-wrap: break-word;
    word-break: break-word;
    vertical-align: middle;
}

.staff-table td {
    padding: 22px;
    border-bottom: 1px dotted #e0e0e0;
    vertical-align: middle;
    word-wrap: break-word;
    word-break: break-word;
    text-align: left;
}



.staff-table tr:hover {
    background-color: #f9f9f9;
}


.fa-phone {
    font-size: 12px;
    color: #8E8E8E;
    vertical-align: middle;
    margin-right: 3px;
}
.fa-envelope {
    font-size: 12px;
    color: #8E8E8E;
    vertical-align: middle;
    margin-right: 3px;
}
