#copy{
    width: 250px;
    height: 70px;
    line-height: 60px;
    letter-spacing: 4px;
    background: url("/static/images/button1.png") no-repeat center;
    background-size: 250px auto;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    margin: 10px auto 2px;
    /* margin-top: 10px; */
    cursor: pointer;
    animation: submitBtn 1.5s ease infinite;
}
.wechat-alert-html .content{
    width: 76%;
    max-width: 320px;
    position: fixed;
    z-index: 501;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 15px 10px;
    box-sizing: border-box;
    background: #F5F5F5;
    border-radius: 5px;
}
.wechat-alert-html .close-icon{
    width: 30px;
    position: absolute;
    top: -40px;
    right: 0;
}
.wechat-alert-html .content .top > div p:first-child, .mask6 .content .top > div p:first-child {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    line-height: 30px;
}
.wechat-alert-html .content .top > div p:last-child{
    font-size: 14px;
    color: #999;
    line-height: 20px;
}
.wechat-alert-html .content .top .avatar {
    border-radius: 50%;
    width: 50px;
    margin-right: 10px;
}
.wechat-alert-html .content .top{
    background: #fff;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    padding: 20px 0 5px 20px;
}
.wechat-alert-html  .content .code img{
    width: 90%;
    margin-top: 10px;
}
.wechat-alert-html .content .code{
    text-align: center;
    background: #fff;
    padding-bottom: 5px;
}
.wechat-alert-html .content .wx_num{
    border-radius: 0 0 20px 20px;
}
.wechat-alert-html .content .bottom{
    text-align: center;
}
.wechat-alert-html .content .bottom p:last-of-type{
    font-size: 15px;
    color: #333;
    margin: 10px 0;
}
@keyframes submitBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
