body{
    margin: 0;
    background-color: #e9e9e9;
}
.main{
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 100px;
}
.image{
    width: 100%;
}
.image img{
    width: 100%;
    height: 100%;
    display: block;
}
.chat{
    padding: 0 10px;
}
.node{
    display: flex;
    margin-top: 20px;
    transition: 0.7s;
    animation-name: fadeInUp;
    animation-duration: 1.3s;
    animation-fill-mode: both;
}
.content{
    position: relative;
}
.voide-center{
    position: sticky;
    top: 0;
    height: 281px;
    z-index: 9;
    padding: 20px;
    padding-top: 10px;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.text{
    margin: 0 5px;
}
.Avatar{
    width: 42px;
    border-radius: 100%;
}
.text_content{
    background-color: #fff;
    border-radius: 0px 10px 10px 10px;
    padding: 10px;
    margin-top: 5px;
    box-shadow: 0px 0px 5px 2px #c5c5c5;
    letter-spacing: 2px;
    font-size: 18px;
    max-width: 420px;
    font-weight: bold;
}
.option{
    display: flex;
    justify-content: center;
}
.option ul{
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-inline-start: 0;
    
}
.option ul li{
    float: left;
    width: 40%;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    color: #fff;
    background: #ff4540;
    border-radius: 35px;
    margin: 1.5%;
    line-height: 1rem;
    user-select: none;
    cursor: pointer;
    transition: .2s;
    list-style: none;
    min-width: 120px;
}
.reply{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
    animation-name: fadeInUp;
    animation-duration: 1.3s;
    animation-fill-mode: both;
    font-weight: bold;
}
.reply span{
    background-color: #ff4540;
    padding: 10px;
    color: #fff;
    font-size: 1.25rem;
    border-radius: 5px 0 5px 5px;
}
.addwx{
    font-size: 1.25rem;
    font-weight: bold;
}
.receive{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    cursor: pointer;
}
.receive div{
    background-color: #ff4540;
    padding: 10px 30px;
    border-radius: 35px;
    color: #fff;
}
.add{
    display: none;
    max-width: 480px;
    background: #ff0000;
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    font-size: 23px;
    color: #fff;
    padding: 17px 0;
    cursor: pointer;
}