#sh-dialog {
    width: 80%;
    min-height: 200px;
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    top: calc(50% - 100px);
    left: 10%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
    box-sizing: border-box;
    text-align: center;
}

.sh-show-dialog {
    display: block;
}

.sh-hide-dialog {
    display: none;
}

#sh-dialog .sh-close {
    position: absolute;
    top: 5px;
    right: 5px;
}
#sh-dialog .sh-close .icon {
    width: 24px;
    height: 24px;
}
#sh-dialog .sh-wechat {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
#sh-dialog .sh-wechat .icon {
    width: 50px;
    height: 50px;
}

#sh-dialog .sh-number {
    font-weight: bold;
    font-size: 18px;
}

#sh-dialog .sh-desc {
    font-size: 13px;
    line-height: 26px;
}

#sh-dialog button {
    margin-top: 10px;
    width: 140px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    border-radius: 3px;
    outline: none;
}

#sh-dialog .sh-primary-button {
    background-color: #09bb07;
    border: 1px solid #09bb07;
}

#sh-dialog .sh-disabled-button {
    background-color: #ccc;
    border: 1px solid #ccc;
}

