.down_pop .bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 200;
}
.down_pop .cont {
    z-index: 201;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 340px;
    height: 160px;
    background-color: #fff;
    border: 1px solid #a545ff;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.down_pop .cont .close {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}
.down_pop .cont .close::before,
.down_pop .cont .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 18px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
}
.down_pop .cont .close::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.down_pop .cont .close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.down_pop .cont .xzq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.down_pop .cont .xzq img {
    width: 88px;
    height: 88px;
    display: block;
    border-radius: 50%;
    margin-bottom: 6px;
}
.down_pop .cont .xzq .xzq_name {
    color: #000;
    font-size: 14px;
}
.down_pop .cont .xzq:hover .xzq_name{
    color: #08a5e8;
}