#kefu-widget-root {
  --kefu-agent-bg: #f1f1f3;
  --kefu-agent-text: #1d1d1f;
  --kefu-user-bg: #154179;
  --kefu-user-text: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index: 2147483000;
  position: fixed;
  right: 24px;
  bottom: 24px;
}

#kefu-widget-root * {
  box-sizing: border-box;
}

.kefu-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #1a5fbf, #154179);
  color: #fff;
  box-shadow: 0 8px 28px rgba(21, 65, 121, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kefu-launcher:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(21, 65, 121, 0.45);
}

.kefu-launcher svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.kefu-panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(15, 35, 70, 0.18);
  overflow: hidden;
  flex-direction: column;
}

.kefu-panel.open {
  display: flex;
}

.kefu-panel-header.kefu-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  flex-shrink: 0;
  min-height: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a5fbf, #154179);
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.kefu-panel-header.kefu-toolbar.has-bg-image.has-bg-image-center {
  background-size: auto var(--kefu-toolbar-height, 60px);
}

.kefu-panel-header.kefu-toolbar.has-bg-image.has-bg-image-fill {
  background-size: 100% var(--kefu-toolbar-height, 60px);
}

.kefu-toolbar-slots {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.kefu-toolbar-slot {
  flex: 1 1 33.33%;
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 33.33%;
  padding: 0 6px;
  box-sizing: border-box;
}

.kefu-toolbar-left {
  justify-content: flex-start;
}

.kefu-toolbar-center {
  justify-content: center;
}

.kefu-toolbar-right {
  justify-content: flex-end;
}

.kefu-toolbar-title-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
}

.kefu-toolbar-text {
  display: block;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.kefu-toolbar-typing {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.88;
  white-space: nowrap;
  flex-shrink: 0;
}

.kefu-toolbar-typing.is-hidden {
  display: none;
}

.kefu-toolbar-img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.kefu-banner {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.5;
  background: #fff3cd;
  color: #181716;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.kefu-banner.is-hidden {
  display: none !important;
}

.kefu-banner-marquee {
  width: 100%;
  overflow: hidden;
  line-height: 1.5;
}

.kefu-banner-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: kefu-banner-marquee 14s linear infinite;
}

@keyframes kefu-banner-marquee {
  to {
    transform: translateX(-100%);
  }
}

.kefu-prechat-wrap {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px 12px 16px;
  background: #f7f9fc;
}

.kefu-prechat-wrap.is-hidden {
  display: none !important;
}

.kefu-prechat-ad {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #344054;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.kefu-prechat-ad img,
.kefu-prechat-ad video,
.kefu-prechat-ad iframe,
.kefu-prechat-ad embed,
.kefu-prechat-ad object {
  max-width: 100%;
  height: auto;
}

.kefu-prechat-ad table {
  max-width: 100%;
  width: 100% !important;
  table-layout: fixed;
  border-collapse: collapse;
}

.kefu-prechat-ad table td,
.kefu-prechat-ad table th {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.kefu-prechat-ad pre,
.kefu-prechat-ad code {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.kefu-prechat-ad.is-hidden {
  display: none !important;
}

.kefu-prechat-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kefu-prechat-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kefu-prechat-label {
  font-size: 13px;
  font-weight: 600;
  color: #344054;
}

.kefu-prechat-req {
  color: #d92d20;
  margin-left: 2px;
}

.kefu-prechat-control {
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  outline: none;
  background: #fff;
  color: #101828;
}

.kefu-prechat-control:focus {
  border-color: #1a5fbf;
}

.kefu-prechat-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kefu-prechat-radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475467;
  cursor: pointer;
}

.kefu-prechat-radio-item input {
  margin: 0;
}

.kefu-prechat-actions {
  margin-top: 4px;
}

.kefu-prechat-submit {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--kefu-prechat-submit-bg, #154179);
  color: var(--kefu-prechat-submit-text, #fff);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.kefu-prechat-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.kefu-chat-body {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f7f9fc;
}

.kefu-chat-main {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.kefu-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 14px 12px;
  background: #f7f9fc;
  display: flex;
  flex-direction: column;
}

.kefu-msg {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
  gap: 8px;
}

.kefu-msg.right {
  justify-content: flex-end;
}

.kefu-msg-avatar {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #84b9ea 0%, #6da1d5 38%, #d7bf9d 72%, #b3946f 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.kefu-msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kefu-msg-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: calc(100% - 40px);
}

.kefu-msg-name {
  margin: 0 0 4px 2px;
  font-size: 12px;
  line-height: 1.2;
  color: #667085;
  font-weight: 500;
}

.kefu-bubble {
  max-width: 78%;
  padding: 9px 12px;
  border-radius: 12px;
  word-break: break-word;
  white-space: pre-wrap;
}

.kefu-msg.left .kefu-msg-body .kefu-bubble {
  max-width: 100%;
}

.kefu-msg.left .kefu-bubble {
  background: var(--kefu-agent-bg);
  color: var(--kefu-agent-text);
  border-bottom-left-radius: 4px;
}

.kefu-msg.right .kefu-bubble {
  background: var(--kefu-user-bg);
  color: var(--kefu-user-text);
  border-bottom-right-radius: 4px;
}

/* 富文本 / 机器人菜单内层元素继承气泡文字色，避免后台编辑器内联 color 覆盖主题 */
.kefu-msg.left .kefu-bubble :is(.kefu-robot-menu-title, .kefu-robot-menu-text),
.kefu-msg.left .kefu-bubble.kefu-rich-html :where(p, span, div, li, td, th, h1, h2, h3, h4, h5, h6, strong, em, b, i) {
  color: inherit;
}

.kefu-msg.right .kefu-bubble.kefu-rich-html :where(p, span, div, li, td, th, strong, em, b, i) {
  color: inherit;
}

.kefu-bubble img,
.kefu-bubble video,
.kefu-bubble iframe,
.kefu-bubble embed,
.kefu-bubble object,
.kefu-status img {
  max-width: 100%;
  height: auto;
}

.kefu-bubble table,
.kefu-status table,
.kefu-robot-bubble table {
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
}

.kefu-bubble table td,
.kefu-bubble table th,
.kefu-status table td,
.kefu-status table th,
.kefu-robot-bubble table td,
.kefu-robot-bubble table th {
  word-break: break-word;
}

/* 富文本消息：与客服端统一标签样式，避免 pre-wrap 放大 p 标签间距 */
.kefu-rich-html {
  white-space: normal;
  line-height: 1.52;
  text-wrap: pretty;
}

.kefu-rich-html > :first-child {
  margin-top: 0;
}

.kefu-rich-html > :last-child {
  margin-bottom: 0;
}

.kefu-rich-html p {
  margin: 0;
}

.kefu-rich-html ul,
.kefu-rich-html ol {
  margin: 0.35em 0 0;
  padding-left: 1.25em;
}

.kefu-rich-html li + li {
  margin-top: 0.2em;
}

.kefu-end-session {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  line-height: 0;
  box-shadow: none;
}

.kefu-end-session-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
}

.kefu-end-session:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.2);
}

