.botui-message-content-image {
  border-radius: 0.6rem;
}

.text-ce {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  color: #ff6b9d;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(255, 107, 157, 0.2);
}
.text-ce i {
  font-style: normal;
  color: #ff8e9d;
  margin: 0 0.6rem;
  text-shadow: 0 2px 5px rgba(255, 142, 157, 0.3);
}
.central-600 {
  background: url("https://img.gejiba.com/images/2e34a88491d60fa809883cc7cd149759.jpg") no-repeat center;
  border-radius: 3rem;
  background-size: cover;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  position: relative;
}
.central-600::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 142, 157, 0.05));
  border-radius: 3rem;
  z-index: 1;
}
.central-600 .botui-app-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
}
.central-600 .botui-container {
  border-radius: 3rem;
  background: transparent;
}
.central-600 .botui-actions-buttons-button {
  border-radius: 12px;
  background: linear-gradient(45deg, #ff6b9d, #ff8e9d);
  font-family: 'Noto Serif SC', serif !important;
  font-weight: 400 !important;
  color: white;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(255, 107, 157, 0.3);
}
.central-600 .botui-actions-buttons-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 157, 0.4);
  background: linear-gradient(45deg, #ff8e9d, #ffb3c1);
}
.central-600 .botui-message-content {
  padding: 12px 18px;
  color: #666;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #ffb3c1;
}
.central-600 .botui-message-content.human {
  color: #fff;
  background: linear-gradient(45deg, #ff6b9d, #ff8e9d);
  border-left: 4px solid #ffd7e5;
  box-shadow: 0 3px 10px rgba(255, 107, 157, 0.2);
}
.central-600 .botui-container {
    padding: 2rem;
    box-sizing: border-box;
}

/* 聊天消息动画 */
.botui-message {
  opacity: 0;
  transform: translateY(10px);
  animation: messageAppear 0.5s ease forwards;
}

@keyframes messageAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 按钮点击效果 */
.botui-actions-buttons-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(255, 107, 157, 0.3);
}
