.pop_back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1000;
}

.pop_up {
    position: fixed;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 80%;
    height: auto;
    border-radius: 12px;
}

.pop_up .pop_close {
    display: flex;
    justify-content: flex-end;
    margin-right: 14px;
    margin-top: 14px;
    cursor: pointer;
}

.pop_up .pop_close img {
    display: block;
}

.pop_up p {
    font-size: 12px;
    color: #222;
    line-height: 2;
    padding: 10px 30px 30px;
    margin: 0;
}

.pop_up p a {
    font-size: 12px;
    margin: 0;
    color: blue;
}

.pop_up>h5 {
    font-size: 20px;
    font-weight: bold;
    color: red;
    text-align: center;
    margin: 0;
}