body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 兼容ios黑条 */
@supports (left: env(safe-area-inset-left)) {
  .ChatApp .Composer {
    margin-bottom: 22px;
  }
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  monospace;
}

/* 本Css文件主要用于控制当前页面主体框架的css样式 */
#root {
  font-size: 1rem;
  overflow: hidden;
  height: 100%;
  position: relative;
}

textarea,
input {
  border-radius: 6px;
  background-color: var(--gray-8);
  border: unset;
  outline-color: transparent;
}

/* 框架css */
.chat-index {
  height: 100vh;
  width: 100vw;
  display: flex;
  top: unset !important;
  bottom: 0 !important;
  background: white;
}

#watermark,
.chat-index {
  height: 100%;
  position: absolute;
  bottom: 0;
  flex: 1;
}

.ChatApp {
  width: 100%;
  height: 100%;
}

.ChatApp,
.MessageContainer,
.Navbar,
.Message .Bubble,
.QuickReplies,
.ChatFooter {
  background-repeat: no-repeat;
  background-size: cover;
}

/* NavBar */

.rightContent .Btn.transparent {
  padding: 0;
  font-size: 20px;
}

.Btn.transparent {
  background: none;
  border: none;
}

.RichText {
  word-break: break-all;
}

.MessageList .RichText img {
  max-width: 200px;
  max-height: 200px;
}

.RichText table,
.RichText th,
.RichText td {
  border-collapse: collapse;
  border: 1px solid var(--gray-3);
}

.Toolbar {
  overflow: scroll;
  height: 255px;
}

.emoji-picker-bar {
  display: flex;
  flex-wrap: wrap;
}

.emoji-picker-item {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.Toolbar .qqemoji {
  transform: scale(1.5, 1.5);
}
.Toolbar .standard-emoji {
  transform: scale(1.2, 1.2);
}

.navbarDiv {
  width: 100%;
  min-height: 60px;
  height: 60px;
  display: flex;
  top: 0;
  border-radius: 0 0 5px 5px;
  align-items: center;
  /*justify-content: space-between;*/
  box-shadow: var(--shadow-1);
  padding: 0 20px;
  font-size: 18px;
  background-color: var(--brand-1);
  color: white;
  justify-content: flex-start;
}

.navbarDiv .leftContent {
  display: flex;
  line-height: 0;
  align-items: center;
}

.navbarDiv .rightContent {
  width: 25%;
  position: absolute;
  right: 15px;
  display: flex;
  justify-content: flex-end;
  line-height: 0;
  align-items: center;
}

.navbarDiv .leftContent .Icon,
.navbarDiv .rightContent .Icon {
  margin: 0 5px;
  cursor: pointer;
}

.navbarDiv .title {
  font-size: 16px;
  width: 35%;
  text-align: center;
  font-weight: bold;
}

.test {
  width: 100px;
  height: 200px;
  background-color: #f67507;
}

.Message.right .Bubble {
  position: relative;
}

.Message.left .Bubble {
  position: relative;
}

.animate {
  color: var(--brand-2) !important;
  animation: fading 2000ms;
  -webkit-animation: fading 2000ms infinite; /* Safari and Chrome */
}

.Message.right .voice {
  display: none;
  transform: rotateY(180deg);
  position: absolute;
  left: -30px;
  top: 10px;
  font-size: 20px;
  color: var(--gray-5);
}

@keyframes fading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.chat-pc-auto-complete.autoComplete {
  width: 90%;
  max-width: 600px;
  background-color: #fff;
  position: absolute;
  bottom: 100%;
  left: 5%;
  border-radius: 10px;
  z-index: 800;
}

.chat-pc-auto-complete.autoComplete .chat-auto-complete-list {
  padding: 0 20px;
}

.chat-pc-auto-complete.autoComplete .chat-auto-complete-item {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--gray-8);
}

.chat-mobile-auto-complete.autoComplete {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 99%;
  z-index: 999;
  transform: translateZ(2px);
}

.chat-mobile-auto-complete.autoComplete .chat-auto-complete-item {
  background-color: rgba(255, 255, 255, 1);
  padding: 10px 16px;
  border-top: 1px solid #eee;
}

.ChatApp .MessageContainer > .PullToRefresh > .PullToRefresh-inner {
  padding-bottom: 0;
}

.ChatApp .MessageContainer {
  /*max-height: calc(100vh - 160px);*/
  max-height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  position: relative;
}

.center {
  display: flex;
  justify-content: center;
  /*align-items: flex-start;*/
  flex-direction: column;
}

.center .Message-content {
  justify-content: center;
}

/* 百度版权行 */
.BMap_cpyCtrl {
  display: none;
}
.anchorBL {
  display: none;
}

.navbarDiv {
  z-index: 1;
  position: relative;
}

.navbarDiv .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbarDiv .logo {
  position: absolute;
  left: 15px;
  height: 70%;
}

.navbarDiv .logo.only {
  position: unset;
}

/*.navbarDiv .logo2 {*/
/*  height: 70%;*/
/*}*/

