.subs-result{
    display: none;
    position: fixed;
    width: 90%;
    max-width: 380px;
    padding: 40px 20px;
    background: #fff;
    z-index: 99999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    box-shadow: 0px 6px 10px 0px rgb(0 0 0 / 14%);
    border: #dadada 1px solid;
    text-align: center;
    font-size: 20px;
}
.subs-result-close{
    cursor: pointer;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 12px;
    right: 12px;
    transform: rotate(45deg);
}
.subs-result-close::after, .subs-result-close::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.subs-result-close:after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.subs-result p{
    display: none;
}