.aizy{
    padding:9px 12px;
    background: linear-gradient( 158deg, #F7F0F4 0%, #F0F8FF 100%);
    border-radius: 8px;
    margin-bottom: 12px;
}
.aiheader{
    display: flex;
    justify-content:space-between;
}
.aizy img{
    width: 36px;
    height: 14px;
    margin:0;
}
.aizy .aiheaderLeft{
    display: flex;
    align-items: center;
    padding:0;
}
#aiDes{
    color: #333;
    padding: 0;
    font-size: 12px;
    margin-left: 2px;
}
.aizy .aiTips{
    display: none;
    font-size: 12px;
    color:#666;
    text-indent: 0;
    margin: 0;
    line-height: 12px;
}
.aizy .aiArrow{
    width: 16px;
    padding: 7px;
}
.aizy .aizyCon{
    padding:6px 0;
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    line-height: 20px;
    text-align: justify;
    display: none;
}

.zhushouImg{
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1;
    width: 76px;
}
.aiPage{
    position: fixed;
    left: 0;
    top:0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: url('../../../js20/ai/image/bg.png') no-repeat left top;
    background-size: 100% 100%;
    display: none;
}
.aiHeader{
    height: 44px;
    display: flex;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
}
.aiHeader img{
    padding: 5px;
    width:36px;
}
.contents{
    padding:24px;
    height: calc(100vh - 100px);
    overflow: auto;
}
.aibox{
    overflow: hidden;
    display: flex;
    justify-content: left;
    width: 100%;
}
.asbox{
    overflow: hidden;
    display: flex;
    justify-content: right;
    width: 100%;
}
.ai{
    font-weight: 400;
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    line-height: 20px;
    background: #FFFFFF;
    border-radius: 16px 16px 16px 0px;
    padding:16px 26px;
    margin-bottom: 20px;
}
.as{
    background: linear-gradient( 135deg, #F9D8D8 0%, #D2E6FB 100%);
    border-radius: 16px 16px 0px 16px;
    font-weight: 600;
    font-size: 16px;
    color: rgba(0,0,0,0.85);
    line-height: 22px;
    padding:16px 26px;
    margin-bottom: 20px;
}
.bottom{
    height: 56px;
    padding:0 16px;
    background: #fff;
    box-shadow: 0px -1px 5px 0px rgba(88,99,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom input{
    flex-grow: 1;
    display: block;
    height: 36px;
    background: #F7F7F7;
    margin-right: 10px;
    border-radius: 18px;
    padding: 0 16px;
    border: none;
    outline: none;
}
.bottom img{
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 5px;
}
.messageToast{
    position: fixed;
    max-width: 90%;
    top: 50px;
    z-index: 100000002;
    font-size: 14px;
    padding: 10px 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: flex;
    border-radius: 4px;
    border:solid 1px #eee;
}
.messageToast img{
    width: 16px;
    height: 16px;
}
.messageToast span{
    display: inline-block;
    margin-left: 10px;
}
.holding{
    position: relative;
    top: -10px;
    font-size: 12px;
    padding: 5px;
    width: max-content;
    display: none;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(303deg, #EF4444 0%, #72B9DC 100%);
    background-size: 400% 100%;
    /* 设置背景大小 */
    animation: gradient 3s infinite linear;
    /* 定义动画 */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: -400% 50%;
        /* 背景向左移动 */
    }
}