body{
    margin: 0;
}

.fixed-ai{
    position: fixed;
    bottom: 20px;
    right:20px;
    width: 200px;
    background: #fff;
    box-shadow: 0 0 3px 0 #999;
    border-radius: 5px;
    z-index: 666;
}
.ai_title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
.ai_title_left{
    display: flex;
    align-items: center;
    color:#333;
    font-size: 14px;
}
.ai_title_left img{
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
.ai_title_right{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ai_title_right img{
    width: 20px;
    height: 20px;
}
.ai_center{
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}
.ai_option{
    line-height: 35px;
    color: rgb(102,102,102);
    font-size: 14px;
    padding: 0 20px;
    cursor: pointer;
}
.ai_option:hover{
    background: rgba(0,82,217,0.05);
    color:rgb(0,82,217);
}
.ai_bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30px;
}
.btn_span{
    color:rgb(0,82,217);
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.fixed-ai-bottom{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 400px;
    height: 100vh;
    box-sizing: border-box;
    background: #fff;
    z-index: 9999;
}
.ai_main{
    width: 100%;
    flex-grow: 1;
    overflow: hidden;
    background: #ECEDEE;
}
.ai_talk_box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 420px;
    height: 100%;
    overflow: auto;
}
.ai_main_option{
    display: flex;
    align-items: flex-start;
    width: 400px;
    padding: 16px;
    box-sizing: border-box;
}
.ai_main_option img{
    width: 40px;
    height: 40px;
    border-radius: 3px;
}
.ai_main_option .ai_text{
    max-width: calc(100% - 50px);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
}
.view_user{
    justify-content: flex-end;
}
.view_user img{
    margin-left:10px;
}
.view_user .ai_text{
    border-top-right-radius: 0px;
    background: #0052D9;
    color: #fff;
}
.view_ai{
    justify-content: flex-start;
}
.view_ai img{
    margin-right:10px;
}
.view_ai .ai_text{
    border-top-left-radius: 0px;
    background: #fff;
	white-space: break-spaces;
}

.view_ai .ai_text h3 {
    display: inline-block;
    font-size: 16px;
}
.ai_foot{
    width: 400px;
    padding: 8px 16px 24px 16px;
    box-sizing: border-box;
}
.ai_input{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 0 16px;
    border-radius: 32px;
    height: 40px;
    width: 100%;
    box-sizing: border-box;
}
.ai_input input{
    width: 80%;
    outline: none;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    height: 40px;
    background-color: #f5f5f5;
    caret-color: #0052d9;
    border: none;
}
.ai_input span{
    display: inline-block;
    padding-left: 15px;
    cursor: pointer;
    height: 28.33px;
    line-height: 28.33px;
    font-size: 16px;
    font-weight: 500;
    color: #0052d9;
    border-left: 1px solid rgba(0,0,0,0.05);
}
.ai_question_box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.question_option{
    color:#333;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}
.question_option:hover{
    opacity: 0.8;
}