#popup_wrap {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: .2;
}

#popup_top {
    position: relative;
}

#popup_top img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #ddd;
    transition: 1s;
}

#popup_top.on img {
    display: block;
    width: 200px;
    height: 0px;
}

#popup_top strong {
    display: block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    background: green;
    text-align: center;
    text-align: center;
    margin: auto 0 auto auto;
}

#popup_top div {
    width: 50px;
    height: 30px;
    background: yellow;
    position: absolute;
    top: 90px;
    right: 10px;
}

#popup_top strong:after {
    content: "";
    font-family: 'xeicon'
}

#popup_top.on strong:after {
    content: "";
    font-family: 'xeicon'
}

#popup1 {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 400px;
    height: 500px;
    background: #fff;
}

#popup1>span {
    position: absolute;
    display: block;
    bottom: 15px;
    right: 15px;
    width: 100px;
    height: 30px;
    background: green;
    text-align: center;
    line-height: 30px;
    border: 3px solid #000;
}

#popup2 {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 450px;
    max-width: 100%;
    height: 550px;
    padding: 35px 35px;
    background: #000;
    z-index: 9999;
    text-align: center;
}

#popup2>span {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 15px;
    right: 15px;
    width: 90px;
    height: 30px;
    background: #000;
    border: 1px solid #fff;
}

#popup2>span>i {
    font-size: 1.5rem;
}

#popup2>h3 {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin: 1rem auto 1.5rem;
}

#popup2>h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
}