#AIContainer {
    display: none;
    width: 350px;
    position: fixed;
    border-radius: 18px;
    background: linear-gradient(0deg, #E9EFF3 80%, #3E79C5 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    right: 10px;
    top: 8%;
    z-index: 8888;
    padding: 12px;
    min-height: 500px;
    height: 80%;
}

.AITitle {
    border-bottom: 1px solid #A1D3E4;
    padding-bottom: 10px;
    padding-left: 60px;
    background-image: url(/static/images/AIChatImg.png);
    background-position: -11px center;
    background-repeat: no-repeat;
}

.AItopTitle {
    font-family: Microsoft YaHei;
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    color: #FFFFFF;
}

.AIbottomTitle {
    font-family: Microsoft YaHei;
    font-size: 13px;
    font-weight: normal;
    color: #FFFFFF;
}

.ChatTitle {
    font-family: Microsoft YaHei;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    color: #000000;
    padding-left: 25px;
    background-image: url(/static/images/AIChat.png);
    background-position: left 10px;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

#ChatContainer {
    padding-top: 10px;
    overflow-y: scroll;
    /*height: 430px;*/
    height: calc(100% - 170px);
}

#img_cancelAI {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.ulContainer {
}

.pUser {
    text-align: right;
    padding-right: 25px;
    background-image: url(/static/images/UserChat.png);
    background-position: right 6px;
    background-repeat: no-repeat;
    padding-top: 6px;
    padding-bottom: 6px;
}

    .pUser > div {
        display: inline-block;
        background-color: #95EC69;
        /* height: 48px; */
        border-radius: 8px;
        padding: 12px;
        font-family: Microsoft YaHei;
        font-size: 14px;
        font-weight: normal;
        color: #1A1A1A;
        text-align: left;
        width: calc(100% - 50px);
    }

.aiUser {
    text-align: left;
    padding-left: 25px;
    background-image: url(/static/images/AIChat.png);
    background-position: left 6px;
    background-repeat: no-repeat;
    padding-top: 6px;
    padding-bottom: 6px;
}

    .aiUser > div {
        display: inline-block;
        background-color: #fff;
        /* height: 48px; */
        border-radius: 8px;
        padding: 12px;
        font-family: Microsoft YaHei;
        font-size: 14px;
        font-weight: normal;
        color: #1A1A1A;
        width: calc(100% - 50px);
    }

.dvBottom {
    height: 74px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: absolute;
    bottom: 10px;
    background-color: #fff;
    border-radius: 8px;
    width: calc(100% - 24px);
}

.dvEdit {
    background-color: #fff;
    height: 74px;
    width: calc(100% - 24px);
    margin: auto;
    overflow-y: scroll;
}
    /* PlaceholderÐ§¹û */
    .dvEdit[contenteditable="true"]:empty::before {
        content: attr(data-placeholder);
        color: #BDBDBD;
        font-family: Microsoft YaHei;
        font-size: 12px;
        font-weight: normal;
        pointer-events: none;
    }

    .dvEdit:focus {
        outline: none !important; /* ÒÆ³ýÄ¬ÈÏÂÖÀª */
    }

.img_send {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.questionList {
    text-align: left;
    padding-left: 25px;
    background-image: url(/static/images/AIChat.png);
    background-position: left 6px;
    background-repeat: no-repeat;
    padding-top: 6px;
    padding-bottom: 6px;
}

    .questionList > div {
        display: inline-block;
        background-color: #fff;
        /* height: 48px; */
        border-radius: 8px;
        padding: 12px;
        width: calc(100% - 50px);
    }

        .questionList > div > div {
            font-family: Microsoft YaHei;
            font-size: 14px;
            color: #0256ff;
            font-weight: normal;
            cursor: pointer;
            line-height: 36px;
            border-bottom: 1px dashed #000;
        }