.kefu-end-session:disabled,
.kefu-end-session.is-hidden {
  display: none;
}

.kefu-compose {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #e8eef4;
  background: #fff;
  flex-shrink: 0;
}

.kefu-compose.is-hidden {
  display: none !important;
}

.kefu-compose-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 4px 8px 4px 14px;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 35, 70, 0.06);
  box-sizing: border-box;
}

.kefu-compose-bar textarea {
  flex: 1;
  min-width: 0;
  width: auto;
  box-sizing: border-box;
  resize: none;
  border: none;
  background: transparent;
  padding: 8px 0;
  min-height: 28px;
  max-height: 88px;
  font: inherit;
  outline: none;
  line-height: 1.4;
  color: #344054;
}

.kefu-compose-bar textarea::placeholder {
  color: #98a2b3;
}

.kefu-compose-bar textarea:focus {
  border-color: transparent;
}

.kefu-compose-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.kefu-compose-tools-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

.kefu-compose-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
}

.kefu-tool-btn {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 0;
  color: #667085;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.kefu-tool-btn:hover {
  background: #edf5ff;
  color: #154179;
}

.kefu-tool-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.kefu-emoji-picker {
  position: absolute;
  right: 0;
  left: auto;
  bottom: calc(100% + 8px);
  z-index: 30;
  width: 280px;
  max-height: 220px;
  padding: 10px;
  border: 1px solid #d9e3f3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 35, 70, 0.14);
  overflow-y: auto;
}

.kefu-emoji-group + .kefu-emoji-group {
  margin-top: 8px;
}

.kefu-emoji-title {
  margin-bottom: 4px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 600;
}

.kefu-emoji-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
}

.kefu-emoji-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  user-select: none;
}

.kefu-emoji-item:hover {
  background: #edf5ff;
}

.kefu-attach {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 6px 8px;
  border: 1px solid #d9e3f3;
  border-radius: 8px;
  background: #f7f9fc;
  font-size: 12px;
  color: #667085;
}

.kefu-attach.is-uploading {
  border-color: #93c5fd;
  background: #eff6ff;
}

.kefu-attach-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kefu-attach-progress {
  height: 3px;
  margin-top: 6px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.kefu-attach-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.45);
  transition: width 0.12s ease;
}

.kefu-attach-preview {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

#kefu-attach-remove {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #d92d20;
  cursor: pointer;
  font-size: 12px;
  padding: 0;
}

.kefu-bubble.kefu-bubble-media {
  display: inline-block;
  width: fit-content;
  max-width: min(240px, 78%);
  padding: 4px;
  line-height: 0;
}

.kefu-msg.left .kefu-msg-body .kefu-bubble.kefu-bubble-media {
  max-width: min(240px, 100%);
}

