body {
    /* background:url(images/xinlizixun1.png) no-repeat; */
    margin:0;
}
.chat-list {
    min-width:360px;
    height:calc(90vh - 160px);
    overflow-y: scroll;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left:-50px;
    background: url(images/cs_bg.png);
    background-position: center 30%;
    background-size: cover;
}
.talk {
    /* backdrop-filter:blur(10px); */
    position: relative;
    border-radius:50px;
    margin:10px;
    padding:15px 20px 15px 20px;
    max-width: 70%;
    list-style: none;
}
.talk.left {
    background-color:rgba(179, 196, 179, 0.7);
    border-top-left-radius: 0;
    flex-shrink: 1rem;
}
.talk.right {
    background-color:lightblue;
    border-bottom-right-radius: 0;
    align-self: flex-end;
}

@keyframes input-spot {
    0% {content: '小艾输入中';}
    33% {content: '小艾输入中 ●';}
    66% {content: '小艾输入中 ● ●';}
    100% {content: '小艾输入中 ● ● ●';}
}
.is-input{
    position:relative;
}
.is-input::after {
    position: absolute;
    display:block;
    left:0;
    top:-25px;
    content: '输入中的初始化';
    height:25px;
    animation-name: input-spot;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
}

.status-text {
    margin-left:30px;
}

.input-msg {
    margin-left:10px;
    height:40px;
    font-size:18px;
    border-radius:5px;
    width: calc(100% - 150px);
}

.btn-send,
.btn-report {
    width:117px;
    height:44px;
    font-size:20px;
    background-color:#122848;
    color:#fff;
    border:none;
    border-radius:5px;
}

.yiyu-text {
    margin-top:5px;
    text-align: center;
    background-color: #122848;
    color:#fff;
    font-size:18px;
    line-height: 40px;
}

.cs-head {
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    border-radius: 500px;
}
/* @media screen and (max-width:630px) {
    .cs-head {
        display:none;
    }
} */
.cs-name {
    position:absolute;
    top:280px;
    right:20px;
}
.cs-contact {
    position:absolute;
    top:315px;
    right:10px;
}
.qa-header {
    background-color:#122848;
    height:45px;
    line-height: 45px;;
    padding-left:10px;
    display:flex;
    justify-content: space-between;
}
.qa-header a {
    text-decoration: none;
    color:#fff;
}
.qa-header img {
    width: 32px;
    height: 32px;
    margin-top: 5px;
    margin-right: 5px;
    border-radius: 5px;
}

/* @media screen and (min-width:630px) {
    .qa-header {
        display:none;
    }
} */

@keyframes aniarrow {
    0% { transform:translateX(1px) }
    50% {transform:translateX(5px)}
    100% {transform:translateX(1px)}
}
.ani_arrow {
    display:inline-block;
    animation:aniarrow 1s infinite;
    margin-right:10px;
}
