@charset "UTF-8";
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  --saki-default-color: #f29cb2;
  --saki-default-bottom-border-color: #f29cb2;
  --saki-default-hover-color: #f185a0;
  --saki-default-active-color: #ce5d79;
  --saki-defalut-border-color: #f1f1f1;
  --saki-maintitle-color:#000
  --saki-subtitle-color:#999
  --saki-subtitle-select-color:#222
  /* Button Normal */
  --saki-button-loading-color: #5ec9f0;
  --saki-button-loading-border-color: #f3f3f3;
  --saki-button-normal-bg-color: var(-saki-default-color);
  --saki-button-normal-bg-hover-color: #f1f3f4;
  --saki-button-normal-bg-active-color: #ddd;
  --saki-button-circle-icon-gray-hover-bg-color: #fff;
  --saki-button-circle-icon-gray-hover-bg-hover-color: #f1f3f4;
  --saki-button-circle-icon-gray-hover-bg-active-color: #ddd;
  /* --saki-button-normal-hover-color: #ddd;
  --saki-button-normal-active-color: #ccc; */
  --saki-chat-dialog-right-border-color: var(-saki-default-color);
  --saki-chat-dialog-bg-color: #fff;
  --saki-chat-dialog-bg-hover-color: #f1f3f4;
  --saki-chat-dialog-bg-active-color: #ddd;
  --saki-chat-dialog-bg-select-color: #faebef;
  --saki-chat-dialog-message-color: #999;
  --saki-chat-dialog-time-color: #999;
  --saki-chat-dialog-time-select-color: #999;
  --saki-chat-dialog-context-menu-background-color:#eee;
  --saki-chat-dialog-count-bg-color: #ccc;
  --saki-chat-dialog-count-color: #fff;
  --saki-chat-bubble-left-bg-color:#e9b0be;
  --saki-chat-bubble-right-bg-color:#b3dff0;
  --saki-chat-bubble-content-border-radius:10px;
  --saki-chat-bubble-time-color:#888;
  --saki-chat-bubble-read-progress-color: #f185a0;
  --saki-chat-bubble-loading-color: #f185a0;
  --saki-chat-bubble-loading-active-color: #f3f3f3;
  --saki-chat-header-online-color: #248bb4;
  --saki-call-mini-video-width: 160px;
  --saki-loading-circle-bg-color: #f185a0;
  --saki-loading-circle-active-bg-color: #f3f3f3;
  --saki-menu-active-border-color: var(--saki-default-color);
  --saki-menu-active-background-color: #eee;
  --saki-drag-sort-selected-color: var(--saki-default-color);
}

html,
body {
  width: 100%;
}

*,
*:before,
*:after {
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

.text-elipsis, .text-two-elipsis {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.text-elipsis {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.text-two-elipsis {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.scrollBarDefault {
  overflow: overlay !important;
  /*定义滚动条轨道 内阴影+圆角*/
  /*定义滑块 内阴影+圆角*/
}
.scrollBarDefault::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  background-color: white;
}
.scrollBarDefault::-webkit-scrollbar:hover {
  background-color: rgba(0, 128, 0, 0);
}
.scrollBarDefault::-webkit-scrollbar-track {
  background-color: white;
}
.scrollBarDefault::-webkit-scrollbar-track:hover {
  background-color: rgba(238, 238, 238, 0);
}
.scrollBarDefault::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #ddd;
  transition: all 0.3s;
}
.scrollBarDefault::-webkit-scrollbar-thumb:hover {
  width: 10px;
  border-radius: 4px;
  background-color: #ccc;
}

.scrollBarHover {
  overflow: overlay !important;
  /*定义滚动条轨道 内阴影+圆角*/
  /*定义滑块 内阴影+圆角*/
}
.scrollBarHover:hover::-webkit-scrollbar-thumb {
  background-color: rgba(204, 204, 204, 0.4);
}
.scrollBarHover::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s;
  cursor: pointer;
}
.scrollBarHover::-webkit-scrollbar:hover {
  background-color: rgba(0, 128, 0, 0);
}
.scrollBarHover::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}
.scrollBarHover::-webkit-scrollbar-track:hover {
  background-color: rgba(238, 238, 238, 0);
}
.scrollBarHover::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(221, 221, 221, 0.2);
  transition: all 0.3s;
}
.scrollBarHover::-webkit-scrollbar-thumb:hover {
  width: 10px;
  border-radius: 4px;
  background-color: #cccccc;
}

.scrollBarAuto {
  overflow: overlay;
  /*定义滚动条轨道 内阴影+圆角*/
  /*定义滑块 内阴影+圆角*/
}
.scrollBarAuto:hover::-webkit-scrollbar-thumb {
  background-color: #afafb06e;
}
.scrollBarAuto::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.scrollBarAuto::-webkit-scrollbar:hover {
  background-color: rgba(19, 124, 19, 0);
}
.scrollBarAuto::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}
.scrollBarAuto::-webkit-scrollbar-track:hover {
  background-color: rgba(238, 238, 238, 0);
}
.scrollBarAuto::-webkit-scrollbar-track:hover::-webkit-scrollbar-thumb {
  background-color: #ddd;
}
.scrollBarAuto::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.3s;
}
.scrollBarAuto::-webkit-scrollbar-thumb:hover {
  border-radius: 4px;
  background-color: #afafb0;
}

