
.chat-container[data-v-005a2f88] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f7f8fa;
  position: relative;
}
.chat-content[data-v-005a2f88] {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  padding-bottom: calc(100px + env(safe-area-inset-bottom));
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: padding-bottom 0.3s ease;
}

/* 温馨提示样式 */
.chat-tips[data-v-005a2f88] {
  background: wheat;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #e1f5fe;
  box-shadow: 0 2px 8px rgba(25, 137, 250, 0.1);
  animation: slideInDown-005a2f88 0.5s ease-out;
}
@keyframes slideInDown-005a2f88 {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.tips-header[data-v-005a2f88] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
}
.tips-title[data-v-005a2f88] {
  font-size: 16px;
  font-weight: 600;
  color: #1976d2;
  flex: 1;
}
.tips-content[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tips-item[data-v-005a2f88] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #424242;
}
.tips-dot[data-v-005a2f88] {
  color: #1976d2;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 移动端优化 */
@media (max-width: 768px) {
.chat-tips[data-v-005a2f88] {
    padding: 12px;
    margin-bottom: 16px;
}
.tips-title[data-v-005a2f88] {
    font-size: 15px;
}
.tips-item[data-v-005a2f88] {
    font-size: 13px;
}
}
.chat-content.with-function-panel[data-v-005a2f88] {
  padding-bottom: calc(160px + env(safe-area-inset-bottom));
}
.message-wrapper[data-v-005a2f88] {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
}
.message-wrapper[data-v-005a2f88]:last-child {
  margin-bottom: 24px;
}
.message-wrapper.self[data-v-005a2f88] {
  flex-direction: row-reverse;
}
.message-wrapper.other[data-v-005a2f88] {
  flex-direction: row;
}
.message-wrapper .van-image[data-v-005a2f88] {
  margin: 0 8px;
  flex-shrink: 0;
}
.message-bubble[data-v-005a2f88] {
  max-width: 70%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.message-wrapper.self .message-bubble[data-v-005a2f88] {
  flex-direction: row;
  justify-content: flex-end;
}
.message-wrapper.other .message-bubble[data-v-005a2f88] {
  flex-direction: column;
  align-items: flex-start;
}
.message-content[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
}
.message-wrapper.self .message-content[data-v-005a2f88] {
  align-items: flex-end;
}
.message-wrapper.other .message-content[data-v-005a2f88] {
  align-items: flex-start;
}
.message-text[data-v-005a2f88] {
  background: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.message-wrapper.self .message-text[data-v-005a2f88] {
  background: #007aff;
  color: #fff;
}
.message-wrapper.other .message-text[data-v-005a2f88] {
  background: #fff;
  color: #333;
}
.system-message[data-v-005a2f88] {
  background: #f0f0f0 !important;
  color: #666 !important;
  font-style: italic;
  font-size: 12px;
  text-align: center;
}
.message-time[data-v-005a2f88] {
  margin-top: 4px;
  font-size: 12px;
  color: #969799;
}
.message-meta[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 4px;
}
.message-wrapper.other .message-meta[data-v-005a2f88] {
  align-items: flex-start;
}
.read-status[data-v-005a2f88] {
  margin-top: 2px;
  font-size: 11px;
  min-width: 30px;
  text-align: center;
}
.read-indicator[data-v-005a2f88] {
  color: #070707;
}
.unread-indicator[data-v-005a2f88] {
  color: #969799;
}
.loading-state[data-v-005a2f88] {
  text-align: center;
  padding: 20px 0;
  color: #969799;
  font-size: 14px;
}
.loading-state .van-loading[data-v-005a2f88] {
  margin-right: 8px;
}
.no-more[data-v-005a2f88] {
  text-align: center;
  padding: 20px 0;
  color: #969799;
  font-size: 14px;
}
.chat-input[data-v-005a2f88] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7f8fa;
  border-top: 1px solid #e5e5e5;
  padding: 8px 12px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.chat-input.input-with-panel[data-v-005a2f88] {
  bottom: 280px;
}
.input-container[data-v-005a2f88] {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.input-mode-btn[data-v-005a2f88] {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.input-mode-btn[data-v-005a2f88]:active {
  background: #f0f0f0;
}
.voice-input-wrapper[data-v-005a2f88] {
  flex: 1;
}
.voice-record-btn[data-v-005a2f88] {
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  color: #333;
}
.voice-record-btn[data-v-005a2f88]:active,
.voice-record-btn.recording[data-v-005a2f88] {
  background: #07c160;
  border-color: #07c160;
  color: #fff;
  transform: scale(0.98);
}
.voice-record-btn.recording-cancel[data-v-005a2f88] {
  background: #ff4444 !important;
  border-color: #ff4444 !important;
  color: #fff !important;
}
.voice-record-btn.long-press-detecting[data-v-005a2f88] {
  background: #f0f9ff;
  border-color: #1989fa;
  color: #1989fa;
  transform: scale(1.02);
  animation: longPressDetecting-005a2f88 0.5s ease-in-out;
}
@keyframes longPressDetecting-005a2f88 {
0% {
    background: #fff;
    border-color: #e5e5e5;
    color: #333;
}
100% {
    background: #f0f9ff;
    border-color: #1989fa;
    color: #1989fa;
}
}
.voice-text[data-v-005a2f88] {
  font-size: 14px;
  font-weight: 500;
}
.more-btn[data-v-005a2f88] {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.more-btn[data-v-005a2f88]:active {
  background: #f0f0f0;
}
.more-btn.active[data-v-005a2f88] {
  background: #007aff;
  color: #fff;
  border-color: #007aff;
}
.more-btn.active[data-v-005a2f88] .van-icon {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.input-wrapper[data-v-005a2f88] {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 36px;
  max-height: 120px;
}
.message-input[data-v-005a2f88] {
  flex: 1;
  width: 100%;
}
.message-input[data-v-005a2f88] .van-field__control {
  font-size: 14px;
  line-height: 1.4;
  resize: none;
  background: transparent;
  border: none;
  box-sizing: border-box;
  min-height: 6px;
  max-height: 120px;
}
.message-input[data-v-005a2f88] .van-field__control::placeholder {
  color: #c0c0c0;
}
.message-input[data-v-005a2f88] .van-field__body {
  padding: 0 !important;
  background: transparent;
}
.send-btn[data-v-005a2f88] {
  height: 36px;
  min-width: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07c160;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.send-btn[data-v-005a2f88]:active {
  background: #06ad56;
}
.function-panel[data-v-005a2f88] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 0;
  padding-bottom: calc(env(safe-area-inset-bottom));
  z-index: 99;
  height: 280px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  animation: slideUp-005a2f88 0.3s ease-out;
  overflow-y: auto;
}
@keyframes slideUp-005a2f88 {
from {
    transform: translateY(100%);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}
.function-grid[data-v-005a2f88] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px;
}
.function-item[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.function-item[data-v-005a2f88]:active {
  background-color: #f0f0f0;
}
.function-icon[data-v-005a2f88] {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 8px;
  border: 1px solid #e5e5e5;
}
.function-text[data-v-005a2f88] {
  font-size: 12px;
  color: #646566;
  text-align: center;
}

/* 媒体消息样式 */
.image-message .image-wrapper[data-v-005a2f88] {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.video-message .video-wrapper[data-v-005a2f88] {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.video-thumbnail[data-v-005a2f88] {
  width: 200px;
  height: 150px;
  object-fit: cover;
}
.video-play-icon[data-v-005a2f88] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}
.video-duration[data-v-005a2f88] {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* 礼物消息样式 */
.gift-message .gift-wrapper[data-v-005a2f88] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gift-message .gift-image[data-v-005a2f88] {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.gift-message .gift-info[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gift-message .gift-title[data-v-005a2f88] {
  font-size: 13px;
  font-weight: 600;
}
.gift-message .gift-desc[data-v-005a2f88] {
  font-size: 12px;
  color: #646566;
}
.audio-message .audio-wrapper[data-v-005a2f88] {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  min-width: 120px;
}
.audio-icon[data-v-005a2f88] {
  margin-right: 8px;
  font-size: 20px;
}
.audio-info[data-v-005a2f88] {
  flex: 1;
}
.audio-duration[data-v-005a2f88], .audio-size[data-v-005a2f88] {
  font-size: 12px;
  color: #646566;
}
.file-message .file-wrapper[data-v-005a2f88] {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  min-width: 150px;
}
.file-icon[data-v-005a2f88] {
  margin-right: 12px;
  font-size: 24px;
}
.file-info[data-v-005a2f88] {
  flex: 1;
}
.file-name[data-v-005a2f88] {
  font-size: 14px;
  color: #323233;
  margin-bottom: 4px;
}
.file-size[data-v-005a2f88] {
  font-size: 12px;
  color: #646566;
}

/* 视频预览弹窗样式 */
.video-modal[data-v-005a2f88] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
}
.video-container[data-v-005a2f88] {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-player[data-v-005a2f88] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.close-btn[data-v-005a2f88] {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.close-btn .van-icon[data-v-005a2f88] {
  color: #fff;
  font-size: 24px;
}
.pause-icon[data-v-005a2f88] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  pointer-events: none;
}
.pause-icon .van-icon[data-v-005a2f88] {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* 礼物选择弹窗样式 */
.gift-dialog[data-v-005a2f88] {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 自定义van-popup背景颜色 */
/* :deep(.van-popup) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
} */
.gift-dialog-header[data-v-005a2f88] {
  text-align: center;
  margin-bottom: 20px;
}
.gift-dialog-header h3[data-v-005a2f88] {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #fff;
}
.gift-dialog-header p[data-v-005a2f88] {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.gift-list[data-v-005a2f88] {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  position: relative;
  /* 隐藏滚动条 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* 隐藏Webkit浏览器的滚动条 */
.gift-list[data-v-005a2f88]::-webkit-scrollbar {
  display: none;
}
.gift-loading[data-v-005a2f88] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.gift-item[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 6px;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  height: 100px;
}
.gift-item[data-v-005a2f88]:hover {
  background: transparent;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.gift-item.selected[data-v-005a2f88] {
  background: transparent;
  border: 1px solid #2196f3;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
.gift-image[data-v-005a2f88] {
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.gift-image img[data-v-005a2f88] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gift-info[data-v-005a2f88] {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 0;
}
.gift-name[data-v-005a2f88] {
  font-size: 10px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  line-height: 1.2;
}
.gift-price[data-v-005a2f88] {
  font-size: 10px;
  color: gold;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}
.gift-loading-more[data-v-005a2f88] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  color: #999;
  font-size: 14px;
}
.gift-dialog-footer[data-v-005a2f88] {
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}
[data-v-005a2f88] .van-button--disabled {
  background: #f5f5f5 !important;
  color: #c8c9cc !important;
}
.user-avatar[data-v-005a2f88] {
  cursor: pointer;
  transition: all 0.2s ease;
}
.user-avatar[data-v-005a2f88]:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.user-avatar[data-v-005a2f88]:active {
  transform: scale(0.95);
}

/* 消息购买弹窗样式 */
.message-buy-dialog[data-v-005a2f88] {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.message-buy-dialog-header[data-v-005a2f88] {
  text-align: center;
  margin-bottom: 20px;
}
.message-buy-dialog-header h3[data-v-005a2f88] {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #333;
}
.message-buy-dialog-header p[data-v-005a2f88] {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.message-package-list[data-v-005a2f88] {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 6px;
}
.message-package-item[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  background: #f8f9fa;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  min-height: 100px;
}
.message-package-item[data-v-005a2f88]:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.message-package-item.selected[data-v-005a2f88] {
  background: #e3f2fd;
  border-color: #2196f3;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}
.package-info[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.package-count[data-v-005a2f88] {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}
.package-price[data-v-005a2f88] {
  font-size: 14px;
  color: #ff6b35;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.message-buy-dialog-footer[data-v-005a2f88] {
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}

/* 语音录制弹窗样式 */
.voice-record-overlay[data-v-005a2f88] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}
.voice-record-dialog[data-v-005a2f88] {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 24px;
  min-width: 200px;
  text-align: center;
}
.voice-record-content[data-v-005a2f88] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.voice-record-icon[data-v-005a2f88] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.voice-wave-container[data-v-005a2f88] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.voice-wave[data-v-005a2f88] {
  width: 4px;
  height: 20px;
  background: #fff;
  border-radius: 2px;
  animation: voice-wave-idle-005a2f88 1.5s ease-in-out infinite;
}
.voice-wave[data-v-005a2f88]:nth-child(2) {
  animation-delay: 0.2s;
}
.voice-wave[data-v-005a2f88]:nth-child(3) {
  animation-delay: 0.4s;
}
.voice-wave.active[data-v-005a2f88] {
  animation: voice-wave-active-005a2f88 0.6s ease-in-out infinite;
}
@keyframes voice-wave-idle-005a2f88 {
0%, 100% {
    transform: scaleY(0.5);
    opacity: 0.6;
}
50% {
    transform: scaleY(1);
    opacity: 1;
}
}
@keyframes voice-wave-active-005a2f88 {
0%, 100% {
    transform: scaleY(0.8);
}
50% {
    transform: scaleY(1.5);
}
}
.voice-record-time[data-v-005a2f88] {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  min-width: 60px;
}
.voice-record-tip[data-v-005a2f88] {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}
.voice-volume-indicator[data-v-005a2f88] {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 30px;
}
.volume-bar[data-v-005a2f88] {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  transition: all 0.1s ease;
}
.volume-bar.active[data-v-005a2f88] {
  background: #07c160;
  height: 20px;
}

/* 语音消息样式 */
.voice-message[data-v-005a2f88] {
  min-width: 80px;
  max-width: 200px;
}
.voice-wrapper[data-v-005a2f88] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  user-select: none;
}
.voice-play-icon[data-v-005a2f88] {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.message-wrapper.self .voice-play-icon[data-v-005a2f88] {
  background: rgba(255, 255, 255, 0.3);
}
.message-wrapper.other .voice-play-icon[data-v-005a2f88] {
  background: rgba(0, 0, 0, 0.1);
}
.voice-duration[data-v-005a2f88] {
  font-size: 12px;
  color: inherit;
  min-width: 20px;
}
.voice-wave-bars[data-v-005a2f88] {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.wave-bar[data-v-005a2f88] {
  width: 2px;
  height: 12px;
  background: currentColor;
  border-radius: 1px;
  opacity: 0.6;
  animation: wave-playing-005a2f88 1s ease-in-out infinite;
}
.wave-bar[data-v-005a2f88]:nth-child(2) {
  animation-delay: 0.1s;
}
.wave-bar[data-v-005a2f88]:nth-child(3) {
  animation-delay: 0.2s;
}
.wave-bar[data-v-005a2f88]:nth-child(4) {
  animation-delay: 0.3s;
}
.wave-bar[data-v-005a2f88]:nth-child(5) {
  animation-delay: 0.4s;
}
.wave-bar.active[data-v-005a2f88] {
  animation: wave-playing-active-005a2f88 0.8s ease-in-out infinite;
}
@keyframes wave-playing-005a2f88 {
0%, 100% {
    transform: scaleY(0.5);
}
50% {
    transform: scaleY(1);
}
}
@keyframes wave-playing-active-005a2f88 {
0%, 100% {
    transform: scaleY(0.3);
    opacity: 0.6;
}
25% {
    transform: scaleY(1.2);
    opacity: 1;
}
75% {
    transform: scaleY(0.8);
    opacity: 0.8;
}
}

/* 移动端优化 */
@media (max-width: 768px) {
.message-package-list[data-v-005a2f88] {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.message-package-item[data-v-005a2f88] {
    padding: 12px 8px;
    min-height: 80px;
}
.package-count[data-v-005a2f88] {
    font-size: 14px;
}
.package-price[data-v-005a2f88] {
    font-size: 12px;
}
.voice-record-dialog[data-v-005a2f88] {
    margin: 20px;
    min-width: 160px;
}
.voice-message[data-v-005a2f88] {
    min-width: 60px;
    max-width: 160px;
}
}
