body {
    padding: 0;
    margin: 0;
    max-width: 768px;
    background-color: #eee;
    font-size: 0.95rem;
    letter-spacing: normal;
    line-height: 1.5rem;
    font-family: PingFang SC, Microsoft YaHei, arial, tahoma, "\5FAE\8F6F\96C5\9ED1", Hiragino Sans GB, sans-serif !important;
}

/* 顶部图片 */
.banner img {
    width: 100%;
}

/* 聊天 */
#talk {
    padding: 0 1rem;
    height: 33vh;
    overflow-y: auto;
}

.clear {
    content: "";
    display: block;
    clear: both;
}

.box {
    display: none;
    margin-bottom: 1rem;
}

.self,
.user {
    width: 80%;
    display: flex;
    align-items: flex-start;
}

.selfBox {
    display: flex;
    flex-direction: column;
    margin-left: 0.8rem;
}

.selfBox span {
    font-size: .6rem;
    line-height: normal;
}

.user {
    width: auto;
    float: right;
    align-items: center;
}

#talk img {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    background-color: white;
}

.content {
    border: 1px solid transparent;
    border-radius: 0.2rem;
    background-color: white;
    padding: 0.2rem 0.5rem;
    margin-top: 0.3rem;
}

#talk .content img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.user .content {
    background-color: #a0e75a;
}

/* 微信号 */
.zkser-wx-mobile {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: bold;
}

.triangle-left {
    margin-right: 0.4rem;
    width: 0;
    height: 0;
    border-left: 0.4rem solid #a0e75a;
    border-top: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
}

.triangle-right {
    margin-left: 0.4rem;
    width: 0;
    height: 0;
    border-right: 0.4rem solid white;
    border-top: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
}

/* 公司信息 */
.cpInfo {
    text-align: center;
    letter-spacing: normal;
    color: #918f8f91;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* 底部选择 */
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    display: none;
}

.foot_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 2rem;
}

.answer {
    width: calc(100% / 4);
    cursor: pointer;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #8b220d;
    color: white;
    padding: 0.2rem 0.4rem;
    margin: 0.3rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    user-select: none;
}

.qrcodeImg {
    width: 10rem;
    height: 10rem;
    display: block;
    border-radius: 0;
}

@media (max-height: 736px) {
    body {
        font-size: 0.8rem;
    }

    #talk {
        height: 25vh;
    }
}

/* 底部文字 */
.footerWX {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: .5rem 0;
    display: none;
}

.footerWX button {
    width: 90%;
    animation-name: likes;
    /* 动画名称 */
    animation-direction: alternate;
    /* 动画在奇数次正向播放，在偶数次反向播放 */
    animation-timing-function: linear;
    /* 动画执行方式，匀速 */
    animation-delay: 0s;
    /* 动画延迟时间 */
    animation-iteration-count: infinite;
    /* 动画播放次数，无限循环 */
    animation-duration: .5s;
    /* 动画完成时间 */
    font-size: 1rem;
    font-weight: bold;
    border: none;
    background-color: #005ad5;
    color: white;
    padding: 0.5rem 3rem;
    border-radius: 1rem;
}

@keyframes likes {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
} 