/* 领导成员列表样式 */

.leader-wrapper {
    padding: 60px 0;
    background: #fff;
}

.leader-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leader-item {
    width: 100%;
}

.leader-content {
    display: flex;
    align-items: center;
    padding: 20px 30px;

    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    height: 70px;
    line-height: 70px;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 80px;
    box-sizing: border-box;
    background-color: #e5f7fc;
    margin-bottom: 10px;
}

.leader-content:hover {
    background: #d0eef7;
    box-shadow: 0 2px 10px rgba(0,176,221,0.1);
}

.leader-content .name {
    display: inline-block;
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    width: 88px;
    text-align: justify;
    text-align-last: justify;
}

.leader-content .name .nameStr {
    display: inline-block;
    margin-right: 2px;
}

.leader-content .duty {

    font-size: 18px;
    color: #333;
    margin-left: 90px;
}

/* 分页样式调整 */
.leader-wrapper .fenye {
    margin-top: 30px;
    text-align: center;
}

/* 响应式适配 */
@media only screen and (max-width: 768px) {
    .leader-wrapper {
        padding: 40px 0;
    }

    .leader-list {
        gap: 10px;
    }

    .leader-content {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .leader-content .name {
        font-size: 16px;
    }

    .leader-content .duty {
        margin-left: 0;
        margin-top: 10px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .leader-wrapper {
        padding: 30px 0;
    }

    .leader-content {
        padding: 12px 15px;
    }

    .leader-content .name {
        font-size: 15px;
    }

    .leader-content .duty {
        font-size: 13px;
    }
}