#popup-message {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999999;
    display: block;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background:rgba(0,0,0,0.5);
}
#popup-message .popup-dialog {
    width: 900px;
    transform: translate(-50%, -50%);
    top: 50%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
}
#popup-message .popup-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    outline: 0;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}

#popup-message .popup-content {
    background: none;
}

#popup-message .popup-header,
#popup-message .popup-footer {
    height: 20px;
    padding: 10px;
    background: linear-gradient(270deg, rgba(49, 82, 163, 1) 0%, rgba(126, 111, 176, 1) 61%, rgba(195, 107, 95, 1) 84%, rgba(218, 105, 63, 1) 100%);
    border: none;
}

#popup-message .popup-header {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

#popup-message .popup-footer {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#popup-message .popup-body {
    text-align: center;
    padding: 60px 60px;
    background: #fff;
}

#popup-message .popup-body img {
    width: 150px;
    height: auto;
    margin: 0 auto;
}

#popup-message .popup-body h3 {
    font-size: 32px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    line-height: 48px;
    margin-top: 60px;
    margin-bottom: 35px;
    ;
}

#popup-message .popup-body p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(51, 51, 51, 1);
    line-height: 24px;
    margin: 0 80px;
    font-style: normal;
}

#popup-message .popup-body button {
    min-width: 128px;
    padding: 12px 10px;
    border: 1px solid rgba(63, 117, 204, 1);
    color: #0047bb;
    background: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin: 40px auto 10px;
}

#popup-message .popup-body button:hover {
    background: #0047bb;
    color: #fff;
}

#popup-message .popup-body .popup-time {
    color: #9E9E9E;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top:5px;
}


@media screen and (max-width: 768px) {
    #popup-message .popup-header,
    #popup-message .popup-footer {
        height: 10px;
        padding: 5px;
    }
    #popup-message .popup-dialog {
        width: auto;
        transform: translateY(-50%);
        top: 50%;
        margin: 0 15px;
        left: auto;
    }
    #popup-message .popup-body {
        padding: 30px 10px;
    }
    #popup-message .popup-body img {
        width: 120px;
        ;
    }
    #popup-message .popup-body h3 {
        font-size: 22px;
        line-height: 22px;
        margin-top: 45px;
        margin-bottom: 15px;
    }
    #popup-message .popup-body p {
        font-size: 16px;
        margin: 0 15px;
    }
    #popup-message .popup-body button {
        margin: 20px auto 5px;
    }
    #popup-message .popup-body .popup-time {
        color: #9E9E9E;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        margin-top:15px;
    }
}