[v-cloak] {
    display: none
;}

:root {
  --primary-color: #3873FF;
  --secondary-color: #F4F009;
  --font-color: #1F2329;
  --hover-font-color:90,90,90;
  --delay-time: .3s
;}

.chatInputc1164141 .scrollContainer{
    width: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
    padding-bottom: 3px;
    justify-content: space-between;}

.chatInputc1164141 .scrollContainer .leftArea{
    flex-grow: 1;
    display: flex;
    gap: 0.06rem;
    width: 50%;}

.chatInputc1164141 .scrollContainer .leftArea .addNewChat,.chatInputc1164141 .scrollContainer .leftArea .removeChat{
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 0.05rem 0.1rem;
    background: #fff;
    border-radius: 0.06rem;
    color: var(--primary-color);
    box-shadow: 0px 1px 0.1rem 0px rgba(48, 61, 105, 0.1);
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;}

.chatInputc1164141 .scrollContainer .leftArea .addNewChat:hover,.chatInputc1164141 .scrollContainer .leftArea .removeChat:hover{
    transition: all 0.3s;
    box-shadow: 0px 1px 0.1rem 0px rgba(48, 61, 105, 0.2);}

.chatInputc1164141 .scrollContainer .leftArea .removeChat{
    color: #909AAA;}

.chatInputc1164141 .scrollContainer .leftArea .addNewChat.disable,.chatInputc1164141 .scrollContainer .leftArea .removeChat.disable{
    cursor: not-allowed;
    color:#afafaf;}

.chatInputc1164141 .scrollContainer .leftArea .addNewChat.disable:hover,.chatInputc1164141 .scrollContainer .leftArea .removeChat.disable:hover{
    box-shadow: 0px 1px 0.1rem 0px rgba(48, 61, 105, 0.1);}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn{
    display: flex;
    align-items: center;
    gap: 0.1rem;
    pointer-events: all;}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn .playSvg{
    width:0.3rem;
    height:0.3rem;
    cursor: pointer;
    color: var(--primary-color);}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn .pauseSvg{
    width:0.3rem;
    height:0.3rem;
    cursor: pointer;
    color: rgb(var(--hover-font-color));}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn .disabledPause{
    cursor: not-allowed
;}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn .bar {
  fill: var(--primary-color);
  transform-box: fill-box;
  transform-origin: bottom;
  animation: breathe 1.2s infinite ease-in-out;}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn #b1,.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn #b5 {
  animation-delay: -0.00s;}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn #b2,.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn #b4 {
  animation-delay: -0.15s;}

.chatInputc1164141 .scrollContainer .leftArea .broadcastBtn #b3 {
  animation-delay: -0.30s;}

@keyframes breathe {
  0%,
  100% {
    transform: scaleY(0.25);}

  50% {
    transform: scaleY(1);}
}

.chatInputc1164141 .scrollContainer .cursor{
    width: 3.4em;
    height: 3.4em;
    flex-shrink: 0;
    border: 1px solid #F0F2F5;
    box-shadow: 0px 0.04rem 0.1rem 0px rgba(223, 113, 113, .1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #fff;
    opacity: 0;
    transform: rotate(0deg);
    pointer-events: none;
    transition:opacity var(--delay-time) , transform var(--delay-time);}

.chatInputc1164141 .scrollContainer.showScrollContainer .cursor{
    opacity: 1;
    pointer-events: all;
    transition:opacity var(--delay-time) , transform var(--delay-time);}

.chatInputc1164141 .scrollContainer.scrollDown .cursor{
    transform: rotate(180deg);
    transition:opacity var(--delay-time) , transform var(--delay-time);}

.chatInputc1164141 .scrollContainer .cursor:hover img{
    opacity: 0.7;}

.chatInputc1164141 .scrollContainer .cursor:active img{
    opacity: 1;}

.chatInputc1164141 .scrollContainer .cursor img{
    width:0.2rem;
    height:0.2rem;}

.chatInputc1164141 .scrollContainer .cursor span{
    display:none;}

.chatInputc1164141 .scrollContainer .rightArea{
    flex-grow: 1;
    width: 50%;}

.chatInputc1164141 .chatInputBox {
  position: relative;
  border-radius: 0.29rem;}

.chatInputc1164141 .chatInputBox .chatInputBorder {
    border-radius: 0.16rem;
    height:1.25rem;
    background: #fff;
    display: flex;
    backdrop-filter: blur(30.36px);
    box-shadow: 0px 0px 16px 0px rgba(40, 40, 40, .1);
    padding:0.2rem;
    align-items: center;
    position: relative;
    flex-direction: column;
    align-items: inherit;}

.chatInputc1164141 .chatInputBox .chatInputBorder .starIcon{
    width: 0.18rem;
    height: 0.18rem;}

.chatInputc1164141 .chatInputBox .chatInputBorder #messageBox{
    outline: none;
    border: none;
    flex-grow: 1;
    font-size: 1em;
    resize: none;}

