      /* 音频播放器进度条样式 */
      .audio-progress-slider {
        -webkit-appearance: none;
        appearance: none;
        height: 6px;
        background: #e5e7eb;
        outline: none;
        border-radius: 3px;
        cursor: pointer;
      }
      .audio-progress-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        background: #00473e;
        cursor: pointer;
        border-radius: 50%;
        transition: background 0.2s;
      }
      .audio-progress-slider::-webkit-slider-thumb:hover {
        background: #faae2b;
      }
      .audio-progress-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        background: #00473e;
        cursor: pointer;
        border-radius: 50%;
        border: none;
        transition: background 0.2s;
      }
      .audio-progress-slider::-moz-range-thumb:hover {
        background: #faae2b;
      }

      /* 自定义消息提示样式 */
      .toast-container {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        gap: 10px;
        pointer-events: none;
      }

      .toast-message {
        background: #00473e;
        color: #f2f7f5;
        padding: 12px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        min-width: 300px;
        max-width: 500px;
        animation: slideDown 0.3s ease-out;
        pointer-events: auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .toast-message.success {
        background: #00473e;
      }

      .toast-message.error {
        background: #fa5246;
      }

      .toast-message.warning {
        background: #faae2b;
      }

      .toast-message.info {
        background: #475d5b;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .toast-close {
        background: rgba(242, 247, 245, 0.2);
        border: none;
        color: #f2f7f5;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 0;
        font-size: 14px;
        line-height: 1;
        transition: background 0.2s;
      }

      .toast-close:hover {
        background: rgba(250, 174, 43, 0.3);
      }

      .toast-content {
        flex: 1;
        word-wrap: break-word;
      }

      /* 题目列表项样式 */
      .question-item {
        transition: all 0.2s;
      }

      .question-item:hover {
        background-color: rgba(250, 174, 43, 0.1);
      }

      .question-item.active {
        background-color: rgba(0, 71, 62, 0.1);
        border-left: 4px solid #00473e;
      }

      /* 听写输入框样式 */
      .dictation-input {
        min-height: 150px;
        font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
        font-size: 16px;
        line-height: 1.8;
      }

      /* 验证结果样式 */
      .validation-result {
        padding: 12px;
        border-radius: 8px;
        margin-top: 12px;
      }

      .validation-result.correct {
        background-color: #d1fae5;
        color: #065f46;
        border: 1px solid #10b981;
      }

      .validation-result.incorrect {
        background-color: #fee2e2;
        color: #991b1b;
        border: 1px solid #ef4444;
      }

      /* 手风琴分组样式 */
      .group-header {
        user-select: none;
        transition: background-color 0.2s;
      }

      .group-header:hover {
        background-color: #f3f4f6 !important;
      }

      /* 手风琴内容区域动画 */
      .question-item {
        transition: all 0.2s;
      }

      /* 题目列表滚动条样式 */
      .question-list-container {
        scrollbar-width: thin;
        scrollbar-color: #cbd5e0 #f7fafc;
      }

      .question-list-container::-webkit-scrollbar {
        width: 8px;
      }

      .question-list-container::-webkit-scrollbar-track {
        background: #f7fafc;
        border-radius: 4px;
      }

      .question-list-container::-webkit-scrollbar-thumb {
        background: #cbd5e0;
        border-radius: 4px;
      }

      .question-list-container::-webkit-scrollbar-thumb:hover {
        background: #a0aec0;
      }

