[v-cloak] {
  display: none;
}

.ai-quiz-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/*  background-color: rgba(16, 26, 41, 0.76);*/
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.ai-quiz-dialog {
  width: 840px;
  height: 640px;
  background: url(../../images/aiqa/bg-dialog.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

.dialog-header {
  position: relative;
  padding: 16px 30px;
}
.dialog-header .dialog-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1C1B26;
  line-height: 1;
}
.dialog-header .dialog-close {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.dialog-header .dialog-close img {
  width: 100%;
  height: 100%;
  display: block;
}

.dialog-body {
  flex: 1;
  padding: 0 40px;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.dialog-body::-webkit-scrollbar {
  width: 6px;
}
.dialog-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.dialog-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.dialog-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.dialog-body > div {
  width: 100%;
  height: 100%;
}

.ai-avatar-section {
  margin: 0 auto;
  width: 240px;
  height: 180px;
  position: relative;
}
.ai-avatar-section .avatar-wrapper {
  position: relative;
  width: 146px;
  height: 146px;
  margin: 24px auto 0;
}
.ai-avatar-section .avatar-wrapper .wave-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotateWave linear infinite;
  z-index: 1;
}
.ai-avatar-section .avatar-wrapper .wave-bg-1 {
  width: 170px;
  height: 172px;
  background-image: url(../../images/aiqa/animation-1.png);
  animation-duration: 35s;
}
.ai-avatar-section .avatar-wrapper .wave-bg-2 {
  width: 164px;
  height: 171px;
  background-image: url(../../images/aiqa/animation-2.png);
  animation-duration: 15s;
  animation-direction: reverse;
}
.ai-avatar-section .avatar-wrapper .wave-bg-3 {
  width: 170px;
  height: 170px;
  background-image: url(../../images/aiqa/animation-3.png);
  animation-duration: 20s;
}
.ai-avatar-section .avatar-wrapper .wave-bg-4 {
  width: 240px;
  height: 239px;
  background-image: url(../../images/aiqa/animation-4.png);
  animation: breatheFade 6s ease-in-out infinite;
  z-index: 1.5;
}
.ai-avatar-section .avatar-wrapper .ai-avatar {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #EFEDFF;
  z-index: 2;
}
.ai-avatar-section .avatar-wrapper .voice-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease;
  z-index: 3;
}
.ai-avatar-section .avatar-wrapper .voice-icon img {
  width: 18px;
  height: 18px;
}

.quiz-hint {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 900;
  color: #1C1B26;
  text-align: center;
  line-height: 1.5;
}

.question-wrapper {
  width: 100%;
  height: 220px;
  position: relative;
}
.question-wrapper .question-display {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-sizing: border-box;
  border: 1px solid #F2F2F2;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.question-wrapper .question-display::-webkit-scrollbar {
  display: none;
}
.question-wrapper .mask {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 86px;
  height: 38px;
  background: linear-gradient(270deg, #FFFFFF 51.98%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
  border-bottom-right-radius: 16px;
}
.question-wrapper .volume-animation {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 47px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  z-index: 2;
}
.question-wrapper .volume-animation .bar {
  width: 2px;
  background: #5C4DFF;
  border-radius: 2px;
  transform-origin: center;
}
.question-wrapper .volume-animation .bar1 {
  animation: volumeBounce1 0.9s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar2 {
  animation: volumeBounce2 1s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar3 {
  animation: volumeBounce3 1.1s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar4 {
  animation: volumeBounce4 1.2s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar5 {
  animation: volumeBounce5 1.3s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar6 {
  animation: volumeBounce6 1.4s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar7 {
  animation: volumeBounce7 1.5s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar8 {
  animation: volumeBounce8 1.6s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar9 {
  animation: volumeBounce9 1.7s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar10 {
  animation: volumeBounce10 1.8s ease-in-out infinite;
}
.question-wrapper .volume-animation .bar1 {
  height: 8px;
}
.question-wrapper .volume-animation .bar2 {
  height: 12px;
}
.question-wrapper .volume-animation .bar3 {
  height: 6px;
}
.question-wrapper .volume-animation .bar4 {
  height: 14px;
}
.question-wrapper .volume-animation .bar5 {
  height: 10px;
}
.question-wrapper .volume-animation .bar6 {
  height: 16px;
}
.question-wrapper .volume-animation .bar7 {
  height: 8px;
}
.question-wrapper .volume-animation .bar8 {
  height: 12px;
}
.question-wrapper .volume-animation .bar9 {
  height: 6px;
}
.question-wrapper .volume-animation .bar10 {
  height: 10px;
}
.question-wrapper .question-text {
  margin: 0;
  font-size: 18px;
  color: #1C1B26;
  line-height: 1.8;
  text-align: left;
  word-break: break-word;
  padding-bottom: 40px;
}

@keyframes infinite-scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.random-select-view {
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.random-select-view .random-title {
  margin: 0 0 100px;
  font-size: 30px;
  font-weight: 900;
  color: #1C1B26;
  text-align: center;
}
.random-select-view .slot-machine-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.random-select-view .slot-machine-container .indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}
.random-select-view .slot-machine-container .indicator-top {
  top: -70px;
}
.random-select-view .slot-machine-container .indicator-bottom {
  bottom: -40px;
  transform: translateX(-50%) rotate(180deg);
}
.random-select-view .slot-machine-container .slot-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list {
  display: flex;
  transform: translateX(0);
  will-change: transform;
  transition: none;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list.looping {
  animation: infinite-scroll var(--loop-duration) linear infinite;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item {
  width: 114px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item .slot-avatar {
  transition: all 0.3s ease;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item .slot-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 0px solid transparent;
  transition: all 0.3s ease;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item .slot-name {
  margin-top: 22px;
  font-weight: 700;
  color: #1C1B26;
  text-align: center;
  text-indent: 14px;
  white-space: nowrap;
  transition: font-size 0.3s ease;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.farther {
  opacity: 0.1;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.farther .slot-avatar {
  width: 60px;
  height: 60px;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.farther .slot-name {
  font-size: 16px;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.far {
  opacity: 0.3;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.far .slot-avatar {
  width: 60px;
  height: 60px;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.far .slot-name {
  font-size: 18px;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.near {
  opacity: 0.6;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.near .slot-avatar {
  width: 80px;
  height: 80px;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.near .slot-name {
  font-size: 20px;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.center {
  opacity: 1;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.center .slot-avatar {
  width: 100px;
  height: 100px;
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.center .slot-avatar img {
  border: 7px solid rgba(139, 163, 255, 0.3);
}
.random-select-view .slot-machine-container .slot-wrapper .slot-list .slot-item.center .slot-name {
  font-size: 24px;
}

.assign-person-view {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.assign-person-view .assign-title {
  margin: 0 0 40px;
  font-size: 30px;
  font-weight: 900;
  color: #1C1B26;
  text-align: center;
}
.assign-person-view .person-list-wrapper {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.assign-person-view .person-list-wrapper::-webkit-scrollbar {
  width: 6px;
}
.assign-person-view .person-list-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.assign-person-view .person-list-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.assign-person-view .person-list-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.assign-person-view .person-list-wrapper .person-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px 34px;
  padding: 0 10px;
}
.assign-person-view .person-list-wrapper .person-list .person-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.assign-person-view .person-list-wrapper .person-list .person-item .person-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}
.assign-person-view .person-list-wrapper .person-list .person-item .person-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.assign-person-view .person-list-wrapper .person-list .person-item .person-avatar .check-icon {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border: none;
  animation: scaleIn 0.3s ease;
}
.assign-person-view .person-list-wrapper .person-list .person-item .person-name {
  margin: 0;
  font-size: 16px;
  color: #1C1B26;
  text-align: center;
  max-width: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person-item.disabled {
  opacity: 0.3;
  pointer-events: none; /* 禁止点击 */
}

.assign-person-view .person-list-wrapper .person-list .person-item.selected .person-avatar img:first-child {
  border-color: #5C4DFF;
}

.waiting-answer-view {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.waiting-answer-view .selected-person-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.waiting-answer-view .selected-person-info .selected-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.waiting-answer-view .selected-person-info .selected-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.waiting-answer-view .selected-person-info .selected-name {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #1C1B26;
}
.waiting-answer-view .waiting-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.waiting-answer-view .waiting-content .waiting-image {
  width: 212px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 30px;
}
.waiting-answer-view .waiting-content .waiting-text {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1C1B26;
  margin-bottom: 10px;
}
.waiting-answer-view .waiting-content .start-voice-hint {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #494759;
}
.waiting-answer-view .waiting-content .start-voice-hint .start-link {
  color: #5C4DFF;
  text-decoration: none;
  cursor: pointer;
}

.voice-answer-view {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.voice-answer-view .selected-person-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
  justify-content: flex-start;
  width: 100%;
  justify-content: flex-start;
}
.voice-answer-view .selected-person-info .selected-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.voice-answer-view .selected-person-info .selected-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-answer-view .selected-person-info .selected-name {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #1C1B26;
}
.voice-answer-view .countdown-section {
  margin-bottom: 25px;
}
.voice-answer-view .countdown-section .countdown-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-answer-view .countdown-section .countdown-wrapper .loading-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotateLoading 1.5s linear infinite;
}
.voice-answer-view .countdown-section .countdown-wrapper .countdown-number {
  font-size: 52px;
  font-weight: 700;
  color: #5C4DFF;
  z-index: 1;
}
.voice-answer-view .voice-hint {
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: 900;
  color: #494759;
  text-align: center;
}
.voice-answer-view .listening-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.voice-answer-view .listening-wrapper .listening-section {
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 20px;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar {
  width: 2px;
  background: #5C4DFF;
  border-radius: 2px;
  transform-origin: center;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar1 {
  animation: volumeBounce1 0.9s ease-in-out infinite;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar2 {
  animation: volumeBounce2 1s ease-in-out infinite;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar3 {
  animation: volumeBounce3 1.1s ease-in-out infinite;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar4 {
  animation: volumeBounce4 1.2s ease-in-out infinite;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar5 {
  animation: volumeBounce5 1.3s ease-in-out infinite;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar1 {
  height: 10px;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar2 {
  height: 14px;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar3 {
  height: 8px;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar4 {
  height: 16px;
}
.voice-answer-view .listening-wrapper .listening-section .listening-volume .bar5 {
  height: 12px;
}
.voice-answer-view .listening-wrapper .listening-section .listening-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #7F7E8C;
}

.student-answering-view {
  width: 100%;
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.student-answering-view .selected-person-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  width: 100%;
  justify-content: flex-start;
  width: 100%;
  justify-content: flex-start;
}
.student-answering-view .selected-person-info .selected-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.student-answering-view .selected-person-info .selected-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.student-answering-view .selected-person-info .selected-name {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #1C1B26;
}
.student-answering-view .answer-wrapper {
  width: 100%;
  height: 336px;
  position: relative;
}
.student-answering-view .answer-wrapper .answer-display {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-sizing: border-box;
  border: 1px solid #F2F2F2;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.student-answering-view .answer-wrapper .answer-display::-webkit-scrollbar {
  display: none;
}
.student-answering-view .answer-wrapper .answer-display .answer-text {
  margin: 0;
  font-size: 18px;
  color: #1C1B26;
  line-height: 1.8;
  text-align: left;
  word-break: break-word;
  padding-bottom: 40px;
}
.student-answering-view .answer-wrapper .mask {
  width: 140px;
  position: absolute;
  bottom: 1px;
  right: 1px;
  height: 38px;
  background: linear-gradient(270deg, #FFFFFF 51.98%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
  border-bottom-right-radius: 16px;
}
.student-answering-view .answer-wrapper .answer-listening {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 20px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar {
  width: 2px;
  background: #5C4DFF;
  border-radius: 2px;
  transform-origin: center;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar1 {
  animation: volumeBounce1 0.9s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar2 {
  animation: volumeBounce2 1s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar3 {
  animation: volumeBounce3 1.1s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar4 {
  animation: volumeBounce4 1.2s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar5 {
  animation: volumeBounce5 1.3s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar6 {
  animation: volumeBounce6 1.4s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar7 {
  animation: volumeBounce7 1.5s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar8 {
  animation: volumeBounce8 1.6s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar9 {
  animation: volumeBounce9 1.7s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar10 {
  animation: volumeBounce10 1.8s ease-in-out infinite;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar1 {
  height: 10px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar2 {
  height: 14px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar3 {
  height: 8px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar4 {
  height: 16px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar5 {
  height: 12px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar6 {
  height: 14px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar7 {
  height: 10px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar8 {
  height: 16px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar9 {
  height: 12px;
}
.student-answering-view .answer-wrapper .answer-listening .listening-volume .bar10 {
  height: 14px;
}
.student-answering-view .answer-wrapper .answer-listening .answer-timer {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #5C4DFF;
  min-width: 50px;
  text-align: center;
}

.cover-answer-confirm-mask {
  position: absolute;
  width: 840px;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  backdrop-filter: blur(50px);
  border-radius: 20px;
}

.cover-answer-confirm-dialog {
  width: 788px;
  min-height: 448px;
  background: linear-gradient(180deg, #F8F6FF 0%, #EEF5FF 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(28, 27, 38, 0.18);
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

.cover-answer-confirm-header {
  position: relative;
  padding: 16px 28px;
}
.cover-answer-confirm-header .cover-answer-confirm-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1C1B26;
  line-height: 1;
}
.cover-answer-confirm-header .cover-answer-confirm-close {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.cover-answer-confirm-header .cover-answer-confirm-close img {
  width: 100%;
  height: 100%;
  display: block;
}

.cover-answer-confirm-body {
  flex: 1;
  padding: 0 34px;
  box-sizing: border-box;
}

.cover-answer-confirm-view {
  width: 100%;
  padding: 6px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.cover-answer-confirm-view .selected-person-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.cover-answer-confirm-view .selected-person-info .selected-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.cover-answer-confirm-view .selected-person-info .selected-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-answer-confirm-view .selected-person-info .selected-name {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #1C1B26;
}
.cover-answer-confirm-view .selected-person-info {
  width: 100%;
}
.cover-answer-confirm-view .selected-person-info .selected-avatar {
  border: 2px solid #fff;
  box-sizing: border-box;
}
.cover-answer-confirm-view .cover-answer-content {
  width: 100%;
  margin-bottom: 20px;
}
.cover-answer-confirm-view .cover-answer-content .cover-answer-display {
  width: 100%;
  height: 144px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}
.cover-answer-confirm-view .cover-answer-content .cover-answer-display::-webkit-scrollbar {
  display: none;
}
.cover-answer-confirm-view .cover-answer-content .cover-answer-display .cover-answer-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #1C1B26;
  word-break: break-word;
}
.cover-answer-confirm-view .cover-answer-tip {
  margin-top: auto;
  width: fit-content;
  max-width: 100%;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #FBE59A;
  border-radius: 4px;
  background: #FEFBE8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cover-answer-confirm-view .cover-answer-tip .cover-answer-tip-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #F6A73E;
  position: relative;
}
.cover-answer-confirm-view .cover-answer-tip .cover-answer-tip-icon::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.cover-answer-confirm-view .cover-answer-tip .cover-answer-tip-text {
  font-size: 16px;
  color: #6E6653;
  line-height: 1.5;
}

.cover-answer-confirm-footer {
  padding: 20px 34px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.cover-answer-confirm-footer .btn-action {
  max-width: 190px;
  min-width: 144px;
  height: 40px;
  padding: 0 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}
.cover-answer-confirm-footer .btn-action.btn-reanswer {
  background: #fff;
  color: #5C4DFF;
}
.cover-answer-confirm-footer .btn-action.btn-confirm {
  background: #5C4DFF;
  color: #fff;
}

.answer-complete-view {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.answer-complete-view .ai-avatar-section {
  margin: 0 auto;
  width: 240px;
  height: 180px;
  position: relative;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper {
  position: relative;
  width: 146px;
  height: 146px;
  margin: 24px auto 0;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .wave-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotateWave linear infinite;
  z-index: 1;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .wave-bg-1 {
  width: 170px;
  height: 172px;
  background-image: url(../../images/aiqa/animation-1.png);
  animation-duration: 35s;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .wave-bg-2 {
  width: 164px;
  height: 171px;
  background-image: url(../../images/aiqa/animation-2.png);
  animation-duration: 15s;
  animation-direction: reverse;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .wave-bg-3 {
  width: 170px;
  height: 170px;
  background-image: url(../../images/aiqa/animation-3.png);
  animation-duration: 20s;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .wave-bg-4 {
  width: 240px;
  height: 239px;
  background-image: url(../../images/aiqa/animation-4.png);
  animation: breatheFade 6s ease-in-out infinite;
  z-index: 1.5;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .ai-avatar {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #EFEDFF;
  z-index: 2;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .voice-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease;
  z-index: 3;
}
.answer-complete-view .ai-avatar-section .avatar-wrapper .voice-icon img {
  width: 18px;
  height: 18px;
}
.answer-complete-view .thanks-wrapper {
  width: 100%;
  margin: 0 0 3px 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 0;
}
.answer-complete-view .thanks-wrapper .thanks-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 16px;
}
.answer-complete-view .thanks-wrapper .thanks-hint {
  padding: 6px 20px;
  background: #fff;
  border-radius: 12px 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  font-size: 18px;
  color: #1C1B26;
  line-height: 1.5;
  margin-right: auto;
  margin-bottom: 22px;
}
.answer-complete-view .thanks-wrapper .thanks-hint .thanks-text {
  color: #1C1B26;
}
.answer-complete-view .thanks-wrapper .thanks-hint .student-name {
  color: #5C4DFF;
}
.answer-complete-view .thanks-wrapper .thanks-hint .score-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.answer-complete-view .thanks-wrapper .thanks-hint .score-dropdown .score-text {
  color: #5C4DFF;
  font-size: 24px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.answer-complete-view .thanks-wrapper .thanks-hint .score-dropdown .score-text.positive {
  color: #5C4DFF;
}
.answer-complete-view .thanks-wrapper .thanks-hint .score-dropdown .score-text.negative {
  color: #F33131;
}
.answer-complete-view .thanks-wrapper .thanks-hint .score-dropdown .arrow-icon {
  width: 18px;
  height: 18px;
}
.answer-complete-view .thanks-wrapper .voice-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5.7142853737px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 16px;
}
.answer-complete-view .thanks-wrapper .voice-icon:hover {
  background: #E8ECEF;
}
.answer-complete-view .thanks-wrapper .voice-icon img {
  width: 18px;
  height: 18px;
}
.answer-complete-view .question-wrapper {
  width: 100%;
  height: 350px;
  position: relative;
}
.answer-complete-view .question-wrapper .question-display {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-sizing: border-box;
  border: 1px solid #F2F2F2;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.answer-complete-view .question-wrapper .question-display::-webkit-scrollbar {
  display: none;
}
.answer-complete-view .question-wrapper .mask {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 86px;
  height: 38px;
  background: linear-gradient(270deg, #FFFFFF 51.98%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
  border-bottom-right-radius: 16px;
}
.answer-complete-view .question-wrapper .volume-animation {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 47px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  z-index: 2;
}
.answer-complete-view .question-wrapper .volume-animation .bar {
  width: 2px;
  background: #5C4DFF;
  border-radius: 2px;
  transform-origin: center;
}
.answer-complete-view .question-wrapper .volume-animation .bar1 {
  animation: volumeBounce1 0.9s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar2 {
  animation: volumeBounce2 1s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar3 {
  animation: volumeBounce3 1.1s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar4 {
  animation: volumeBounce4 1.2s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar5 {
  animation: volumeBounce5 1.3s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar6 {
  animation: volumeBounce6 1.4s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar7 {
  animation: volumeBounce7 1.5s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar8 {
  animation: volumeBounce8 1.6s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar9 {
  animation: volumeBounce9 1.7s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar10 {
  animation: volumeBounce10 1.8s ease-in-out infinite;
}
.answer-complete-view .question-wrapper .volume-animation .bar1 {
  height: 8px;
}
.answer-complete-view .question-wrapper .volume-animation .bar2 {
  height: 12px;
}
.answer-complete-view .question-wrapper .volume-animation .bar3 {
  height: 6px;
}
.answer-complete-view .question-wrapper .volume-animation .bar4 {
  height: 14px;
}
.answer-complete-view .question-wrapper .volume-animation .bar5 {
  height: 10px;
}
.answer-complete-view .question-wrapper .volume-animation .bar6 {
  height: 16px;
}
.answer-complete-view .question-wrapper .volume-animation .bar7 {
  height: 8px;
}
.answer-complete-view .question-wrapper .volume-animation .bar8 {
  height: 12px;
}
.answer-complete-view .question-wrapper .volume-animation .bar9 {
  height: 6px;
}
.answer-complete-view .question-wrapper .volume-animation .bar10 {
  height: 10px;
}
.answer-complete-view .question-wrapper .evaluation-content {
  padding-bottom: 40px;
}
.answer-complete-view .question-wrapper .evaluation-content h1 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: #1C1B26;
  line-height: 1.4;
}
.answer-complete-view .question-wrapper .evaluation-content h1:first-child {
  margin-top: 0;
}
.answer-complete-view .question-wrapper .evaluation-content p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 400;
  color: #1C1B26;
  line-height: 1.4;
  text-align: left;
  word-break: break-word;
}
.answer-complete-view .question-wrapper .evaluation-content p:last-child {
  margin-bottom: 0;
}

.view-answer-view {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.view-answer-view .ai-avatar-section {
  margin: 0 auto;
  width: 240px;
  height: 180px;
  position: relative;
}
.view-answer-view .ai-avatar-section .avatar-wrapper {
  position: relative;
  width: 146px;
  height: 146px;
  margin: 24px auto 0;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .wave-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotateWave linear infinite;
  z-index: 1;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .wave-bg-1 {
  width: 170px;
  height: 172px;
  background-image: url(../../images/aiqa/animation-1.png);
  animation-duration: 35s;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .wave-bg-2 {
  width: 164px;
  height: 171px;
  background-image: url(../../images/aiqa/animation-2.png);
  animation-duration: 15s;
  animation-direction: reverse;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .wave-bg-3 {
  width: 170px;
  height: 170px;
  background-image: url(../../images/aiqa/animation-3.png);
  animation-duration: 20s;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .wave-bg-4 {
  width: 240px;
  height: 239px;
  background-image: url(../../images/aiqa/animation-4.png);
  animation: breatheFade 6s ease-in-out infinite;
  z-index: 1.5;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .ai-avatar {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #EFEDFF;
  z-index: 2;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .voice-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease;
  z-index: 3;
}
.view-answer-view .ai-avatar-section .avatar-wrapper .voice-icon img {
  width: 18px;
  height: 18px;
}
.view-answer-view .answer-hint {
  margin: 24px 0;
  font-size: 20px;
  font-weight: 900;
  color: #1C1B26;
  text-align: center;
  line-height: 1.5;
}
.view-answer-view .question-wrapper {
  width: 100%;
  height: 220px;
  position: relative;
}
.view-answer-view .question-wrapper .question-display {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-sizing: border-box;
  border: 1px solid #F2F2F2;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.view-answer-view .question-wrapper .question-display::-webkit-scrollbar {
  display: none;
}
.view-answer-view .question-wrapper .mask {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 86px;
  height: 38px;
  background: linear-gradient(270deg, #FFFFFF 51.98%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
  border-bottom-right-radius: 16px;
}
.view-answer-view .question-wrapper .volume-animation {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 47px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  z-index: 2;
}
.view-answer-view .question-wrapper .volume-animation .bar {
  width: 2px;
  background: #5C4DFF;
  border-radius: 2px;
  transform-origin: center;
}
.view-answer-view .question-wrapper .volume-animation .bar1 {
  animation: volumeBounce1 0.9s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar2 {
  animation: volumeBounce2 1s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar3 {
  animation: volumeBounce3 1.1s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar4 {
  animation: volumeBounce4 1.2s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar5 {
  animation: volumeBounce5 1.3s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar6 {
  animation: volumeBounce6 1.4s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar7 {
  animation: volumeBounce7 1.5s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar8 {
  animation: volumeBounce8 1.6s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar9 {
  animation: volumeBounce9 1.7s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar10 {
  animation: volumeBounce10 1.8s ease-in-out infinite;
}
.view-answer-view .question-wrapper .volume-animation .bar1 {
  height: 8px;
}
.view-answer-view .question-wrapper .volume-animation .bar2 {
  height: 12px;
}
.view-answer-view .question-wrapper .volume-animation .bar3 {
  height: 6px;
}
.view-answer-view .question-wrapper .volume-animation .bar4 {
  height: 14px;
}
.view-answer-view .question-wrapper .volume-animation .bar5 {
  height: 10px;
}
.view-answer-view .question-wrapper .volume-animation .bar6 {
  height: 16px;
}
.view-answer-view .question-wrapper .volume-animation .bar7 {
  height: 8px;
}
.view-answer-view .question-wrapper .volume-animation .bar8 {
  height: 12px;
}
.view-answer-view .question-wrapper .volume-animation .bar9 {
  height: 6px;
}
.view-answer-view .question-wrapper .volume-animation .bar10 {
  height: 10px;
}
.view-answer-view .question-wrapper .answer-content {
  padding-bottom: 40px;
}
.view-answer-view .question-wrapper .answer-content p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  word-break: break-word;
/*  color: #7F7E8C;*/
}
.view-answer-view .question-wrapper .answer-content p:last-child {
  margin-bottom: 0;
}
.view-answer-view .question-wrapper .answer-content p:first-child {
  /*color: #1C1B26;*/
}
.view-answer-view .question-wrapper .answer-content p b {
  color: #1C1B26;
  font-weight: 900;
}

.view-quiz-view {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}
.view-quiz-view .ai-avatar-section-simple {
  margin: 0 auto;
  width: 240px;
  height: 180px;
  position: relative;
}
.view-quiz-view .ai-avatar-section-simple .avatar-wrapper {
  position: relative;
  width: 146px;
  height: 146px;
  margin: 24px auto 0;
}
.view-quiz-view .ai-avatar-section-simple .avatar-wrapper .wave-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotateWave linear infinite;
  z-index: 1;
}
.view-quiz-view .ai-avatar-section-simple .avatar-wrapper .wave-bg-1 {
  width: 170px;
  height: 172px;
  background-image: url(../../images/aiqa/animation-1.png);
  animation-duration: 35s;
}
.view-quiz-view .ai-avatar-section-simple .avatar-wrapper .wave-bg-2 {
  width: 164px;
  height: 171px;
  background-image: url(../../images/aiqa/animation-2.png);
  animation-duration: 15s;
  animation-direction: reverse;
}
.view-quiz-view .ai-avatar-section-simple .avatar-wrapper .wave-bg-3 {
  width: 170px;
  height: 170px;
  background-image: url(../../images/aiqa/animation-3.png);
  animation-duration: 20s;
}
.view-quiz-view .ai-avatar-section-simple .avatar-wrapper .wave-bg-4 {
  width: 240px;
  height: 239px;
  background-image: url(../../images/aiqa/animation-4.png);
  animation: breatheFade 6s ease-in-out infinite;
  z-index: 1.5;
}
.view-quiz-view .ai-avatar-section-simple .avatar-wrapper .ai-avatar {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #EFEDFF;
  z-index: 2;
}
.view-quiz-view .ai-avatar-section-simple .tips {
  position: absolute;
  bottom: 4px;
  right: -232px;
  z-index: 3;
  width: 298px;
  height: 64px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 0 8px 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #5C4DFF;
  line-height: 1.6;
  text-align: left;
  box-sizing: border-box;
}
.view-quiz-view .quiz-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.view-quiz-view .quiz-form-wrapper .form-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.view-quiz-view .quiz-form-wrapper .form-row .form-label-wrapper {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.view-quiz-view .quiz-form-wrapper .form-row .form-label {
  font-size: 18px;
  font-weight: 900;
  color: #1C1B26;
  line-height: 1.6;
  flex-shrink: 0;
}
.view-quiz-view .quiz-form-wrapper .form-row .form-textarea-wrapper {
  flex: 1;
}
.view-quiz-view .quiz-form-wrapper .form-row .form-textarea {
  width: 100%;
  height: 52px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #F2F2F2;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #1C1B26;
  line-height: 26px;
  box-sizing: border-box;
  outline: none;
  resize: none;
  overflow: hidden;
  transition: border-color 0.3s ease, height 0.2s ease;
}
.view-quiz-view .quiz-form-wrapper .form-row .form-textarea::placeholder {
  color: #BFBFBF;
}
.view-quiz-view .quiz-form-wrapper .form-row .form-textarea:focus {
  border-width: 2px;
  border-color: #5C4DFF;
}
.view-quiz-view .quiz-form-wrapper .form-row .form-textarea::-webkit-scrollbar {
  display: none;
}

.dialog-footer {
  padding: 20px 40px 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.dialog-footer .btn-action {
  max-width: 190px;
  min-width: 160px;
  height: 54px;
  padding: 0 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  outline: none;
  background: #fff;
  color: #1C1B26;
}
.dialog-footer .btn-action img {
  width: 20px;
  height: 20px;
}
.dialog-footer .btn-action.btn-reanswer {
  background: #fff;
  color: #5C4DFF;
}
.dialog-footer .btn-action.btn-reanswer:hover {
  background: #F5F7FA;
}
.dialog-footer .btn-action.btn-confirm {
  background: #5C4DFF;
  color: #fff;
}
.dialog-footer .btn-action.btn-confirm.disabled {
  background: #DDDCE5;
  cursor: not-allowed;
}
.dialog-footer .btn-action.btn-continue {
  background: #fff;
  color: #5C4DFF;
}
.dialog-footer .history-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  color: #5C4DFF;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.dialog-footer .history-link img {
  width: 18px;
  height: 18px;
}
.dialog-footer .history-link:hover {
  opacity: 0.8;
}
.dialog-footer .btn-group {
  display: flex;
  gap: 30px;
}
.dialog-footer .btn-group .btn-action {
  max-width: 88px;
  min-width: 88px;
  height: 40px;
  padding: 0 10px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  outline: none;
}
.dialog-footer .btn-group .btn-action img {
  width: 20px;
  height: 20px;
}
.dialog-footer .btn-group .btn-action.btn-reanswer {
  background: #fff;
  color: #5C4DFF;
}
.dialog-footer .btn-group .btn-action.btn-reanswer:hover {
  background: #F5F7FA;
}
.dialog-footer .btn-group .btn-action.btn-cancel {
  background: #fff;
  color: #5C4DFF;
}
.dialog-footer .btn-group .btn-action.btn-confirm {
  background: #5C4DFF;
  color: #fff;
}
.dialog-footer .btn-group .btn-action.btn-confirm.disabled {
  background: #DDDCE5;
  cursor: not-allowed;
}
.dialog-footer .btn-group .btn-action.btn-continue {
  background: #fff;
  color: #5C4DFF;
}
.dialog-footer .btn-group .btn-action.btn-continue:hover {
  background: #F5F7FA;
}

.history-view {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}
.history-view .history-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 16px;
}
.history-view .history-header .back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.history-view .history-header .back-button img {
  width: 14px;
  height: 14px;
}
.history-view .history-header .back-button span {
  font-size: 12px;
  color: #6B89B3;
}
.history-view .history-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  border-left: 1px solid #F2F2F2;
  font-size: 12px;
  line-height: 1.4;
}
.history-view .history-header .breadcrumb .breadcrumb-item {
  color: #8A8B99;
}
.history-view .history-list-wrapper {
  width: 100%;
  height: 100%;
}
.history-view .history-list-wrapper .history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 20px;
}
.history-view .history-list-wrapper .history-list .nodata {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8B99;
  font-size: 14px;
}
.history-view .history-list-wrapper .history-list .history-item {
  display: flex;
  position: relative;
}
.history-view .history-list-wrapper .history-list .history-item .timeline {
  position: relative;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}
.history-view .history-list-wrapper .history-list .history-item .timeline .timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 5px solid #D8D1FF;
  background: #5C4DFF;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.history-view .history-list-wrapper .history-list .history-item .timeline .timeline-line {
  width: 0;
  flex: 1;
  border-left: 1px dashed #7F7E8C;
  margin-top: 10px;
}
.history-view .history-list-wrapper .history-list .history-item .history-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}
.history-view .history-list-wrapper .history-list .history-item .history-time {
  font-size: 16px;
  font-weight: 700;
  color: #1C1B26;
  margin-bottom: 10px;
}
.history-view .history-list-wrapper .history-list .history-item .history-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
}
.history-view .history-list-wrapper .history-list .history-item .history-content .history-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.history-view .history-list-wrapper .history-list .history-item .history-content .history-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history-view .history-list-wrapper .history-list .history-item .history-content > div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.history-view .history-list-wrapper .history-list .history-item .history-content > div:nth-child(2) .history-name {
  font-size: 16px;
  color: #7F7E8C;
}
.history-view .history-list-wrapper .history-list .history-item .history-content > div:nth-child(2) .history-answer {
  font-size: 16px;
  color: #1C1B26;
  line-height: 1.6;
}
.history-view .history-list-wrapper .history-list .history-item .history-content .history-score {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 6px;
  padding: 4px 9px;
  transition: all 0.3s ease;
}
.history-view .history-list-wrapper .history-list .history-item .history-content .history-score span {
  margin-right: 2px;
}
.history-view .history-list-wrapper .history-list .history-item .history-content .history-score.positive {
  background: #F0FDF8;
  color: #00C473;
}
.history-view .history-list-wrapper .history-list .history-item .history-content .history-score.negative {
  background: #FFF2F2;
  color: #F33131;
}
.history-view .history-list-wrapper .history-list .history-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.history-view .history-list-wrapper .history-list .history-empty .empty-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}
.history-view .history-list-wrapper .history-list .history-empty .empty-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #7F7E8C;
}

.score-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/*  background-color: rgba(16, 26, 41, 0.76);*/
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.score-dialog {
  width: 600px;
  height: 344px;
  background: url(../../images/aiqa/score-bg.png) no-repeat center center;
  background-size: 100% 100%;
  background-color: #F5F5FF;
  box-shadow: 0px 2px 12px 0px rgba(0, 37, 89, 0.2);
  border-radius: 16px;
  animation: slideUp 0.3s ease;
  position: relative;
}
.score-dialog .score-header {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  overflow: hidden;
  position: relative;
}
.score-dialog .score-header .score-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #1C1B26;
}
.score-dialog .score-header .score-close {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.score-dialog .score-header .score-close img {
  width: 100%;
  height: 100%;
  display: block;
}
.score-dialog .score-content {
  padding: 20px 40px 30px;
  box-sizing: border-box;
}
.score-dialog .score-content .person-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 50px;
}
.score-dialog .score-content .person-info .person-avatar-name {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #131B26;
}
.score-dialog .score-content .person-info .person-avatar-name img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 14px;
}
.score-dialog .score-content .person-info .score-display {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #8A8B99;
}
.score-dialog .score-content .person-info .score-display span {
  font-size: 24px;
  font-weight: 700;
  font-family: "D-DIN", sans-serif;
  color: #131B26;
  margin-left: 6px;
}
.score-dialog .score-content .person-info .score-display.score-positive span {
  color: #3A8BFF;
}
.score-dialog .score-content .person-info .score-display.score-negative span {
  color: #F33131;
}
.score-dialog .score-content .score-options {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  margin-top: 30px;
}
.score-dialog .score-content .score-options .score-option {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0 11px 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.score-dialog .score-content .score-options .score-option:nth-child(10n) {
  margin-right: 0;
}
.score-dialog .score-content .score-options .score-option.positive {
  color: #3A8BFF;
  background: #EAF0FF;
}
.score-dialog .score-content .score-options .score-option.positive.active {
  background: #3A8BFF;
  color: #fff;
}
.score-dialog .score-content .score-options .score-option.negative {
  color: #F33131;
  background: #FFF6F6;
}
.score-dialog .score-content .score-options .score-option.negative.active {
  background: #F33131;
  color: #fff;
}
.score-dialog .score-content .clear-score-wrapper {
  position: absolute;
  left: 40px;
  bottom: 30px;
}
.score-dialog .score-content .clear-score-wrapper .clear-score-btn {
  display: inline-block;
  color: #6B89B3;
  font-size: 14px;
  text-decoration: none;
  padding-left: 22px;
  background: url(../../images/aiqa/icon-refresh.png) no-repeat left center;
  background-size: 16px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.score-dialog .score-content .clear-score-wrapper .clear-score-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.score-dialog .score-content .clear-score-wrapper .clear-score-btn:not(.disabled):hover {
  color: #4A90E2;
}



@keyframes rotateWave {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes breatheFade {
  0%,
    100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotateLoading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes volumeBounce1 {
  0%,
        100% {
    height: 8px;
  }
  50% {
    height: 4px;
  }
}
@keyframes volumeBounce2 {
  0%,
        100% {
    height: 12px;
  }
  50% {
    height: 16px;
  }
}
@keyframes volumeBounce3 {
  0%,
        100% {
    height: 6px;
  }
  50% {
    height: 10px;
  }
}
@keyframes volumeBounce4 {
  0%,
        100% {
    height: 14px;
  }
  50% {
    height: 8px;
  }
}
@keyframes volumeBounce5 {
  0%,
        100% {
    height: 10px;
  }
  50% {
    height: 16px;
  }
}
@keyframes volumeBounce6 {
  0%,
        100% {
    height: 16px;
  }
  50% {
    height: 6px;
  }
}
@keyframes volumeBounce7 {
  0%,
        100% {
    height: 8px;
  }
  50% {
    height: 14px;
  }
}
@keyframes volumeBounce8 {
  0%,
        100% {
    height: 12px;
  }
  50% {
    height: 4px;
  }
}
@keyframes volumeBounce9 {
  0%,
        100% {
    height: 6px;
  }
  50% {
    height: 12px;
  }
}
@keyframes volumeBounce10 {
  0%,
        100% {
    height: 10px;
  }
  50% {
    height: 16px;
  }
}
@media screen and (max-width: 900px) {
  .ai-quiz-dialog {
    width: 90%;
    max-width: 840px;
    height: auto;
    max-height: 90vh;
  }

  .score-dialog {
    width: 90%;
    max-width: 600px;
  }
}

.evaluation-content2 {
  color: #1C1B26;
  font-size: 18px;
}

.evaluation-name {
  color: #1C1B26;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

.evaluation-name .blue {
  color: #3A8BFF;
}