@media (hover: none) {
  .S--focusing .MessageList {
    margin-top: 0 !important;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(50deg);
  }
  90% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.SliderBar .skillCard .recommendCard .list .listItem {
  border-bottom: 1px solid var(--gray-8);
  height: 45px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.SliderBar .skillCard .recommendCard .list .listItem:hover {
  color: var(--brand-1);
  font-weight: bold;
}

.recommendCard .listItem[data-hot]:after {
  content: 'hot';
  display: inline-block;
  width: 22px;
  height: 16px;
  margin-left: 2px;
  border-radius: 20px 20px 20px 2px;
  background: var(--brand-2);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.SliderBar .skillCard .littleCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  height: 100%;
}

.SliderBar .skillCard .littleCard .Image {
  width: 100%;
  height: 110px;
}

.SliderBar .skillCard .littleCard .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.15rem;
  margin-top: 10px;
}

.SliderBar .skillCard .littleCard .text {
  color: var(--gray-3);
  font-size: 10px;
  margin-top: 5px;
}

.SliderBar .toolCard {
  height: 80px;
  flex-direction: column;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.SliderBar .toolCard img {
  width: 100%;
  height: 70%;
}

.SliderBar::-webkit-scrollbar {
  width: 0;
}

.form {
  display: flex;
  margin: 10px 0;
}

.form .label {
  width: 25%;
  display: flex;
  align-items: center;
  color: var(--gray-2);
}

.form .other {
  width: 65%;
  flex: 1;
}

.form .ant-select,
.form .ant-slider {
  flex: 1 1;
}

.form .ant-slider {
  margin: 2px;
}

.sideBar {
  min-width: 250px;
  max-width: 400px;
  width: 25%;
  height: 100%;
  box-shadow: var(--shadow-3);
  overflow: hidden;
}

@media (max-width: 1000px) {
  .sideBar.left {
    display: none !important;
  }
  .sideBar.right {
    width: 40%;
  }
}

@media (min-width: 700px) {
  .Composer-actions[data-action-icon='volume-circle'] {
    display: none;
  }
}

@media (max-width: 700px) {
  .sideBar {
    display: none !important;
  }
  .chat-index {
    display: block;
    width: 100%;
  }
  .ChatApp {
    width: 100%;
  }
  .ant-drawer-content-wrapper {
    width: 100% !important;
  }
}

.block_Btn:hover {
  color: var(--brand-1);
  background: var(--gray-8);
  border-radius: 2px;
}

.normalBtn {
  background-color: var(--brand-1);
  border-color: var(--brand-1);
  color: var(--white);
  height: 35px;
}

.normalBtn:hover {
  border-color: var(--brand-2);
  background-color: var(--brand-2);
}

.robotJudgement {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}

.robotJudgement .Icon {
  font-size: 20px;
}

.Message.left .msg-tool {
  display: flex;
  position: relative;
  top: 1px;
  font-size: 25px;
  color: var(--gray-3);
  margin-left: 4px;
  flex-wrap: wrap;
}

.Message.left .Card + .msg-tool {
  flex-direction: column;
}

.Message.right .msg-tool {
  flex-direction: column;
  display: flex;
  position: relative;
  top: 1px;
  font-size: 25px;
  color: var(--gray-5);
  align-items: center;
}

.Message.left .chat-msg-toolbar .Bubble {
  margin-right: 0px;
}

.Message.right .chat-msg-toolbar .Bubble {
  margin-left: 0px;
}

.Message.left .Card ~ .msg-tool .Icon.voice {
  transform: translateX(3px);
}

.Message.left .Message-content:last-child {
  margin-right: 0;
}

.msg-tool .Icon {
  height: 30px;
  margin: 0.1em 0.25em;
}
.msg-tool + {
  min-height: max-content;
}

/* 单行不换行关键代码 */
.chat-msg-toolbar {
  /*display: -webkit-box;*/
  /*display: contents;*/
  display: flex;
}

.chat-msg-toolbar .Bubble.text {
  /*display: flex;*/
  /*align-items: center;*/
}

.ChatApp .Bubble.text {
  overflow-wrap: anywhere;
}

.msgError {
  background-color: red;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.MessageStatus .Btn:hover {
  background: transparent;
}

.Bubble.image {
  overflow: hidden;
}

.chat-index .Notice {
  top: 60px;
}

video.Video-video {
  width: 200px;
}

.queue-num {
  font-size: medium;
  color: var(--brand-1);
  font-weight: 900;
}
.system-rich-text,
.transfer-head-content,
.transfer-tail-content {
  display: inline-block;
}

.popoverList .list {
  padding: 20px;
  height: 30px;
  line-height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--brand-1);
}

.popoverList .list:hover {
  background: var(--gray-8);
}

.popoverList .list svg {
  margin-right: 10px;
  font-size: var(--font-size-lg);
}

.toolbar-container {
  height: 205px;
  padding: 0 20px;
}

.PopupIframeParent .Popup-body.overflow {
  padding: 0;
  overflow-y: hidden;
  max-height: 95vh;
}

iframe.PopupIframe {
  height: 90vh;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
}

.Modal-header {
  text-align: center;
}

.Modal-body .RichText {
  text-align: center;
}

/* 消息渲染 */
.Video-video {
  border-radius: 10px;
}

/* Drawer */

.ant-drawer-header {
  background: var(--brand-1);
}

.ant-drawer-header .ant-drawer-title,
.ant-drawer-header .ant-drawer-close,
.ant-drawer-header .ant-drawer-close:hover {
  color: white;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.chat-load-page {
  z-index: 1050;
  width: 100%;
  height: 100%;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.chat-message-image {
  border-radius: 10px;
  overflow: hidden;
}

.chat-message-image-pending {
  background-color: var(--white);
  width: 200px;
  height: 150px;
}

.chat-message-box {
  display: flex;
  align-items: flex-end;
}

.chat-message-box.chat-right-message-box {
  margin-left: 48px;
}

.chat-message-video .Video-video {
  border-radius: 10px;
}

.ChatFooter .QuickReplies {
  position: unset;
}

.ChatFooter .ScrollView--x .ScrollView-scroller {
  padding-top: 8px;
}

.navbar-close-btn {
  background-color: var(--gray-7);
}

.Message .Bubble.text table {
  border: 1px solid var(--gray-6);
}

.Message .Bubble.text table td,
.Message .Bubble.text table th {
  border: 1px solid var(--gray-6);
  min-width: 2em;
}

.chat-message-flex {
  display: flex;
  flex-direction: column;
}

.Message.right .chat-message-name {
  display: flex;
  justify-content: flex-end;
  padding-right: 3px;
  color: var(--gray-3);
  margin-bottom: 2px;
}

.Message.right .chat-msg-toolbar {
  margin-left: 48px;
}

.Message.right .chat-message-flex {
  align-items: flex-end;
}

/*.Message.left .chat-msg-toolbar {*/
/*    margin-right: 48px;*/
/*}*/

.Message.left .chat-message-flex {
  align-items: flex-start;
}

.Message.left .chat-message-name {
  display: flex;
  justify-content: flex-start;
  padding-left: 3px;
  color: var(--gray-3);
  margin-bottom: 2px;
}

.chat-out-div {
  height: 800px;
  width: 1200px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.chat-out-div.chat-fullscreen {
  height: 100%;
  width: 100%;
  border-radius: 0;
}

.chat-out-div .chat-index {
  height: 100%;
  width: 100%;
  position: unset;
}

/*.chat-index-mobile .Card.Card--xl {*/
/*    max-width: 400px;*/
/*    width: fit-content;*/
/*    min-width: 254px;*/
/*}*/

.chat-background {
  background: #cccccc;
  height: 100%;
  display: grid;
  place-items: center;
}

.chat-message-text {
  display: flex;
}
.chat-video-record {
  display: flex;
  align-items: center;
}
.chat-video-camera {
  margin-left: 3px;
}

/* 跑马灯 */
.chat-navbar-marquee {
  background: var(--brand-3);
  color: var(--brand-1);
  padding: 2px 10px;
  overflow: hidden;
  height: 1.8rem;
  position: relative;
}

.marquee-hidden {
  display: flex;
  flex-direction: column;
  position: absolute;
}

.marquee-item {
  cursor: pointer;
  transition: opacity 0.5s ease-in-out;
}

/* 二维码 */
.chat-qrcode-image {
  width: 100%;
  height: 100%;
  margin-bottom: 12px;
}

/* 机器人点赞点踩按钮 */
.chat-message-robot-rate {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.chat-message-robot-rate button {
  all: unset;
  margin: 5px 5px 0 0;
  cursor: pointer;
  user-select: none;
}

.chat-message-robot-rate button.robot-rate-button-text {
  /*min-width: 50px;*/
  background: var(--gray-5);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: white;
  border: 1px solid var(--gray-7);
}

.chat-message-robot-rate button.robot-rate-button-text:hover {
  background: var(--gray-4);
}

.chat-message-robot-rate button.robot-rate-button-text.selected {
  background: var(--brand-2);
  color: white;
  border: 1px solid var(--brand-1);
}

.chat-message-robot-rate button.robot-rate-button-circle {
  font-size: 20px;
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  color: var(--gray-2);
  box-shadow: 0 0 5px 1px var(--gray-7);
}

.chat-msg-toolbar.chat-message-with-name .msg-tool {
  padding-top: 18px;
}

.textVideoIcon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.textVideoIconSpace {
  margin-left: 4px;
}

button.QuickReply:disabled {
  background: #ccc;
  border-color: #999;
}


.qqemoji {
    background: url(../image/qqSmilies@2.6d8a42f2ed3639b99847.png) top left no-repeat;
    background-size: 360px;
    width: 20px;
    height: 20px;
    display: inline-block;
    zoom:1;
    vertical-align: middle;
}

.qqemoji0 {
    background-position: 0 0
}

.qqemoji1 {
    background-position: -24px 0
}

.qqemoji2 {
    background-position: -48px 0
}

.qqemoji3 {
    background-position: -72px 0
}

.qqemoji4 {
    background-position: -96px 0
}

.qqemoji5 {
    background-position: -120px 0
}

.qqemoji6 {
    background-position: -144px 0
}

.qqemoji7 {
    background-position: -168px 0
}

.qqemoji8 {
    background-position: -192px 0
}

.qqemoji9 {
    background-position: -216px 0
}

.qqemoji10 {
    background-position: -240px 0
}

.qqemoji11 {
    background-position: -264px 0
}

.qqemoji12 {
    background-position: -288px 0
}

.qqemoji13 {
    background-position: -312px 0
}

.qqemoji14 {
    background-position: -336px 0
}

.qqemoji15 {
    background-position: 0 -24px
}

.qqemoji16 {
    background-position: -24px -24px
}

.qqemoji17 {
    background-position: -48px -24px
}

.qqemoji18 {
    background-position: -72px -24px
}

.qqemoji19 {
    background-position: -96px -24px
}

.qqemoji20 {
    background-position: -120px -24px
}

.qqemoji21 {
    background-position: -144px -24px
}

.qqemoji22 {
    background-position: -168px -24px
}

.qqemoji23 {
    background-position: -192px -24px
}

.qqemoji24 {
    background-position: -216px -24px
}

.qqemoji25 {
    background-position: -240px -24px
}

.qqemoji26 {
    background-position: -264px -24px
}

.qqemoji27 {
    background-position: -288px -24px
}

.qqemoji28 {
    background-position: -312px -24px
}

.qqemoji29 {
    background-position: -336px -24px
}

.qqemoji30 {
    background-position: 0 -48px
}

.qqemoji31 {
    background-position: -24px -48px
}

.qqemoji32 {
    background-position: -48px -48px
}

.qqemoji33 {
    background-position: -72px -48px
}

.qqemoji34 {
    background-position: -96px -48px
}

.qqemoji35 {
    background-position: -120px -48px
}

.qqemoji36 {
    background-position: -144px -48px
}

.qqemoji37 {
    background-position: -168px -48px
}

.qqemoji38 {
    background-position: -192px -48px
}

.qqemoji39 {
    background-position: -216px -48px
}

.qqemoji40 {
    background-position: -240px -48px
}

.qqemoji41 {
    background-position: -264px -48px
}

.qqemoji42 {
    background-position: -288px -48px
}

.qqemoji43 {
    background-position: -312px -48px
}

.qqemoji44 {
    background-position: -336px -48px
}

.qqemoji45 {
    background-position: 0 -72px
}

.qqemoji46 {
    background-position: -24px -72px
}

.qqemoji47 {
    background-position: -48px -72px
}

.qqemoji48 {
    background-position: -72px -72px
}

.qqemoji49 {
    background-position: -96px -72px
}

.qqemoji50 {
    background-position: -120px -72px
}

.qqemoji51 {
    background-position: -144px -72px
}

.qqemoji52 {
    background-position: -168px -72px
}

.qqemoji53 {
    background-position: -192px -72px
}

.qqemoji54 {
    background-position: -216px -72px
}

.qqemoji55 {
    background-position: -240px -72px
}

.qqemoji56 {
    background-position: -264px -72px
}

.qqemoji57 {
    background-position: -288px -72px
}

.qqemoji58 {
    background-position: -312px -72px
}

.qqemoji59 {
    background-position: -336px -72px
}

.qqemoji60 {
    background-position: 0 -96px
}

.qqemoji61 {
    background-position: -24px -96px
}

.qqemoji62 {
    background-position: -48px -96px
}

.qqemoji63 {
    background-position: -72px -96px
}

.qqemoji64 {
    background-position: -96px -96px
}

.qqemoji65 {
    background-position: -120px -96px
}

.qqemoji66 {
    background-position: -144px -96px
}

.qqemoji67 {
    background-position: -168px -96px
}

.qqemoji68 {
    background-position: -192px -96px
}

.qqemoji69 {
    background-position: -216px -96px
}

.qqemoji70 {
    background-position: -240px -96px
}

.qqemoji71 {
    background-position: -264px -96px
}

.qqemoji72 {
    background-position: -288px -96px
}

.qqemoji73 {
    background-position: -312px -96px
}

.qqemoji74 {
    background-position: -336px -96px
}

.qqemoji75 {
    background-position: 0 -120px
}

.qqemoji76 {
    background-position: -24px -120px
}

.qqemoji77 {
    background-position: -48px -120px
}

.qqemoji78 {
    background-position: -72px -120px
}

.qqemoji79 {
    background-position: -96px -120px
}

.qqemoji80 {
    background-position: -120px -120px
}

.qqemoji81 {
    background-position: -144px -120px
}

.qqemoji82 {
    background-position: -168px -120px
}

.qqemoji83 {
    background-position: -192px -120px
}

.qqemoji84 {
    background-position: -216px -120px
}

.qqemoji85 {
    background-position: -240px -120px
}

.qqemoji86 {
    background-position: -264px -120px
}

.qqemoji87 {
    background-position: -288px -120px
}

.qqemoji88 {
    background-position: -312px -120px
}

.qqemoji89 {
    background-position: -336px -120px
}

.qqemoji90 {
    background-position: 0 -144px
}

.qqemoji91 {
    background-position: -24px -144px
}

.qqemoji92 {
    background-position: -48px -144px
}

.qqemoji93 {
    background-position: -72px -144px
}

.qqemoji94 {
    background-position: -96px -144px
}

.qqemoji95 {
    background-position: -120px -144px
}

.qqemoji96 {
    background-position: -144px -144px
}

.qqemoji97 {
    background-position: -168px -144px
}

.qqemoji98 {
    background-position: -192px -144px
}

.qqemoji99 {
    background-position: -216px -144px
}

.qqemoji100 {
    background-position: -240px -144px
}

.qqemoji101 {
    background-position: -264px -144px
}

.qqemoji102 {
    background-position: -288px -144px
}

.qqemoji103 {
    background-position: -312px -144px
}

.qqemoji104 {
    background-position: -336px -144px
}

.qqemoji105 {
    background-position: 0 -168px
}

.qqemoji106 {
    background-position: -24px -168px
}

.qqemoji107 {
    background-position: -48px -168px
}

.qqemoji108 {
    background-position: -72px -168px
}

.qqemoji109 {
    background-position: -96px -168px
}

.qqemoji110 {
    background-position: -120px -168px
}

.qqemoji111 {
    background-position: -144px -168px
}

.qqemoji112 {
    background-position: -168px -168px
}

.qqemoji113 {
    background-position: -192px -168px
}

.qqemoji114 {
    background-position: -216px -168px
}

.qqemoji115 {
    background-position: -240px -168px
}

.qqemoji116 {
    background-position: -264px -168px
}

.qqemoji117 {
    background-position: -288px -168px
}

.qqemoji118 {
    background-position: -312px -168px
}

.qqemoji119 {
    background-position: -336px -168px
}

.qqemoji120 {
    background-position: 0 -192px
}

.qqemoji121 {
    background-position: -24px -192px
}

.qqemoji122 {
    background-position: -48px -192px
}

.qqemoji123 {
    background-position: -72px -192px
}

.qqemoji124 {
    background-position: -96px -192px
}

.qqemoji125 {
    background-position: -120px -192px
}

.qqemoji126 {
    background-position: -144px -192px
}

.qqemoji127 {
    background-position: -168px -192px
}

.qqemoji128 {
    background-position: -192px -192px
}

.qqemoji129 {
    background-position: -216px -192px
}

.qqemoji130 {
    background-position: -240px -192px
}

.qqemoji131 {
    background-position: -264px -192px
}

.qqemoji132 {
    background-position: -288px -192px
}

.qqemoji133 {
    background-position: -312px -192px
}

.qqemoji134 {
    background-position: -336px -192px
}

.qqemoji135 {
    background-position: 0px -216px
}

.standard-emoji{
    display: inline-block;
    vertical-align: top;
    height:25px;
    width:25px;
    background-image: url(../image/emojiface.40a61552eacec0da0ebb.png);
    background-repeat: no-repeat;
}
.standard-emoji0{
    background-position: 0 0;
}
.standard-emoji1{
    background-position: -29px 0;
}
.standard-emoji2{
    background-position: -58px 0;
}
.standard-emoji3{
    background-position: -87px 0;
}
.standard-emoji4{
    background-position: -116px 0;
}
.standard-emoji5{
    background-position: -145px 0;
}
.standard-emoji6{
    background-position: -174px 0;
}
.standard-emoji7{
    background-position: -203px 0;
}
.standard-emoji8{
    background-position: -232px 0;
}
.standard-emoji9{
    background-position: -261px 0;
}
.standard-emoji10{
    background-position: -290px 0;
}
.standard-emoji11{
    background-position: -319px 0;
}
.standard-emoji12{
    background-position: -348px 0;
}
.standard-emoji13{
    background-position: -377px 0;
}
.standard-emoji14{
    background-position: -406px 0;
}
.standard-emoji15{
    background-position: 0 -29px;
}
.standard-emoji16{
    background-position: -29px -29px;
}
.standard-emoji17{
    background-position: -58px -29px;
}
.standard-emoji18{
    background-position: -87px -29px;
}
.standard-emoji19{
    background-position: -116px -29px;
}
.standard-emoji20{
    background-position: -145px -29px;
}
.standard-emoji21{
    background-position: -174px -29px;
}
.standard-emoji22{
    background-position: -203px -29px;
}
.standard-emoji23{
    background-position: -232px -29px;
}
.standard-emoji24{
    background-position: -261px -29px;
}
.standard-emoji25{
    background-position: -290px -29px;
}
.standard-emoji26{
    background-position: -319px -29px;
}
.standard-emoji27{
    background-position: -348px -29px;
}
.standard-emoji28{
    background-position: -377px -29px;
}
.standard-emoji29{
    background-position: -406px -29px;
}
.standard-emoji30{
    background-position: 0 -58px;
}
.standard-emoji31{
    background-position: -29px -58px;
}
.standard-emoji32{
    background-position: -58px -58px;
}
.standard-emoji33{
    background-position: -87px -58px;
}
.standard-emoji34{
    background-position: -116px -58px;
}
.standard-emoji35{
    background-position: -145px -58px;
}
.standard-emoji36{
    background-position: -174px -58px;
}
.standard-emoji37{
    background-position: -203px -58px;
}
.standard-emoji38{
    background-position: -232px -58px;
}
.standard-emoji39{
    background-position: -261px -58px;
}
.standard-emoji40{
    background-position: -290px -58px;
}
.standard-emoji41{
    background-position: -319px -58px;
}
.standard-emoji42{
    background-position: -348px -58px;
}
.standard-emoji43{
    background-position: -377px -58px;
}
.standard-emoji44{
    background-position: -406px -58px;
}
.standard-emoji45{
    background-position: 0 -87px;
}
.standard-emoji46{
    background-position: -29px -87px;
}
.standard-emoji47{
    background-position: -58px -87px;
}
.standard-emoji48{
    background-position: -87px -87px;
}
.standard-emoji49{
    background-position: -116px -87px;
}
.standard-emoji50{
    background-position: -145px -87px;
}
.standard-emoji51{
    background-position: -174px -87px;
}
.standard-emoji52{
    background-position: -203px -87px;
}
.standard-emoji53{
    background-position: -232px -87px;
}
.standard-emoji54{
    background-position: -261px -87px;
}
.standard-emoji55{
    background-position: -290px -87px;
}
.standard-emoji56{
    background-position: -319px -87px;
}
.standard-emoji57{
    background-position: -348px -87px;
}
.standard-emoji58{
    background-position: -377px -87px;
}
.standard-emoji59{
    background-position: -406px -87px;
}
.standard-emoji60{
    background-position: 0 -116px;
}
.standard-emoji61{
    background-position: -29px -116px;
}
.standard-emoji62{
    background-position: -58px -116px;
}
.standard-emoji63{
    background-position: -87px -116px;
}
.standard-emoji64{
    background-position: -116px -116px;
}
.standard-emoji65{
    background-position: -145px -116px;
}
.standard-emoji66{
    background-position: -174px -116px;
}
.standard-emoji67{
    background-position: -203px -116px;
}
.standard-emoji68{
    background-position: -232px -116px;
}
.standard-emoji69{
    background-position: -261px -116px;
}
.standard-emoji70{
    background-position: -290px -116px;
}
.standard-emoji71{
    background-position: -319px -116px;
}
.standard-emoji72{
    background-position: -348px -116px;
}
.standard-emoji73{
    background-position: -377px -116px;
}
.standard-emoji74{
    background-position: -406px -116px;
}
.standard-emoji75{
    background-position: 0 -145px;
}
.standard-emoji76{
    background-position: -29px -145px;
}
.standard-emoji77{
    background-position: -58px -145px;
}
.standard-emoji78{
    background-position: -87px -145px;
}
.standard-emoji79{
    background-position: -116px -145px;
}
.standard-emoji80{
    background-position: -145px -145px;
}
.standard-emoji81{
    background-position: -174px -145px;
}
.standard-emoji82{
    background-position: -203px -145px;
}
.standard-emoji83{
    background-position: -232px -145px;
}
.standard-emoji84{
    background-position: -261px -145px;
}
.standard-emoji85{
    background-position: -290px -145px;
}
.standard-emoji86{
    background-position: -319px -145px;
}
.standard-emoji87{
    background-position: -348px -145px;
}
.standard-emoji88{
    background-position: -377px -145px;
}
.standard-emoji89{
    background-position: -406px -145px;
}
.standard-emoji90{
    background-position: 0 -178px;
}
.standard-emoji91{
    background-position: -29px -178px;
}
.standard-emoji92{
    background-position: -58px -178px;
}
.standard-emoji93{
    background-position: -87px -178px;
}
.standard-emoji94{
    background-position: -116px -178px;
}
.standard-emoji95{
    background-position: -145px -178px;
}
.standard-emoji96{
    background-position: -174px -178px;
}
.standard-emoji97{
    background-position: -203px -178px;
}
.standard-emoji98{
    background-position: -232px -178px;
}
.standard-emoji99{
    background-position: -261px -178px;
}
.standard-emoji100{
    background-position: -290px -178px;
}
.standard-emoji101{
    background-position: -319px -178px;
}
.standard-emoji102{
    background-position: -348px -178px;
}
.standard-emoji103{
    background-position: -377px -178px;
}
.standard-emoji104{
    background-position: -406px -178px;
}
.standard-emoji105{
    background-position: 0 -207px;
}
.standard-emoji106{
    background-position: -29px -207px;
}
.standard-emoji107{
    background-position: -58px -207px;
}
.standard-emoji108{
    background-position: -87px -207px;
}
.standard-emoji109{
    background-position: -116px -207px;
}
.standard-emoji110{
    background-position: -145px -207px;
}
.standard-emoji111{
    background-position: -174px -207px;
}
.standard-emoji112{
    background-position: -203px -207px;
}
.standard-emoji113{
    background-position: -232px -207px;
}
.standard-emoji114{
    background-position: -261px -207px;
}
.standard-emoji115{
    background-position: -290px -207px;
}
.standard-emoji116{
    background-position: -319px -207px;
}
.standard-emoji117{
    background-position: -348px -207px;
}
.standard-emoji118{
    background-position: -377px -207px;
}
.standard-emoji119{
    background-position: -406px -207px;
}
.standard-emoji120{
    background-position: 0 -236px;
}
.standard-emoji121{
    background-position: -29px -236px;
}
.standard-emoji122{
    background-position: -58px -236px;
}
.standard-emoji123{
    background-position: -87px -236px;
}
.standard-emoji124{
    background-position: -116px -236px;
}
.standard-emoji125{
    background-position: -145px -236px;
}
.standard-emoji126{
    background-position: -174px -236px;
}
.standard-emoji127{
    background-position: -203px -236px;
}
.MessageContainer .Forms {
    font-size: 13px;
    padding: 5px 20px;
    background-color: #ffffff;
    margin: 5px 0;
}

.MessageContainer .Forms .img{
    width: 150px;
    margin: 20px 5px;
}

.MessageContainer .Forms .message{
    background-color: var(--brand-1);
    margin: 30px 0;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px 10px 10px 0;
    flex: 1;
}

.MessageContainer .Forms .Input {
    font-size: 13px;
    border: 0px;
    width: 75%;
}

.MessageContainer .Forms .RadioGroup {
    display: flex;
    align-items: center;
}

.MessageBoard .MessageContainer .Forms .Input {
    background-color: var(--gray-7);
}

.MessageBoard Button.submit {
    width: 90%;
    margin: 0 5%;
    height: 35px;
    background-color: var(--brand-1);
    color: #ffffff;
    border: none;
}

.MessageBoard .Btn.submit:hover {
    background-color: var(--brand-2);
}

.Btn.uploadBtn {
    border: dashed var(--gray-6) 1px;
    border-radius: 1px;
    font-size: 0.8rem;
    color: var(--gray-2);
}

.MessageBoard .ant-drawer .ant-drawer-content.messageBoard .ant-drawer-body {
    padding: 0;
}

.MessageBoard .ant-select:not(.ant-select-customize-input) .ant-select-selector {
    all: initial;
}

.MessageBoard .ant-select-focused.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {
    box-shadow: unset;
    border: none
}

.MessageBoard .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer):hover .ant-select-selector {
    border: none
}

.MessageBoard .ant-select.Input {
    height: 30px;
    padding: 0px 12px;
}

.MessageBoard .ant-select.Input .ant-select-selection-item {
    font-size: var(--font-size-md);
    color: var(--gray-1)
}

.messageBoard.ant-drawer-content .ant-drawer-body {
    padding: 0;
}
.welcomeCard {
    padding: 10px;
}

/*FAQCard: YiBot的特殊解析卡片，主要用于同时展示问题与答案*/

.FAQCard {
    padding: 10px;
}

.FAQCard .QA {
    margin: 5px 0;
}

.FAQCard .QA .question {
    color: var(--brand-1);
    font-weight: bold;
}

.FAQCard .QA .answer {
    text-indent: 1em
}

/*RelationCard："你可能还想问以下问题"*/

.RelationCard .title {
    font-size: 1em;
    padding: 10px;
    color: var(--brand-1);
    font-weight: bold;
    border-bottom: 1px solid var(--gray-8);
}

.RelationCard .text {
    font-size: 1em;
    padding: 10px;
}

.RelationCard .listItem {
    padding: 10px;
    justify-content: space-between;
}

.RelationCard .listItem svg {
    fill: var(--gray-4);
}

.RelationCard .listItem:not(:last-child) {
    border-bottom: 1px solid var(--gray-8);
}

.RelationCard .listItem:hover {
    background-color: var(--gray-8);
    color: var(--brand-1);
}

.FormCard {
    padding: 10px;
}

.FormCard .title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 5px;
    font-size: 1.05em;
    border-bottom: 1px solid var(--gray-8);
    /*color: var(--gray-2);*/
}

.FormCard p {
    color: var(--gray-3);
    margin-bottom: 0;
}

.ListForm {
    padding-bottom: 25px;
}

.listItem {
    display: flex;
    padding: 5px;
    align-items: center;
    width: 100%;
}

.listItem .label {
    width: 100px;
    text-align: left;
}

.listItem div:last-child {
    flex: 1;
}

.listItem input.areaCode {
    width: 30%;
}

.listItem input.phoneNum {
    width: 60%;
}

.tips {
    color: var(--red);
    font-size: xx-small;
    float: right;
    position: relative;
    right: 5px;
}

.successIcon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.statusCard {
    padding: 0 10px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.statusCard .icon {
    width: 100px;
    height: 100px;
    padding: 20px;
}

.statusCard .icon svg {
    fill: var(--white);
}

.skillCard .recommendCard .recommendTitle {
    font-size: 18px;
    word-wrap: break-word;
    width: 20%;
    padding: 8px;
    color: var(--brand-1);
}

.Card--xxl {
    width: 100%;
    max-width: 400px;
    min-width: 300px;
}

.chat-card-tab-tool {
    display: flex;
    flex-direction: column;
}

.chat-card-tab-tool .card-tab-tool-title {
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.chat-card-tab-tool .card-tab-tool-title .titleDiv {
    background: var(--gray-7);
    border-radius: 10px 10px 0 0;
    padding: 3px 0;
    max-width: 80px;
    flex: 1 1 0;
    display: grid;
    place-content: center;
}

.chat-card-tab-tool .card-tab-tool-title .titleDiv.selected {
    background: var(--white);
}

.chat-card-tab-tool .content {
    background: var(--white);
    border-radius: 0 0 10px 10px;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    padding: 9px;
    width: calc(100vw - 25px);
}

.chat-card-tab-tool .content.radius {
    border-radius: 0 10px 10px 10px;
}

.chat-card-tab-tool .content .tool {
    display: flex;
    flex-direction: column;
    margin: 5px;
    align-items: center;
    font-size: 0.8rem;
}

.chat-card-tab-tool .content .tool .Icon {
    font-size: 35px;
}

.chat-card-tab-tool .content .tool .chat_customize_icon {
    width: 35px;
    height: 35px;
}

.LinkCard {
    padding: 10px;
}

.elderCardModal {
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.2);
    position: absolute;
    z-index: 200;
    display: grid;
    align-items: center;
    justify-items: center;
}

.elderCard {
    height: 80%;
    width: 80%;
    background: white;
    max-width: 350px;
    max-height: 450px;
    border-radius: 10px;
}

.elderCard .banner {
    height: 15%;
    background-color: var(--brand-1);
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    font-weight: bold;
    color: white;
    display: grid;
    place-items: center;
    padding: 10px;
}

.elderCard .elderBtn,
.elderCard .youngBtn {
    height: 42.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--gray-1);
    font-size: 20px;
}

.elderCard .youngBtn {
    border-radius: 0 0 10px 10px;
}

.elderCard .elderBtn:hover,
.elderCard .youngBtn:hover {
    background-color: var(--gray-7);
}

.elderCard .elderBtn .icon,
.elderCard .youngBtn .icon {
    font-size: 100px;
    color: var(--brand-1);
    /*color: var(--gray-2);*/
}

.SatisfactionCard .RateHeader {
    margin-bottom: 0;
}

/*.satisfaction-card .CardTitle-title,*/
/*.SatisfactionCard .CardTitle-title {*/
/*    font-weight: bold;*/
/*}*/
.satisfaction-title {
    font-weight: bold;
    padding: 16px 16px 0 16px;
}

.card-graphics-container {
    display: flex;
    cursor: pointer;
}

.chat-card-graphics .ant-image-img {
    height: 100%;
}

.card-graphics-content {
    padding: 8px 16px;
    flex: 1;
}

.card-graphics-description {
    color: #666;
}

.card-graphics-title {
    font-size: 1rem;
    font-weight: bold;
}

.card-graphics-button {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #ccc;
}

.chat-card-banner {
    position: relative;
    user-select: none;
}

.card-banner-header-panel,
.card-banner-panel {
    width: 100%;
    height: 42px;
    padding: 10px 15px;
}

.card-banner-title {
    padding: 10px 15px;
    width: 100%;
}

.card-banner-title p {
    margin-bottom: 0;
}

.card-banner-header-panel:hover,
.card-banner-panel:hover {
    color: var(--brand-1);
    background-color: var(--gray-8);
}

.card-banner-header-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px var(--gray-7) solid;
}

.card-banner-panel {
    background-color: rgba(0,0,0,0.02);
    border-bottom: 1px var(--gray-7) solid;
}

.card-banner-title {
    font-weight: bold;
    color: var(--brand-1);
}

.card-banner-refresh {
    display: flex;
    justify-content: flex-end;
    padding: 5px 15px;
    font-weight: bold;
    cursor: pointer;
    color: var(--brand-1);
}

.card-banner-refresh-fixed {
    position: absolute;
    top: 5px;
    right: 0;
}

.chat-goods-card .chat-goods-card-title {
    padding: 10px 10px 0 10px;
    font-weight: bold;
    color: var(--brand-1);
}

.chat-goods-card .chat-goods-card-item {
    border-bottom: 1px solid var(--gray-7);
    padding: 10px;
    cursor: pointer;
}

.chat-goods-card-item {
    display: flex;
    flex-direction: column;
}

.chat-goods-item-header {
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.chat-goods-item-content {
    display: flex;
}

.chat-goods-item-image {
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    height: fit-content;
}

.chat-goods-item-text {
    padding: 0 10px;
    flex: 1;
}

.chat-goods-item-title {
    -webkit-line-clamp: 1;
}

.chat-goods-item-date,
.chat-goods-item-description,
.chat-goods-item-order-id,
.chat-goods-item-count,
.chat-goods-item-status {
    color: var(--gray-2);
}

.chat-goods-item-date,
.chat-goods-item-order-id,
.chat-goods-item-status {
    font-size: 0.8rem;
    -webkit-line-clamp: 1;
}

.chat-goods-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-message-map {
    padding: 10px;
}

.chat-message-map-view {
    min-width:  220px;
    width: 100%;
    height: 180px!important;
}

.chat-message-map .chat-message-map-cloak {
    width: 220px;
    height: 180px!important;
    position: absolute;
    z-index: 99;
}

.chat-command-question-card {}

.chat-command-question-card {}

.chat-cq-card-title {
    font-size: 1em;
    padding: 10px;
    color: var(--brand-1);
    font-weight: bold;
    border-bottom: 1px solid var(--gray-8);
}

.chat-cq-card-text {
    font-size: 1em;
    padding: 10px;
}

.chat-cq-card-item {
    padding: 10px;
    justify-content: space-between;
    display: flex;
}

.chat-cq-card-item svg {
    fill: var(--gray-4);
}

.chat-cq-card-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-8);
}

.chat-cq-card-item:hover {
    background-color: var(--gray-8);
    color: var(--brand-1);
}

.chat-card-goods2 {
    display: flex;
    flex-direction: column;
}

.card-goods2-title {
    margin: 2px 10px;
    color: var(--gray-1);
    font-size: 1.25rem;
    font-weight: bold;
}

.card-goods2-price {
    margin: 2px 10px;
    color: var(--red);
    font-size: 1.25rem;
    font-weight: bold;
}

.card-goods2-from {
    margin: 2px 10px 10px 10px;
    color: var(--gray-3);
    font-size: 1rem;
}

.chat-card-robot :first-child.card-robot-title {
    padding: 16px 16px 8px 16px;
}

.chat-card-robot .card-robot-title {
    font-size: 1em;
    padding: 0px 16px 8px 16px;
    /*padding: 16px 16px 8px 16px;*/
    color: var(--brand-1);
    font-weight: bold;
    border-bottom: 1px solid var(--gray-8);
}

.chat-card-robot .card-robot-title p {
    margin-bottom: 0;
}

.chat-card-robot .card-robot-text {
    font-size: 1em;
    padding: 10px;
}

.chat-card-robot .card-robot-list-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 16px;
    justify-content: space-between;
}

.chat-card-robot .card-robot-list-item:last-child {
    padding-bottom: 13px;
}

.chat-card-robot .card-robot-list-item.card-robot-list-item-row {
    display: inline-flex;
    width: 50%;
    align-items: center;
    padding: 8px 16px;
    justify-content: center;
    border-right: 1px solid var(--gray-8);
}
.chat-card-robot .card-robot-list-item.card-robot-list-item-row:last-child {
    border-right: 0;
}

.chat-card-robot .card-robot-list-item svg {
    fill: var(--gray-4);
}

.chat-card-robot .card-robot-list-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-8);
}