.chatInputc1164141 .chatInputBox .chatInputBorder .rightBox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height:0.36rem;
    gap: 0.12rem;
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;}

.chatInputc1164141 .chatInputBox .chatInputBorder .asrIcon {
  height: 0.24rem;
  width: 0.24rem;
  position: relative;
  cursor: pointer
;}

.chatInputc1164141 .chatInputBox .chatInputBorder .asrIcon svg{
  height:100%;
  width: 100%;}

.chatInputc1164141 .chatInputBox .chatInputBorder .asrIcon:hover svg path {
  fill: var(--font-color)
;}

.chatInputc1164141 .chatInputBox .chatInputBorder .asrIcon:active svg path {
  fill: var(--primary-color);
  position: relative;}

.chatInputc1164141 .chatInputBox .chatInputBorder .asrIcon:active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(0deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 37%, rgba(255, 255, 255, 0) 63%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 37%, rgba(255, 255, 255, 0) 63%);
    background-size: 100% 200%;
    pointer-events: none;
    animation: ivuSkeletonMove 1s ease infinite
;}

@keyframes ivuSkeletonMove {
    0% {
        background-position: 0 100%
    ;}

    to {
        background-position: 0 0%
    ;}
}

.chatInputc1164141 .chatInputBox .chatInputBorder .asrIcon svg path {
  fill: rgb(var(--hover-font-color))
;}

.chatInputc1164141 .chatInputBox .chatInputBorder .rightBox .line {
  width: 2px;
  height: 0.2rem;
  background: rgba(var(--hover-font-color), 0.3)
;}

