.askAi{
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 2000;
}
.askBtn{
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 24px;
    background-color: #3c7af5;
    border-color: #3c7af5;
}
.askAiCon{
    background: #fff;
    border-radius: 8px;
    width: 450px;
    max-height: 70vh;
    height: 70vh;
    padding: 12px;
    pointer-events: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    transition: all .5s;
    color: #333;
    max-width: 100%;
}
.askAiCon .askHead{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    flex-shrink: 0;
    flex-grow: 0;
}
.askAiCon .askHead i,.askAiCon .askHead .askOpeBtn{
    font-size: 16px;
    font-weight: 600;
    margin: 0 5px;
    cursor: pointer;
}
.askAiCon .askCon{
    overflow-y: auto;
    height: 573px;
    flex-shrink: 2;
    flex-grow: 2;
}
.askAiCon .chatItems{
    margin-top: 10px;
}
.askAiCon .chatItems .item{
    align-items: flex-start;
    border-radius: 8px;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    padding: 16px 10px;
    flex-wrap: nowrap;
    word-break: normal;
}
.askAiCon .chatItems .admin .item{
    background-color: #f2f3f6;
}
.askAiCon .askFoot{
    margin-top: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    padding-bottom: 10px;
}
.askAiCon .footDesc{
    color: #6d7081;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
    text-align: center;
}
.askAiCon .verson{
    color: #6d7081;
    font-size: 12px;
    font-style: normal;
    position: absolute;
    right: 10px;
    bottom: -5px;
}
.askAiCon .startCon{
    flex-shrink: 2;
    flex-grow: 2;
    overflow-y: auto;
}
.askAiCon .startCon .admin{
    align-items: flex-start;
    background-color: #f2f3f6;
    border-radius: 8px;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    padding: 16px 10px;
    flex-wrap: nowrap;
}
.askAiCon .startCon .admin img,
.askAiCon .chatItems .item .iconBox img,
.askAiCon .chatItems .item .iconBox i{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.askAiCon .startCon .askQuestions{
    margin-top: 6px;
    padding: 24px 16px 16px;
    color: #1d1e20;
    font-size: 12px;
    line-height: 24px;
}
.askAiCon .startCon .askQuestions .queItem{
    border: 1px solid #d8dae0;
    border-radius: 999px;
    cursor: default;
    margin-top: 8px;
    padding: 8px 16px;
    transition: border-color .2s ease-in-out;
    cursor: pointer;
}
.askAiCon .startCon .askQuestions .queItem:hover{
    border-color: #673de6;
}
/* 弹框 */
.askAiCon .endBox{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(29,30,32,0.35);
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 5px;
}
.askAiCon .endBox .endCon{
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
}
.askAiCon .endBox .endCon .endTitle{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3c7af5;
}
.askAiCon .endBox .endCon .endDesc{
    color: #6d7081;
    font-size: 16px;
    margin-bottom: 25px;
}
.askAiCon .endBox .endOpe{
    justify-content: flex-end;
}
.askAiCon .endBox .endOpe .endCancel{
    color: #3c7af5;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    margin-right: 26px;
}
.askAiCon .endBox .endOpe .endConfirm{
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    line-height: 24px;
    color: #fff;
    padding: 8px 24px;
    border-radius: 8px;
    background-color: #3c7af5;
}
@media (max-width: 960px) {
  .askAiCon .askCon{
        height: 320px;
    }
}