.kefu-media-img,
.kefu-media-video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(240px, 100%);
  border-radius: 8px;
  margin: 0;
}

.kefu-media-img {
  cursor: zoom-in;
}

.kefu-media-file {
  display: inline-block;
  max-width: min(240px, 100%);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: inherit;
  text-decoration: underline;
  word-break: break-all;
}

.kefu-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
}

.kefu-image-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.kefu-image-viewer img {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 960px);
  max-height: 88vh;
  border-radius: 8px;
}

.kefu-image-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d2939;
  cursor: pointer;
  font-size: 14px;
}

.kefu-send {
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  color: #667085;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.kefu-send:hover:not(:disabled) {
  background: #edf5ff;
}

.kefu-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.kefu-status {
  text-align: center;
  font-size: 13px;
  color: #98a2b3;
  white-space: pre-wrap;
  /* padding: 24px 12px; */
}

.kefu-status .kefu-feedback-link {
  color: #154179;
  text-decoration: underline;
  cursor: pointer;
}

.kefu-status .kefu-feedback-link:hover {
  color: #0f63d2;
}

.kefu-restart-chat-wrap {
  text-align: center;
  padding: 8px 12px 16px;
}

.kefu-restart-chat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: #f2f4f7;
  color: #667085;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.kefu-restart-chat:hover {
  background: #e4e7ec;
}

.kefu-restart-chat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.kefu-status-loading::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  border: 3px solid #e4e7ec;
  border-top-color: #154179;
  border-radius: 50%;
  animation: kefu-spin 0.8s linear infinite;
}

.kefu-status-error {
  color: #d92d20;
}

.kefu-compose-bar textarea:disabled,
.kefu-send:disabled,
.kefu-end-session:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.kefu-feedback-modal {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 20;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.kefu-feedback-modal.is-open {
  display: flex;
}

.kefu-feedback-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 70, 0.45);
}

.kefu-feedback-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px 14px;
  box-shadow: 0 12px 36px rgba(15, 35, 70, 0.2);
}

.kefu-feedback-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #1d2939;
  text-align: center;
}

.kefu-feedback-message {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #475467;
  text-align: center;
}

.kefu-feedback-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.kefu-feedback-star {
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  color: #d0d5dd;
  cursor: pointer;
  padding: 2px 4px;
}

.kefu-feedback-star.is-active,
.kefu-feedback-star:hover {
  color: #f5a623;
}

.kefu-feedback-comment {
  width: 100%;
  border: 1px solid #d9e3f3;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  resize: vertical;
  min-height: 72px;
  outline: none;
  box-sizing: border-box;
}

.kefu-feedback-comment:focus {
  border-color: #1a5fbf;
}

.kefu-feedback-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.kefu-feedback-cancel,
.kefu-feedback-submit {
  flex: 1;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.kefu-feedback-cancel {
  background: #f2f4f7;
  color: #475467;
}

.kefu-feedback-submit {
  background: #154179;
  color: #fff;
  font-weight: 600;
}

.kefu-feedback-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@keyframes kefu-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  #kefu-widget-root:not(.kefu-mode-page) {
    right: 12px;
    bottom: 12px;
  }
  #kefu-widget-root:not(.kefu-mode-page) .kefu-panel {
    width: calc(100vw - 24px);
    height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
  }
  #kefu-widget-root:not(.kefu-mode-page) .kefu-panel.kefu-vv-adjust {
    transition: none;
  }
}

/* 全屏接入页（#kefu-embed-page 或 data-kefu-mode="page"） */
#kefu-embed-page {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 2147483000;
}

#kefu-embed-page.kefu-vv-adjust {
  right: auto;
  bottom: auto;
  width: 100%;
}

#kefu-embed-page #kefu-widget-root,
#kefu-widget-root.kefu-mode-page {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  right: auto;
  bottom: auto;
}

#kefu-embed-page .kefu-launcher,
#kefu-widget-root.kefu-mode-page .kefu-launcher {
  display: none !important;
}

#kefu-widget-root.kefu-mode-page .kefu-panel,
#kefu-embed-page .kefu-panel {
  display: flex !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: 100%;
  height: 100%;
  max-height: none;
  transform: translateX(-50%);
}

/* 机器人菜单流程 */
.kefu-robot-menu-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.kefu-robot-menu-text {
  font-size: 13px;
  color: inherit;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 8px;
}

.kefu-robot-menu-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.kefu-robot-menu-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  padding: 4px 0;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.kefu-robot-menu-btn:hover {
  opacity: 0.75;
}

.kefu-messages.kefu-robot-mode {
  background: inherit;
}

.kefu-messages.kefu-has-robot-history .kefu-robot-msg .kefu-robot-menu-btn.is-readonly {
  cursor: default;
  pointer-events: none;
  background: transparent;
  color: #64748b;
}

.kefu-robot-transfer-divider {
  margin: 12px 0 8px;
  color: #64748b;
  font-size: 12px;
}
