#footban {
    position: fixed;
    z-index: 999;
    left: 0px;
    bottom: 0px;
    width: 100%;
    min-height: 70px;
    margin: 0 auto;
}

#footban section {
    position: relative;
    background: yellow none repeat scroll 0% 0%;
    left: 0px;
    bottom: 0px;
    padding: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#footban section img {
    display: block;
    max-width: 60px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#footban section span {
    font-size: 18px;
    font-weight: 600;
    color: #dd0a0a;
}

#footbtn {
    background: #7f47e6;
    padding: 10px 15px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 16px;
}

#wxbox {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    background: rgba(0, 0, 0, .6);
}

#wxbox .wxcon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 90%;
    max-width: 360px;
    height: auto;
    min-height: 450px;
    border-radius: 15px;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 6px #777;
    -webkit-box-shadow: 0px 2px 6px #777;
    -moz-box-shadow: 0px 2px 6px #777;
}

#wxbox .wxcon i {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-style: normal;
    background: #333;
    border-radius: 15px;
    cursor: pointer;
}

#wxbox .wxcon .title {
    font-size: 18px;
    font-weight: 600;
    color: #dd0a0a;
    margin-bottom: 20px;
}

#wxbox .wxcon img {
    width: 240px;
    height: 240px;
    display: block;
    margin: 0 auto;
}

#wxbox .wxcon .info {
    margin-top: 20px;
}

#wxbox .wxcon .info p {
    font-size: 16px;
    line-height: 36px;
    text-align: center;
}

#wxbox .wxcon .info span {
    display: inline-block;
    padding: 5px 15px;
    line-height: 26px;
    background-color: #67b306;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#wxbox .open {
    height: 38px;
    margin-top: 15px;
    visibility: hidden;
}

#wxbox .open a {
    display: inline-block;
    background-color: #67b306;
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
    cursor: pointer;
}

#wxbox .open img {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 3px auto;
}

#wxbox .open span {
    display: inline-block;
    padding: 5px 0px 5px 15px;
    line-height: 26px;
    color: #fff;
}

#wxtips {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 15px 20px;
    max-width: 360px;
    width: 90%;
    display: none;
}