.chatInputc1164141 .chatInputBox .chatInputBorder .rightBox .send {
  width: 0.36rem;
  height: 0.36rem;
  flex-shrink: 0;
  background: linear-gradient(130deg, #518ffe 3%, #2669ec 89%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
;}

.chatInputc1164141 .chatInputBox .chatInputBorder .rightBox .send:hover {
  opacity: .8
;}

.chatInputc1164141 .chatInputBox .chatInputBorder .rightBox .send:active {
  opacity: 1
;}

.chatInputc1164141 .chatInputBox .chatInputBorder .rightBox .send svg {
  width: 0.2rem;
  height: 0.2rem
;}

.chatInputc1164141 .chatInputBox.disabledInputBox {
  cursor: not-allowed
;}

.chatInputc1164141 .chatInputBox.disabledInputBox .chatInputBorder .rightBox .asrIcon {
  cursor: not-allowed
;}

.chatInputc1164141 .chatInputBox.disabledInputBox .chatInputBorder .rightBox .asrIcon:hover svg g path {
  fill:rgb(var(--hover-font-color))
;}

.dictationBgc1164141{
    display:none;}

@media screen and (max-width: 750px) {
    .chatInputc1164141 .scrollContainer{
        padding:0.5em 0;}
    .chatInputc1164141 .scrollContainer .rightArea{
        display:none;}
    .chatInputc1164141 .scrollContainer .cursor{
        gap: 4px;
        height: auto;
        background: transparent;
        box-shadow: none;
        width: max-content;
        border:none;
        padding-right: 0.16rem;}
    .chatInputc1164141 .scrollContainer .cursor img{
        width:1em;
        height:1em;
        transform: rotate(0deg);
        transition: transform var(--delay-time);}
    .chatInputc1164141 .scrollContainer .cursor span{
        font-size:0.9em;
        color: var(--primary-color);}
    .chatInputc1164141 .scrollContainer.showScrollContainer .cursor .backTop{
        display: block;}
    .chatInputc1164141 .scrollContainer.showScrollContainer .cursor .backBottom{
        display:none;}
    .chatInputc1164141 .scrollContainer.scrollDown .cursor{
        transform: rotate(0deg);}
    .chatInputc1164141 .scrollContainer.scrollDown .cursor img{
        transform: rotate(180deg);
        transition: transform var(--delay-time);}
    .chatInputc1164141 .scrollContainer.scrollDown .cursor .backTop{
        display:none;}
    .chatInputc1164141 .scrollContainer.scrollDown .cursor .backBottom{
        display: block;}
    
    .chatInputc1164141 .chatInputBox .chatInputBorder{
        padding:0.12rem;}
    
    .chatInputc1164141 .chatInputBox .chatInputBorder .rightBox{
        bottom:0.12rem;
        right:0.12rem;}
    
    .chatInputc1164141 .chatInputBox .chatInputBorder.pressBox{
        padding-left:0.98rem;
        padding-right:0.3rem;}

    .chatInputc1164141 .chatInputBox .chatInputBorder.pressBox .voiceSpanRef{
        width: 100px;
        color: #666;
        text-align: center;
        user-select: none;
        flex-grow: 1;}

    .dictationBgc1164141{
        position: fixed;
        inset: 0;
        background: linear-gradient(180deg, transparent 10%, #fff 50%);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;}
    .dictationBgc1164141 .bubbleBox{
        margin: auto 0.6rem 0.6rem;
        border-radius: 0.16rem;
        padding: 0.14rem 0.18rem 0.18rem;
        background: #F7F8FA;
        color: #5F7288;
        position: relative;}

    .dictationBgc1164141 .bubbleBox::after {
        content: " ";
        position: absolute;
        border: solid 0.1rem transparent;
        border-top: solid 0.1rem #F7F8FA;
        left: 50%;
        margin-left: 0.05rem;
        bottom: -0.19rem;}

    .dictationBgc1164141 .bubbleBox .circleLoading{
        display: flex;
        gap: 0.08rem;
        height: 0.39rem;
        align-items: center;}
    @keyframes ball-pulse {
        0%,
        60%,
        100% {
            opacity: 1;
            transform: scale(1);}

        30% {
            opacity: 0.1;
            transform: scale(0.01);}
    }

    .dictationBgc1164141 .bubbleBox .circleLoading>div{
        width:0.1rem;
        height: 0.1rem;
        border-radius: 50%;
        animation: ball-pulse 0.7s ease-in-out infinite;}

    .dictationBgc1164141 .bubbleBox .circleLoading .circle-loading-first {
      background: linear-gradient(to right, #3876ff, #398afe);
      animation-delay: -200ms;}

    .dictationBgc1164141 .bubbleBox .circleLoading .circle-loading-second {
      background: linear-gradient(to right, #3a99fd, #3aadfb);
      animation-delay: -100ms;}

    .dictationBgc1164141 .bubbleBox .circleLoading .circle-loading-third {
      background: linear-gradient(to right, #3cbcfb, #3cd1f9);
      animation-delay: 0ms;}

    .dictationBgc1164141 .bubbleBox p{
        outline: none;
        line-height: 1.5;}

    .dictationBgc1164141 .bubbleBox p::after {
        content: "|";
        animation: Flickering .5s infinite;}

    .dictationBgc1164141 .bubbleBox p.hideCursor::after{
        display:none;}
    @keyframes Flickering {
        0% {
            opacity: 1
        ;}

        100% {
            opacity: 0
        ;}
    }

    .dictationBgc1164141 .bubbleBox p:focus::after {
        display:none;}

    .dictationBgc1164141 .dictationBtn{
        padding:0 0.6rem;}

    .dictationBgc1164141 .dictationBtn .touchBtns,.dictationBgc1164141 .dictationBtn .editBtns{
        display: flex;
        justify-content: space-between;}

    .dictationBgc1164141 .dictationBtn .cancelBtn,.dictationBgc1164141 .dictationBtn .confirmBtn{
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F7F8FA;
        color:#909AAA;
        position: relative;}

    .dictationBgc1164141 .dictationBtn .cancelBtn svg{
        width:0.32rem;
        height:0.32rem;}

    .dictationBgc1164141 .dictationBtn .cancelBtn .tips{
        position: absolute;
        top: -0.28rem;
        left: 50%;
        transform: translateX(-0.45rem);
        width: 1rem;
        text-align: center;
        pointer-events: none;
        color: #ff6666;
        display:none;}

    .dictationBgc1164141 .dictationBtn .cancelBtn.activeBtn{
        background: #ff6666;
        color:#fff;}

    .dictationBgc1164141 .dictationBtn .cancelBtn.activeBtn .tips{
        display:block;}

    .dictationBgc1164141 .dictationBtn .confirmBtn{
        color:#5F7288;
        position: relative;
        letter-spacing: 0.03rem;}

    .dictationBgc1164141 .dictationBtn .tips{
        position: absolute;
        top: -0.28rem;
        left: 50%;
        transform: translateX(-0.45rem);
        width: 1rem;
        text-align: center;
        pointer-events: none;
        color:#5F7288;
        display:none;}

    .dictationBgc1164141 .dictationBtn .activeBtn{
        color:#ffffff;
        background: linear-gradient(130deg, #777 3%, #000 89%);}

    .dictationBgc1164141 .dictationBtn .activeBtn .tips{
        display:block;}

    .dictationBgc1164141 .dictationBtn .sendBtn{
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: linear-gradient(130deg, #777 3%, #000 89%);}

    .dictationBgc1164141 .soundWaveBg{
        width: 100%;
        height: 1.5rem;
        position: relative;
        padding-top: 0.75rem;}
    .dictationBgc1164141 .soundWaveBg::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5rem;
        background-color: #F7F8FA;
        border-radius: 50% 50% 0 0;
        transform: scaleX(1.5) translateY(0);
        transform-origin: bottom center;
        box-shadow: 0 -0.1rem 0.22rem rgba(0, 0, 0, .1);}
    .dictationBgc1164141 .soundWaveBg .tips{
        position: absolute;
        top: -0.4rem;
        left: 0;
        width: 100%;
        line-height: 1.5;
        color: #5F7288;
        text-align: center;}
    .dictationBgc1164141 .soundWaveBg .voice-dots{
        height: 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.04rem;}
    .dictationBgc1164141 .soundWaveBg .voice-dots .dot{
        width: .06rem;
        height: .12rem;
        background: linear-gradient(180deg, #777 3%, #000 89%);
        border-radius: 50%;
        animation: voiceWave .8s ease-in-out infinite;
        opacity: .7;
        transform-origin: center center;}

    @keyframes voiceWave {
      0% {
        transform: scaleY(1);
        opacity: 0.7;}

      25% {
        transform: scaleY(2);
        opacity: 1;}

      50% {
        transform: scaleY(1);
        opacity: 0.7;}

      75% {
        transform: scaleY(1.5);
        opacity: 0.9;}

      100% {
        transform: scaleY(1);
        opacity: 0.7;}
    }

    .dictationBgc1164141 .soundWaveBg.outside{
        opacity: 0.3;}

    .dictationBgc1164141 .soundWaveBg.outside .tips{
        display:none;}

    .dictationBgc1164141 .soundWaveBg.hide{
        opacity: 0;
        pointer-events: none;}
}
[v-cloak] {
  display: none
;}

.guidec1164142{
    display: flex;
    gap: 0.12rem;}
.guidec1164142 img{
    width: 0.16rem;
    height: 0.18rem;
    flex-shrink: 0;}
.guidec1164142 h4{
    font-size: 0.18rem;
    line-height: 1;
    flex-shrink: 0;
    color:#333;}
.guidec1164142 .cardc1164142{
    display: flex;
    gap: 0.16rem;
    flex-wrap: wrap;
    flex-grow: 1;}

.guidec1164142 .cardc1164142 p{
    font-size: 0.15rem;
    line-height: 0.18rem;
    flex-shrink: 0;
    color:#6c6c6c;
    cursor: pointer;}

.guidec1164142 .cardc1164142 p:hover{
    color:#518ffe;}

@media screen and (max-width: 750px) {
    .guidec1164142{
        gap:0.08rem;}
    .guidec1164142 img{
        width:0.12rem;
        height: 0.14rem;}
    .guidec1164142 h4{
        font-size:0.14rem;}
    .guidec1164142 .cardc1164142 p{
        font-size: 0.14rem;
        line-height: 1;
        width: 10px;
        flex-grow: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;}
    .guidec1164142 .cardc1164142 p:not(:nth-child(1)){
        display:none;}
}

