.pop-wrap {
    position:fixed;
    z-index:999999;
    left:0;
    top:0;
    width:100%;
    height:100%;
}
.pop-wrap-bg {
    background-color:rgba(0,0,0,0.8);
}
.pop-con {
    margin:15% auto;
    width:519px;
    height:256px;
    background:#FFFFFF;
    box-shadow:0 0 10px 1px rgba(0,0,0,0.1);
    display:flex;
    flex-direction:column;
    align-items:center;
    padding-top:27px;
    animation:popShow 0.5s forwards;
}
.pop-img {
    width:67px;
    height:67px;
}
.pop-title {
    font-family:Microsoft YaHei,Microsoft YaHei;
    font-weight:400;
    font-size:16px;
    color:#353535;
    text-align:center;
    line-height:20px;
    margin:16px 0 20px 0;
}
.pop-text {
    font-family:Microsoft YaHei,Microsoft YaHei;
    font-weight:400;
    font-size:14px;
    color:#919191;
    line-height:20px;
    text-align:center;
}
@keyframes popShow {
    0% {
    transform:scale(0.5);
    opacity:0;
}
100% {
    transform:scale(1);
    opacity:1;
}
;}