.chat-card-robot .card-robot-list-item:hover {
    background-color: var(--gray-8);
    color: var(--brand-1);
}

.chat-card-robot video {
    max-width: 270px;
}

.chat-card-tab .tab-card-image {
    width: 100%;
}

.chat-card-tab .tab-card-title {
    padding: 10px 10px 0 10px;
}

.chat-card-tab .tab-card-title p {
    margin-bottom: 0.5rem;
}

.chat-card-tab .tab-card-list {
    padding: 10px;
}

.chat-card-tab .tab-card-list-item {
    padding: 5px 0;
}

.chat-card-tab .tab-card-list-item:hover {
    color: var(--brand-2);
    font-weight: bold;
}

.goods-card-div-root {
    position: relative;
}

.goods-card-div-root .ant-notification {
    position: absolute;
}

.goods-card-div-root .ant-notification-notice-btn {
    margin-top: -15px;
    position: relative;
}

.goods-card-div-root .ant-notification-notice-message {
    font-size: 14px;
}

.goods-card-div-root .ant-notification-notice {
    padding: 8px 16px;
}

.knowledgeCard {
    margin: 10px;
    overflow: hidden;
}

.knowledgeCard .cloak {
    position: absolute;
    width: 280px;
    height: 200px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    max-width: 85vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.knowledgeCard .cloak p {
    color: var(--brand-2);
    font-size: 12px;
}

.SliderBar {
    display: -webkit-box; /* iOS 6-, Safari 3.1-6 */
    display: -webkit-flex; /* Chrome */
    display: -moz-box; /* Firefox 19 */
    display: -ms-flexbox;
    display: flex; /*flex容器*/
    height: 100%;
    width: 100%;
    overflow-x: scroll;
}

.SliderBar .Card {
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 10px;
}

.SliderBar .skillCard {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    height: 180px;
    cursor: pointer;
}

.SliderBar .skillCard .recommendCard {
    display: flex;
}

.SliderBar .skillCard .recommendCard .Image {
    height: 180px;
    width: 75px;
}

.SliderBar .skillCard .recommendCard .list {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    width: 225px;
}

.SliderBar .skillCard .refreshBtn {
    position: absolute;
    left: 3%;
    bottom: 5%;
    display: flex;
    font-size: 12px;
    color: var(--gray-1);
    flex-direction: row;
    align-items: center;
}

.SliderBar .skillCard .recommendCard .list .anticon-fire {
    color: red;
}

.SliderBar .skillCard .refresh:hover {
    -webkit-animation: rotation 500ms; /* Safari and Chrome */
}

.card-transfer-title,
.card-queue-title {
    display: flex;
    justify-content: center;
    padding: 20px 20px 0 20px;
    text-align: center;
}

.card-transfer-div,
.card-queue-div {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

.card-transfer-div {
    justify-content: space-around;
}

.card-transfer-choice,
.card-queue-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}

.card-transfer-choice img,
.card-queue-choice img {
    width: 50px;
    height: 50px;
}

.card-transfer-selected,
.card-queue-selected {
    background: var(--brand-3);
}
/* root */
.RatePage {
    background-color: var(--white);
    width: 100%;
    height: 100%;
    padding: 20px;
}

/* 输入框 */
.contentText {
    margin-top: 15px;
    margin-bottom: 20px;
}

.grayArea .Input {
    background-color: var(--gray-8);
    border: none;
    font-size: 0.9rem;
}

.SubHeader {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Header - ImageRate */
.RateHeader {
    background-color: var(--gray-8);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 12px
}

.imageRate {
    display: flex;
    justify-content: space-around;
}

.imageRate .imageRateImg {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.imageRate .imageRateItem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    font-size: 12px;
}

.imageRate .selected {
    font-size: 15px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 3;
    right: 0;
    color: green;
}

.imageRate .rateHeaderLabel {
    margin-top: 5px;
}

.StarRateHeader .ant-rate {
    font-size: 30px;
    display: flex;
    justify-content: center;
}

.StarRateHeader {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.StarRateHeader .star-rate-header-text {
    font-weight: bold;
}

.starRateContentItem .label {
    padding-right: 10px;
}

/* Content - */
.Card .RateContent {
    max-height: 200px;
    overflow-y: scroll;
}

.RateContent .label {
    margin: 10px 0;
}

/* Other */
.normalBtn {
    background-color: var(--brand-1);
    border-color: var(--brand-1);
    color: var(--white);
    height: 35px;
}

.normalBtn:hover {
    border-color: var(--brand-2);
    background-color: var(--brand-2);
}

.chat-satisfaction-star-label {
    padding: 0 12px;
    color: var(--brand-1);
    font-weight: bold;
}

.chat-satisfaction-total-star-label {
    padding-right: 12px;
}
.chat-map-info {
    padding: 10px 0;
}

.chat-map-title {
    font-size: 1rem;
}

.chat-map-setting .chat-map-view {
    height: calc(100% - 120px);
}

.chat-map-view {
    width: 100%;
    overflow: hidden;
    height: calc(100% - 60px);
}

.chat-map-title {
    margin-left: 5px;
}

.chat-map-address {
    margin-left: 20px;
    color: var(--gray-2)
}

.chat-map-component {
    height: 100%;
}
.display-icon-table {
    display: flex;
    flex-wrap: wrap;
}

.display-icon-item {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    align-items: center;
    margin: 10px;
}

.display-icon-item .Icon {
    font-size: 25px;
}

.display-icon-item svg {
    font-size: 22px;
}

.chat_customize_icon {
    width: 40px;
    height: 40px;
}

.icon {
    font-size: 1rem;
    fill: currentColor;
    width: 2em;
    height: 2em;
}
.sideBar {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.sideBar .listItem {
    padding: 5px;
    width: 100%;
    display: block;
}

.sideBar .listItem:hover {
    color: var(--brand-2);
    font-weight: bold;
}

.sideBar .title {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--brand-1);
    font-weight: bold;
}

.sideBar .tools {
    display: flex;
    overflow-x: scroll;
    align-items: center;
}

.sideBar .tools::-webkit-scrollbar {
    height: 0;
}

.sideBar .btn {
    display: flex;
    align-items: center;
    height: 100%;
}

.sideBar .btn .Icon {
    width: 20px;
    height: 100%;
}

.sideBar .tool {
    display: flex;
    flex-direction: column;
    margin: 10px;
    font-size: 12px;
    padding: 5px;
    border-radius: 5px;
}

.sideBar .tool:hover {
    color: var(--brand-1);
    background: var(--gray-8);
}

.sideBar .tools .icon,
.sideBar .tools .Icon{
    width: 50px;
    height: 50px;
}

.sideBar .sideToolBar {
    background: var(--gray-8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 100px;
    justify-content: space-between;
}

.sideBar .tab {
    /*height: 260px;*/
    position: relative;
}

.tab .sidebar-tab-refresh {
    user-select: none;
    display: flex;
    align-items: center;
    color: var(--brand-1);
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: 0;
}

.tab .sidebar-tab-refresh:hover {
    cursor: pointer;
    color: var(--brand-2);
}

.tab .sidebar-tab-refresh:hover .Icon {
    -webkit-animation: rotation 1000ms; /* Safari and Chrome */
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }
    50% {
        transform: rotate(50deg)
    }
    90% {
        transform: rotate(-20deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

.ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
    color: var(--brand-2);
}

.ant-tabs .ant-tabs-tab-btn:focus:not(:focus-visible),
.ant-tabs .ant-tabs-tab-remove:focus:not(:focus-visible),
.ant-tabs .ant-tabs-tab-btn:active,
.ant-tabs .ant-tabs-tab-remove:active {
    color: var(--brand-2);
}

.ant-tabs .ant-tabs-tab-btn:hover,
.ant-tabs .ant-tabs-tab:hover,
.ant-tabs .ant-tabs-tab-btn:active {
    color: var(--brand-2);
}

.ant-tabs .ant-tabs-ink-bar {
    background-color: var(--brand-2);
}

.chat-sidebar-tab .ant-tabs-content.ant-tabs-content-top {
    height: 100%;
}

.sidebar-module {
    max-height: 100%;
    overflow: hidden;
}

.sidebar-tab-scroll .ant-tabs-content-holder {
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-tab-scroll {
    height: 100%;
}

.sidebar-tab-list-item {
    padding: 5px;
    width: 100%;
    display: block;
}

.sidebar-tab-list-item .tab-list-item-title {
    cursor: pointer;
}

.sidebar-tab-list-item .tab-list-item-title.tab-list-item-title-select,
.sidebar-tab-list-item .tab-list-item-title:hover {
    color: var(--brand-1);
    font-weight: bold;
}

.sidebar-tab-class .tab-list-item-text {
    width: 100%;
    background: var(--gray-7);
    border-radius: 10px;
    padding: 10px;
    margin: 2px 0;
}

.sidebar-tab-list-item .tab-list-item-text {
    width: 100%;
    background: var(--gray-7);
    border-radius: 10px;
    padding: 10px;
    margin-top: 8px;
}

.sidebar-tab-class {
    user-select: none;
}

.ant-collapse.sidebar-tab-class .ant-collapse-item > .ant-collapse-header {
    color: var(--brand-1);
    font-weight: bold;
    padding: 5px 0;
}

.sidebar-tab-class.ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
    padding: 0px 24px;
}

.sidebar-tab-class .tab-list-item-title {
    cursor: pointer;
}

.sidebar-tab-class .tab-list-item-title.tab-list-item-title-select,
.sidebar-tab-class .tab-list-item-title:hover {
    color: var(--brand-1);
}

.audio {
    min-width: min-content;
    max-width: 150px;
    display: flex;
    justifyContent: space-around;
    alignItems: center;
}

.soundWare {
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

.soundWare1 {
    height: 15px;
    width: 1px;
    background: #333;
    display: inline-block;
    margin-right: 3px;
    animation:warePlay1 500ms;
    -webkit-animation:warePlay1 500ms infinite; /* Safari and Chrome */
}

.soundWare2 {
    height: 25px;
    width: 1px;
    background: #333;
    display: inline-block;
    margin-right: 3px;
    animation:warePlay2 500ms;
    -webkit-animation:warePlay2 500ms infinite; /* Safari and Chrome */
}

.soundWare3 {
    height: 10px;
    width: 1px;
    background: #333;
    display: inline-block;
    margin-right: 3px;
    animation:warePlay3 500ms;
    -webkit-animation:warePlay3 500ms infinite; /* Safari and Chrome */
}

@keyframes warePlay1 {
    0% { height: 15px;}
    25% { height: 25px;}
    50% { height: 15px;}
    75% { height: 5px;}
    100% { height: 15px;}
}

@keyframes warePlay2 {
    0% { height: 25px;}
    50% { height: 5px;}
    100% { height: 25px;}
}

@keyframes warePlay3 {
    0% { height: 10px;}
    37.5% { height: 25px;}
    75% { height: 5px;}
    100% { height: 10px;}
}

.chat-audio-bubble {
    display: flex;
}

.Message.right .chat-audio-bubble {
    flex-direction: row-reverse;
}

.audio-right-translate svg,
.audio-left-translate svg {
    fill: var(--gray-3);
    margin: 5px 5px 0 5px;
}

.Message.right .chat-audio-bubble .Bubble  {
    margin-left: 0;
}

.Message.left .chat-audio-bubble .Bubble  {
    margin-right: 0;
}

.Message.left .chat-audio-bubble {
    margin-right: 48px;
}

.Message.right .chat-audio-bubble {
    /*margin-left: 48px;*/
}

.audio-translate-text {
    margin-top: 8px;
}
.MsgBoardHeader .text {
    margin: 20px 15px;
}

.MsgBoard .Input {
    border-radius: 6px;
}

.msgBoard Button.submit {
    width: 100%;
    height: 35px;
    background-color: var(--brand-1);
    color: #ffffff;
    border: none;
    text-align: center;
    border-radius: 20px;
    flex: 1;
}

.MsgBoard Button.submit:hover {
    color: white;
    cursor: pointer;
}

.msgBoard.ant-drawer-content .ant-drawer-body {
    padding: 0;
}

#MsgBoardForm {
    padding: 8px 16px;
}

.msgBoard .ant-row {
    display: flex;
    justify-content: center;
}

.Toast.show {
    z-index: 9999;
}

.ABCMsgBoard.MsgBoardHeader {
    display: flex;
}

.ABCMsgBoard.MsgBoardHeader .img {
    width: 150px;
    margin: 20px 5px;
}

.ABCMsgBoard.MsgBoardHeader .message{
    background-color: var(--brand-1);
    margin: 30px 0;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px 10px 10px 0;
    flex: 1;
}

@media (max-width: 575px) {
    .ABCForm .ant-form .ant-form-item .ant-form-item-control, .ant-form .ant-form-item .ant-form-item-label {
        flex: 0 0 25%;
        padding: 0;
    }
    .ABCForm .ant-form .ant-form-item .ant-form-item-control, .ant-form .ant-form-item .ant-form-item-control {
        flex: 0 0 75%;
    }
}

.ABCForm .Input,
.ABCForm .ant-select:not(.ant-select-customize-input) .ant-select-selector {
    background-color: var(--gray-7);
    border-color: transparent;
    border-radius: 5px;
}

.MsgBoard input:disabled {
    background-color: var(--gray-7);
    color: var(--gray-2);
}
.video-meet-modal .chat-modal-primary .ant-modal-body {
  padding: 0;
}
.video-meet-modal .chat-modal-primary .ant-modal-header .ant-modal-title {
  display: flex;
  justify-content: center;
}
.video-meetNotice-modal .ant-modal-close {
  display: none;
}
/* .video-meet-modal .ant-modal-close {
  display: none;
} */
.meet-video {
  position: relative;
  /*display: flex;*/
  /*justify-content: center;*/
}

.santi-remote-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.santi-self-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-video:hover .handle-up-video {
  display: grid;
}

.handle-up-video {
  position: absolute;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: var(--red);
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  place-items: center;
  display: none;
}

.handle-up-video .Icon {
  color: white;
  font-size: 50px;
  transform: rotate(135deg);
}

.remote-video-box {
  width: 100%;
  height: 600px;
  background: linear-gradient(to top, #272727, #929292);
}

.self-video-box {
  position: absolute;
  z-index: 999;
  top: 0;
  width: 300px;
  height: 225px;
  background: linear-gradient(to top, #272727, #929292);
}

.video-container.self-video-box {
  position: absolute;
  right: 0;
}

.show-self-video-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
  background: rgba(255, 255, 255, 0.3);
  height: 80px;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 99;
}

.group-btns {
  display: flex;
  line-height: 0;
  font-size: 25px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.group-btns .Icon {
  margin: 0;
}

.group-btns > div {
  margin-left: 5px;
  cursor: pointer;
}

.open-micro-phone {
  color: var(--brand-1);
}
.close-micro-phone {
  color: rgb(181, 181, 181);
}
.open-camera {
  color: var(--brand-1);
}
.close-camera {
  color: rgb(181, 181, 181);
}

.video-container {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 40%;
  background-color: gray;
  object-fit: cover;
  z-index: 12;
}
.overlay {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 10px;
}
.fullscreen-container-video {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.hide-fullscreen-container-video {
  display: none;
}
.hide-self-container-video {
  display: none;
}
.remote-mobile-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  object-fit: cover;
  z-index: 11;
}
.self-mobile-video {
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 40%;
  background-color: gray;
  object-fit: cover;
  z-index: 12;
}
.hang-up-container {
  position: absolute;
  top: 75%;
  width: 100%;
  z-index: 12;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.audio-video-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.hang-up-icon-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-video-box-btn.hang-up-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--red);
  font-size: 35px;
}

.mobile-video-box-btn {
  background-color: rgba(245, 245, 245, 0.3);
  cursor: pointer;
}
.mobile-video-box-btn-active {
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.local-video-camera-icon,
.local-audio-mic-icon,
.overturn-camera-icon {
  font-size: 30px;
  color: rgb(223, 223, 223);
}
.mobile-video-hangup-icon {
  color: rgb(223, 223, 223);
  transform: rotate(135deg);
}
.micIcon-box,
.cameraIcon-box,
.cameraOverturnIcon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.open-micro-phone .Icon {
  color: rgb(12, 159, 123);
}
.close-micro-phone .Icon {
  color: rgb(181, 181, 181);
}
.open-camera .Icon {
  color: rgb(12, 159, 123);
}
.close-camera .Icon {
  color: rgb(181, 181, 181);
}
.overturn-camera-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.overturn-camera-svg {
  font-size: 18px;
}
.bottom-hang-up {
  margin-top: 15px;
}
.hide-mobile-box {
  position: absolute;
  top: 17px;
  left: 15px;
  z-index: 12;
}
.hide-mobile-icon {
  font-size: 25px;
  color: aliceblue;
}
.disply-none {
  display: none;
}
.video-meet-modal .chat-modal-primary .ant-modal-body {
  padding: 0;
}
.video-meet-modal .chat-modal-primary .ant-modal-header .ant-modal-title {
  display: flex;
  justify-content: center;
}
.video-meetNotice-modal .ant-modal-close {
  display: none;
}
/* .video-meet-modal .ant-modal-close {
  display: none;
} */
.meet-video {
  position: relative;
  /*display: flex;*/
  /*justify-content: center;*/
}

.santi-remote-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.santi-self-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-video:hover .handle-up-video {
  display: grid;
}

.handle-up-video {
  position: absolute;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: var(--red);
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  place-items: center;
  display: none;
}

.handle-up-video .Icon {
  color: white;
  font-size: 50px;
  transform: rotate(135deg);
}

.remote-video-box {
  width: 100%;
  height: 600px;
  background: linear-gradient(to top, #272727, #929292);
}

.self-video-box {
  position: absolute;
  z-index: 999;
  top: 0;
  width: 300px;
  height: 225px;
  background: rgb(0, 0, 0);
}

.video-container.self-video-box {
  position: absolute;
  right: 0;
}

.show-self-video-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
  background: rgba(255, 255, 255, 0.3);
  height: 80px;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 99;
}

.group-btns {
  display: flex;
  line-height: 0;
  font-size: 25px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.group-btns .Icon {
  margin: 0;
}

.group-btns > div {
  margin-left: 5px;
  cursor: pointer;
}

.open-micro-phone {
  color: var(--brand-1);
}
.close-micro-phone {
  color: rgb(181, 181, 181);
}
.open-camera {
  color: var(--brand-1);
}
.close-camera {
  color: rgb(181, 181, 181);
}

.video-container {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 40%;
  background-color: gray;
  object-fit: cover;
  z-index: 12;
}
.overlay {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 10px;
}
.fullscreen-container-video {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.hide-fullscreen-container-video {
  display: none;
}
.hide-self-container-video {
  display: none;
}
.remote-mobile-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  object-fit: cover;
  z-index: 11;
}
.self-mobile-video {
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 40%;
  background-color: gray;
  object-fit: cover;
  z-index: 12;
}
.hang-up-container {
  position: absolute;
  top: 75%;
  width: 100%;
  z-index: 12;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.audio-video-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.hang-up-icon-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-video-box-btn.hang-up-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--red);
  font-size: 35px;
}

.mobile-video-box-btn {
  background-color: rgba(245, 245, 245, 0.3);
  cursor: pointer;
}
.mobile-video-box-btn-active {
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.local-video-camera-icon,
.local-audio-mic-icon,
.overturn-camera-icon {
  font-size: 30px;
  color: rgb(223, 223, 223);
}
.mobile-video-hangup-icon {
  color: rgb(223, 223, 223);
  transform: rotate(135deg);
}
.micIcon-box,
.cameraIcon-box,
.cameraOverturnIcon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.open-micro-phone .Icon {
  color: rgb(12, 159, 123);
}
.close-micro-phone .Icon {
  color: rgb(181, 181, 181);
}
.open-camera .Icon {
  color: rgb(12, 159, 123);
}
.close-camera .Icon {
  color: rgb(181, 181, 181);
}
.overturn-camera-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.overturn-camera-svg {
  font-size: 18px;
}
.bottom-hang-up {
  margin-top: 15px;
}
#remote-video-container {
  height: 100%;
}
#local-video-container {
  height: 100%;
}
.hide-mobile-box {
  position: absolute;
  top: 17px;
  left: 15px;
  z-index: 12;
}
.hide-mobile-icon {
  font-size: 25px;
  color: aliceblue;
}
.disply-none {
  display: none;
}

/* 定义按钮的基本样式 */
.draggable-floating-button {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: orange;
  color: #fff;
  text-align: center;
  line-height: 50px;
  cursor: move;
  border-radius: 50%;
}

/* 定义拖动时的样式 */
.draggable-floating-button.dragging {
  border: 2px dashed #fff;
}

.chat-theme-view {
    width: 100%;
    height: 60px;
    border: 1px var(--gray-4) solid;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-my-popover-mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.45);*/
}

.chat-my-popover-body {
    background-color: white;
    z-index: 3001;
    position: fixed;
    box-shadow: var(--shadow-3);
    border-radius: 10px;
    overflow: hidden;
}

.chat-my-popover-item {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-2);
    border-bottom: 1px solid var(--gray-8);
    cursor: pointer;
    font-size: 1.1rem;
}

.chat-my-popover-item:hover {
    background-color: var(--gray-8);
}

.chat-my-popover-item:last-child {
    border-bottom: unset;
}

.chat-my-popover-item .Icon,
.chat-my-popover-item svg {
    margin-right: 5px;
}
@font-face{
    font-family: 'sourceHan';
    src: url("https://font/sourcehansans.ttf");
}

.chat-login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #e6e6e6;
}

.chat-login-card {
    min-width: 300px;
}

/* 多行省略 */
.rows-ellipsis {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 这里是超出几行省略 */
    overflow: hidden;
}

.xl-btn {
    width: 100%;
}

.loading {
    width: 100px;
    height: 100px;
    background-color: var(--gray-4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 5px;
    z-index: 999;
}

.loading .anticon-loading {
    color: white;
}

.chat-submit-btn.ant-btn {
    margin: 8px 16px;
    height: 35px;
    border-radius: 35px;
    width: calc(100% - 32px);
}

.margin-bottom-32 {
    margin-bottom: 32px!important;
}

.margin-top-32 {
    margin-top: 32px!important;
}

.margin-top-16 {
    margin-top: 16px!important;
}

.chat-submit-btn {
    /*margin: 8px 16px;*/
    height: 36px;
    border-radius: 35px;
    width: 100%;
    background-color: var(--brand-1);
    border: var(--brand-1) 1px solid;
    color: var(--white);
    cursor: pointer;
}

.chat-submit-btn:hover {
    background-color: var(--brand-2);
    border: var(--brand-2) 1px solid;
}

.ellipsis-sentence {
    overflow: hidden;        /*内容会被修剪，并且其余内容是不可见的*/
    text-overflow:ellipsis;  /*显示省略符号来代表被修剪的文本。*/
    white-space: nowrap;     /*文本不换行*/
}

.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-spinner {
    -moz-appearance: textfield;
}

@media (max-width: 575px){
    .ant-form-item-row.ant-row {
        flex-direction: column;
    }
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector {
    border: var(--gray-6) 1px solid;
    box-shadow: unset;
    border-radius: 6px;
}

.ant-select-focused.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {
    box-shadow: unset;
    clear: unset;
    border: var(--brand-1) 1px solid;
}

.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
    background: var(--brand-3);
}

.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer):hover .ant-select-selector {
    border-color: var(--brand-1);
    box-shadow: unset;
}

/* 滑动条改色 */
.ant-slider:hover.ant-slider-horizontal .ant-slider-track,
.ant-slider .ant-slider-track {
    background-color: var(--brand-1);
}

.ant-slider:hover.ant-slider-horizontal .ant-slider-handle:not(.ant-tooltip-open) {
    border-color: var(--brand-1);
}

.ant-slider .ant-slider-handle {
    border: solid 2px var(--brand-3);
}

.ant-slider .ant-slider-handle,
.ant-slider .ant-slider-handle:hover {
    border-color: var(--brand-1);
}

.ant-slider .ant-slider-handle:focus {
    border-color: var(--brand-1);
    box-shadow: 0 0 0 2px var(--brand-3);
}

.ant-slider .ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) {
    border-color: var(--brand-1);
}

.ant-slider .ant-slider:hover .ant-slider-track {
    background-color: var(--brand-1);
}

.ant-slider .ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) {
    border-color: var(--brand-1);
}

/* 自定义默认Modal样式 */
.chat-modal-primary .ant-modal-footer {
    border-top: none;
}

.chat-modal-primary .ant-modal-header {
    border-bottom: none;
}

.chat-modal-primary .ant-modal-header .ant-modal-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--gray-1);
}