.scrollBarHidden::-webkit-scrollbar {
  width: 0px;
}

.saki-editor p {
  font-size: 14px;
  margin: 0;
  word-wrap: break-word;
  word-break: break-all;
}

.saki-full-page {
  width: 100%;
  height: 100%;
}

.saki-chat-bubble-component {
  width: 100%;
}
.saki-chat-bubble-component .bubble-center-time {
  text-align: center;
  margin: 18px 0 10px;
  margin-top: calc(var(--vertical-margin) + 14px);
  color: var(--saki-chat-bubble-time-color);
  font-size: 13px;
  cursor: default;
  user-select: none;
}
.saki-chat-bubble-component .bubble-center-time span {
  position: relative;
}
.saki-chat-bubble-component .bubble-center-time span::before, .saki-chat-bubble-component .bubble-center-time span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  opacity: 0.3;
  background-color: var(--saki-chat-bubble-time-color);
}
.saki-chat-bubble-component .bubble-center-time span::before {
  left: -66px;
}
.saki-chat-bubble-component .bubble-center-time span::after {
  right: -66px;
}
.saki-chat-bubble-component .bubble-message {
  display: flex;
  justify-content: flex-start;
  position: relative;
  padding: 0 10px;
  margin: 10px 0 0px;
  margin-top: var(--vertical-margin);
}
.saki-chat-bubble-component .bubble-message.selected .bubble-c-msg {
  position: relative;
}
.saki-chat-bubble-component .bubble-message.selected .bubble-c-msg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.saki-chat-bubble-component .bubble-message.selected .bubble-c-msg {
  position: relative;
}
.saki-chat-bubble-component .bubble-message.selected .bubble-c-msg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.saki-chat-bubble-component .bubble-message.sender {
  flex-flow: row-reverse;
}
.saki-chat-bubble-component .bubble-message.sender .bubble-m-userinfo {
  padding-right: 20px;
}
.saki-chat-bubble-component .bubble-message.sender .bubble-m-userinfo .bubble-u-avatar {
  margin-left: 10px;
}
.saki-chat-bubble-component .bubble-message.sender .bubble-m-main .bubble-time {
  text-align: right;
  right: 0;
}
.saki-chat-bubble-component .bubble-message.sender .bubble-m-main .bubble-content {
  padding-left: var(--horizontal-margin);
  position: relative;
}
.saki-chat-bubble-component .bubble-message.sender .bubble-m-main .bubble-content .bubble-c-msg {
  background-color: var(--saki-chat-bubble-right-bg-color);
}
.saki-chat-bubble-component .bubble-message.sender .bubble-time-hover {
  right: 60px;
}
.saki-chat-bubble-component .bubble-message.receiver .  {
  padding-left: 20px;
}
.saki-chat-bubble-component .bubble-message.receiver .  .bubble-u-avatar {
  margin-right: 10px;
}
.saki-chat-bubble-component .bubble-message.receiver .bubble-m-main .bubble-time {
  text-align: left;
  left: 0;
}
.saki-chat-bubble-component .bubble-message.receiver .bubble-m-main .bubble-content {
  padding-right: var(--horizontal-margin);
  position: relative;
}
.saki-chat-bubble-component .bubble-message.receiver .bubble-m-main .bubble-content .bubble-c-msg {
  background-color: var(--saki-chat-bubble-left-bg-color);
}
.saki-chat-bubble-component .bubble-message.receiver .bubble-time-hover {
  left: 60px;
}
.saki-chat-bubble-component .bubble-message.showTime {
  margin: 6px 0 0px;
}
.saki-chat-bubble-component .bubble-message.showTime .bubble-m-main {
  padding-top: 20px;
}
.saki-chat-bubble-component .bubble-message.showTime .bubble-m-main .bubble-time {
  display: block;
}
.saki-chat-bubble-component .bubble-message.showUserInfo .bubble-m-userinfo .bubble-u-avatar {
  display: block;
}
.saki-chat-bubble-component .bubble-message:hover.showTime .bubble-m-main .bubble-time .full-time {
  display: block;
}
.saki-chat-bubble-component .bubble-message:hover.showTime .bubble-m-main .bubble-time .short-time {
  visibility: hidden;
}
.saki-chat-bubble-component .bubble-message .bubble-m-userinfo {
  width: 46px;
}
.saki-chat-bubble-component .bubble-message .bubble-m-userinfo .bubble-u-avatar {
  display: none;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main {
  max-width: calc(100% - var(--horizontal-margin));
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 4px;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-time {
  width: 200px;
  text-align: center;
  font-size: 13px;
  display: none;
  color: var(--saki-chat-bubble-time-color);
  margin: 0px 0 2px;
  cursor: default;
  position: absolute;
  top: 0;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-time .full-time {
  display: none;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content {
  position: relative;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status.receiver .bubble-c-s-readstatus {
  right: calc(var(--horizontal-margin) - 16px);
  left: auto;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status.receiver .bubble-c-s-resend-icon {
  right: calc(var(--horizontal-margin) - 16px);
  left: auto;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status.receiver .bubble-c-s-loading {
  right: calc(var(--horizontal-margin) - 16px);
  left: auto;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status .bubble-c-s-readstatus {
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 0;
  left: calc(var(--horizontal-margin) - 16px);
  cursor: pointer;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status .bubble-c-s-readstatus .bubble-c-s-readstatus-icon {
  position: absolute;
  top: -2px;
  right: 0px;
  width: 14px;
  height: 14px;
  fill: var(--saki-chat-bubble-read-progress-color);
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status .bubble-c-s-readstatus .bubble-c-s-progress-bar .bubble-c-s-progress-bar-icon {
  width: 8px;
  height: 8px;
  fill: var(--saki-chat-bubble-read-progress-color);
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status .bubble-c-s-resend-icon {
  width: 12px;
  height: 12px;
  bottom: 0;
  left: calc(var(--horizontal-margin) - 16px);
  position: absolute;
  transition: all 0.3s;
  cursor: pointer;
  fill: var(--saki-chat-bubble-loading-color);
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-status saki-animation-loading {
  position: absolute;
  left: calc(var(--horizontal-margin) - 16px);
  bottom: 0;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg {
  overflow: hidden;
  position: relative;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg::after {
  content: "";
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg .bubble-c-msg-call {
  cursor: default;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg .bubble-c-msg-call .icon {
  width: 22px;
  height: 22px;
  fill: #7c8092;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg .bubble-c-msg-call .bubble-c-msg-call-content {
  flex: 1;
  text-align: center;
  position: relative;
  user-select: none;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg .bubble-c-msg-call .bubble-c-msg-call-content .bubble-c-msg-call-msg {
  opacity: 1;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg .bubble-c-msg-call .bubble-c-msg-call-content::after {
  content: attr(data-hover-text);
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
  color: #2254f4;
  cursor: pointer;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg .bubble-c-msg-call.hover:hover .bubble-c-msg-call-content .bubble-c-msg-call-msg {
  opacity: 0;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-content .bubble-c-msg .bubble-c-msg-call.hover:hover .bubble-c-msg-call-content::after {
  opacity: 1;
}
.saki-chat-bubble-component .bubble-message .bubble-m-main .bubble-time-hover {
  position: absolute;
  top: -14px;
  font-size: 13px;
  color: var(--saki-chat-bubble-time-color);
  transition: opacity 0.2s;
}

.saki-chat-bubble-file-component {
  position: relative;
}
.saki-chat-bubble-file-component .cbf-image img {
  display: block;
  width: var(--saki-chat-bubble-file-width);
  max-width: var(--saki-chat-bubble-file-max-width);
  max-height: calc(var(--saki-chat-bubble-file-width) * 16 / 9);
  object-fit: cover;
}
.saki-chat-bubble-file-component .cbf-video video {
  width: 240px;
  object-fit: cover;
}
.saki-chat-bubble-file-component .cbf-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #50a4e0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-icon .icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 10px;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right .cbf-f-r-top {
  color: #333;
  font-weight: 600;
  word-break: break-all;
  padding: 0 0 6px 0;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right .cbf-f-r-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right .cbf-f-r-bottom .cbf-f-r-b-size {
  font-size: 13px;
  color: #888;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right .cbf-f-r-bottom .cbf-f-r-b-tag {
  margin: 0 4px;
  font-size: 13px;
  color: #aaa;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right .cbf-f-r-bottom .cbf-f-r-b-progress {
  font-size: 13px;
  color: #5ec9f0;
  font-weight: 600;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right .cbf-f-r-bottom .cbf-f-r-b-expiration {
  font-size: 13px;
  color: #aaa;
  white-space: nowrap;
}
.saki-chat-bubble-file-component .cbf-file .cbf-f-right .cbf-f-r-bottom .cbf-f-r-b-download {
  font-size: 13px;
  color: #5ec9f0;
  font-weight: 600;
  cursor: pointer;
}
.saki-chat-bubble-file-component .cbf-progress {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.saki-chat-bubble-file-component .cbf-p-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.saki-chat-bubble-reply-component {
  width: 100%;
  height: 50px;
  flex-direction: column;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  user-select: none;
}
.saki-chat-bubble-reply-component::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #999;
  height: 1px;
  width: 100%;
}
.saki-chat-bubble-reply-component .cr-reply-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-right: 10px;
  cursor: pointer;
}
.saki-chat-bubble-reply-component .cr-nickname {
  font-weight: 500;
  color: #333;
  font-size: 12px;
}
.saki-chat-bubble-reply-component .cr-message {
  color: #555;
  font-style: italic;
  margin-bottom: 4px;
}