.exit-popup-cover {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 10000;
    cursor: pointer
}

.exit-popup {
    display: none
}

.exit-popup .exit-bnr {
    position: fixed;
    width: 700px;
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10001
}

.exit-popup .exit-bnr .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -35px;
    right: 0;
    cursor: pointer
}

.exit-popup .exit-bnr .close:before,
.exit-popup .exit-bnr .close::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 30px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.exit-popup .exit-bnr .close::before {
    transform: rotate(45deg)
}

.exit-popup .exit-bnr .close::after {
    transform: rotate(-45deg)
}

.exit-popup .exit-bnr .content {
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
}

.exit-popup .exit-bnr .content img {
    width: 100%
}

.exit-popup .exit-bnr .content .btn-area {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    align-items: center;
    padding: 20px 0 30px
}

.exit-popup .exit-bnr .content .btn-area p {
    position: relative;
    color: #f23071;
    margin: auto;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 2px
}

.exit-popup .exit-bnr .content .btn-area p::before,
.exit-popup .exit-bnr .content .btn-area p::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #f23071
}

.exit-popup .exit-bnr .content .btn-area p::before {
    transform: rotate(30deg);
    right: -15px
}

.exit-popup .exit-bnr .content .btn-area p::after {
    transform: rotate(-30deg);
    left: -15px
}

.exit-popup .exit-bnr .content .btn-area .btn {
    position: relative;
    background-color: #f23071;
    color: #fff;
    border-radius: 8px;
    width: 500px;
    text-align: center;
    font-size: 18px;
    padding: 16px 0;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 4px 0 #b22455
}

.exit-popup .exit-bnr .content .btn-area .btn .arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto
}

.exit-popup .exit-bnr .content .btn-area .btn .arrow::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid #f23071;
    border-right: 2px solid #f23071;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    left: 5px;
    margin: auto
}