.chat-modal-primary .ant-modal-body {
    padding: 12px 24px;
}

/* 修改ant-btn样式 */
.chat-modal-primary .ant-btn-primary {
    color: #fff;
    border-color: var(--brand-1);
    background: var(--brand-1);
    text-shadow: unset;
    box-shadow: unset;
}

.chat-modal-primary .ant-btn-primary:hover {
    color: var(--brand-1);
    border-color: var(--brand-1);
    background: white;
    text-shadow: unset;
    box-shadow: unset;
}

.chat-modal-primary .ant-btn-default:hover {
    color: var(--brand-1);
    border-color: var(--brand-1);
}

a {
    color: var(--brand-1)!important;
}

a:hover {
    color: var(--brand-2)!important;
}

.chat-primary-btn.ant-btn-primary {
    background: var(--brand-1);
    border-color: var(--brand-1);
    text-shadow: unset;
    box-shadow: unset;
    color: var(--white);
}

.chat-primary-btn.ant-btn-primary:hover {
    background: var(--brand-2);
    border-color: var(--brand-2);
}

::selection {
    background: var(--brand-2)!important;
    color: var(--white);
}

.ant-popover-inner-content {
    padding: 0!important;
}

.ant-input:hover {
    border-color: var(--brand-1)!important;
}

.ant-input:focus, .ant-input-focused {
    border-color: var(--brand-1)!important;
    box-shadow: 0 0 0 2px var(--brand-3)!important;
}

.ant-btn {
    text-shadow: none!important;
    box-shadow: none!important;
}

.ant-btn:hover, .ant-btn:focus {
    color: var(--brand-1)!important;
    border-color: var(--brand-1)!important;
}

.ant-btn-primary,
.ant-btn-primary:hover,
.ant-btn-primary:focus{
    background: var(--brand-1)!important;
    border-color: var(--brand-1)!important;
    color: #fff!important;
}

.ant-switch-checked {
    background-color: var(--brand-1)!important;
}

.ant-modal-content {
    overflow: hidden;
}

.ChatApp .ant-rate {
    color: var(--brand-1);
}
