.fixed_ai_box{
    width: 90px;
    height: 96px;
    /* background: #0048EB; */
    border-radius: 50%;
    position: fixed;
    bottom: 280px;
    right: 20px;
    cursor: pointer;
    z-index: 98;
}
.fixed_ai_img{
    width: 100%;
    height: 100%;
}
.fixed_ai_text{
    width: 167px;
    height: 34px;
    background: linear-gradient( 270deg, #39BDFF 0%, #086AEF 100%);
    box-shadow: 4px 4px 4px 0px rgba(49,59,115,0.16);
    border-radius: 12px 12px 0px 12px;
    position: absolute;
    top: -15px;
    left: -135px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 34px;
    text-align: center;
    display: none;
}
.fixed_btn_item_img{
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}
.fixed_ai_box:hover{
    .fixed_ai_text{
        display: block;
    }
}
@media (min-width: 769px) and (max-width: 1001px) {
    .fixed_ai_box{
        bottom: 580px;
    }
}

@media (max-width: 768px) {
    .fixed_ai_text{
        display: none;
    }
    .fixed_ai_box{
        width: 60px;
        height: 65px;
        bottom: 71px;
        right: 5px;
    }
}