/* 只读模式下的音频容器样式 */
.w-e-audio-container-disabled {
  pointer-events: none !important;
}

/* 确保只读模式下音频控件可以操作 */
.w-e-audio-container-disabled audio {
  pointer-events: auto !important;
  width: 100% !important;
  min-width: 300px !important;
  resize: none !important;
}

/* 只读模式下移除选中状态的样式 */
.w-e-textarea-video-container[data-disabled="true"] {
  border: none !important;
  background-color: transparent !important;
  padding: 8px 0 !important;
  box-shadow: none !important;
  resize: none !important;
}

/* 确保音频控件在只读模式下可见且不可编辑大小 */
.w-e-textarea-video-container[data-disabled="true"] audio {
  opacity: 1 !important;
  display: block !important;
  width: 100% !important;
  min-width: 300px !important;
  resize: none !important;
}