bady{background-color: #222;}
.popup-wrap {
    position: fixed;
    z-index: 100000000;
    bottom: 50px;
    right: 50px;
    width: 600px;
}

.popup-wrap.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-slider {
    overflow: hidden;
    position: relative;
}

.popup-slider .swiper-pagination-bullet-active {
    background-color: #000;
}

.popup-wrap img {
    width: 100%;
}

.popup-wrap .btns {
    background: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.popup-wrap .btns:after {
    display: none;
}

.popup-wrap .btns li {
    width: 50%;
    text-align: center;
}

.popup-wrap .btns li:not(:first-child) {
    border-left: 1px solid #444;
}

.popup-wrap .btns li a {
    font-size: 14px;
    color: #fff !important;
    padding: 15px 0;

}

.popup-wrap video {
    display: block;
}

.popup-wrap .txt-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* background: rgba(0, 0, 0, .8); */
    background-color: #fff;
    color: #222;
}

.popup-wrap .txt-wrap .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 50px 20px;

}

.popup-wrap .alert-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.popup-wrap .alert-wrap i {
    color: red;
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-wrap .alert-wrap p {
    line-height: 1.6;
    font-size: 20px;
    font-weight: normal;
}
.popup-wrap .alert-wrap button{
    width: 300px;
    margin: 50px auto 0;
    height: 50px;
    border-radius: 300px;
    background: #000;
    color: #fff;
    font-size: 17px;
}
@media screen and (max-width: 900px) {
    .popup-wrap {
        width: 600px;
        max-width: 90%;
        top: 50%;
        left: 50%;
        bottom: auto;
        right: auto;
        transform: translate(-50%, -50%);
    }
}