.wrap {
    width: 100%;
    background: #f7f7f7;
}
.main {
    width: 1400px;
    margin: 50px auto;
}
.main-r {
    width: 1000px;
}
.leader-box {
    width: 1000px;
    margin-top: 30px;
}
.leader-item {
    width: 1000px;
    height: 244px;
    background: #fff;
    transition: box-shadow 0.5s ease;
    padding: 20px 52px 20px 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.leader-item:hover {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0, 0, 0, 0.1), 0 0 15px 0 rgba(0, 0, 0, 0.1), 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.leader-item:hover .name-position .name {
    color: #da252c;
}
.leader-item:hover .name-position {
    border-bottom: 1px solid #da252c;
}
.leader-pic {
    width: 150px;
    height: 204px;
}
.leader-pic a {
    display: block;
    width: 100%;
    height: 100%;
}
.leader-pic a img {
    width: 100%;
    height: 100%;
}
.leader-info {
    width: 740px;
    height: 100%;
}
.name-position {
    width: 100%;
    height: 56px;
    border-bottom: 1px solid #ededed;
    line-height: 50px;
    margin-top: 26px;
}
.name-position .name {
    display: block;
    height: 100%;
    font-size: 22px;
    border-bottom: 1px solid #da252c;
}
.name-position .position {
    font-size: 18px;
    color: #828282;
}
.name-position .gang {
    font-size: 22px;
    color: #828282;
    margin: 0 10px;
}
.leader-summary {
    width: 100%;
    font-size: 16px;
    color: #828282;
    line-height: 2;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}