.popup-name{
    cursor: pointer;
}

.popup-detail{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);   
    top: 0;
    left: 0; 
    display: none;
}

.popup-detail .info-layer{
    width: 760px;
    height: 462px;
    border: 1px solid #609;
    position: fixed;
    z-index: 9999;
    margin-top: -231px;
    margin-left: -381px;
    left: 50%;
    top: 50%;
    padding: 48px;
    box-sizing: border-box;
    background: #fff;
}
.info-layer .popup-close{
    display: block;
    position: absolute;
    right: 12px;
    top: 0px;
    font-size: 30px;
    cursor: pointer;
    font-weight: 700;
    transform: rotate(45deg);
    user-select: none;
}
.info-layer .popup-close:hover{
    color: aqua;
}
.person_img{
    float: right;
    width: 110px;
    height: 136px;
}
.person_img img{
    border: 1px solid #CCCCCC;height: auto;
}
.info-box{
    width: 524px;
    height: 366px;
    float: left;
}
.info-box .uname{
    color: #22132D;
    font-size: 24px;
    padding-top: 0.1em;
    padding-bottom: 0.70em;
    margin-bottom: 0.5em;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    font-weight: normal;
}

.info-box .uname .r{
    color: #777;
    font-family: sans-serif;
    font-size: 12px;
    margin-left: 15px;
}
.info-box .desc-list{
    overflow: auto;
    height: 300px;
}
.info-box .desc-list p {
    font-size: 14px;
    line-height: 23px;
    padding: 0.75em 0;
}

@keyframes _scale-in{
    from{
        transform: scale(0);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes _scale-out{
    from{
        transform: scale(1);
        opacity: 1;
    }
    to{
        transform: scale(0);
        opacity: 0;
    }
}

.animate-in{
    animation: _scale-in 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

.animate-out{
    animation: _scale-out 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}