/* 现任领导页面样式 */
.xrld{
    padding-top: 60px;
}

.leader_list{
    display: flex;
    flex-wrap: wrap;
}

.leader{
    display: flex;
    width: calc(50% - (20px / 2));
    background: #fbfcfc;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 0;


    margin-right: 20px;
    margin-bottom: 70px;
}

.leader:nth-child(2n){
    margin-right: 0;
}

.user_l{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user_avatar{
    width: 149px;
    height: 149px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: -60px;
    position: relative;
}

.user_avatar::before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;

    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: 0.25;
    pointer-events: none;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 53) 50%,
        rgba(255, 255, 255, 0) 70%);
    transform: skewX(-25deg);
    z-index: 3;
}

.user_avatar img{
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
    transition: all .8s;
}

.date_of_joining{
    font-size: 12px;
    color: #b41e2a;
    font-weight: bold;
    margin-top: 15px;
}

.date_of_joining b{
    font-size: 18px;
}

.user_r{
    width: calc(100% - 149px);
    box-sizing: border-box;
    padding: 0 15px;
}

.user_name{
    font-size: 16px;
    color: #b41e2a;
}

.user_name b{
    font-size: 18px;
}

.user_intro{
    height: 66px;
    font-size: 14px;
    color: #7a7a7a;
    line-height: 22px;
    margin-top: 10px;
}

.user_more{
    font-size: 14px;
    color: #f88218;
    text-align: right;
    margin-top: 15px;
}

.leader:hover .user_avatar img{
    transform: scale(1.2);
}

.leader:hover .user_avatar::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* 响应式处理开始 */
@media screen and (max-width: 768px) {
    .leader{
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 450px) {
    .xrld{
        padding-top: 10px;
    }
    .leader{
        display: block;
        width: 90%;
        margin: 0 auto 20px !important;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
    }
    .user_l{
        width: 100%;
    }
    .user_avatar{
        margin-top: 0;
    }
    .user_r{
        width: 100%;
    }
    .user_name{
        text-align: center;
        padding: 20px 0 10px;
    }
    .user_intro{
        height: auto;
    }
}