gerson
2025-01-21 ac71af6a04e45ae69b4009e27d9001e834fff34b
src/components/chat/components/playBar/index.scss
@@ -1,4 +1,3 @@
.set-waterTitle {
   line-height: 24px;
   font-weight: 500;
@@ -64,10 +63,14 @@
   transition: border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out;
}
.playInput {
   --y-padding: 9px;
   --x-padding: 7px;
   align-items: flex-start;
   width: 760px;
   // width: 760px;
   position: relative;
   padding: 4px 4px 4px 12px;
   padding: var(--y-padding) var(--x-padding) var(--y-padding) var(--x-padding);
   display: flex;
   -webkit-box-align: end;
@@ -101,6 +104,7 @@
         :deep(.el-textarea__inner) {
            // 去除线
            box-shadow: none;
            padding:5px 2px
         }
      }
      :deep(.el-input__wrapper) {
@@ -133,11 +137,18 @@
   @keyframes breathe {
      0%,
      100% {
         transform: scale(1);
         transform: scale(0.6);
      }
      50% {
         transform: scale(1.35);
         transform: scale(1);
      }
   }
   animation: breathe 3s infinite ease-in-out;
}
   animation: breathe 1.8s infinite ease-in-out;
}
.question-input {
   :deep(.el-input__count) {
      @apply text-gray-400;
   }
}