@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-menu-component {
  width: 100%;
  background-color: #fff;
}
.saki-menu-component.Icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.saki-menu-component.Grid {
  display: grid;
  grid-template-columns: repeat(var(--menu-columnsCount), 1fr);
}

.saki-menu-item-component {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.saki-menu-item-component.Icons, .saki-menu-item-component.Grid {
  align-items: center;
}
.saki-menu-item-component.Icons .item-content, .saki-menu-item-component.Grid .item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.saki-menu-item-component.Icons .item-content .item-c-icon, .saki-menu-item-component.Grid .item-content .item-c-icon {
  margin: 0;
}
.saki-menu-item-component.Icons.active .saki-m-i-title, .saki-menu-item-component.Grid.active .saki-m-i-title {
  border: 1px solid var(--saki-menu-active-border-color);
}
.saki-menu-item-component.List.active .saki-m-i-title {
  background-color: var(--saki-menu-active-background-color);
}
.saki-menu-item-component.List.active .saki-m-i-title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--saki-menu-active-border-color);
  border-radius: 2px;
}
.saki-menu-item-component.LeftLine .saki-m-i-title::after {
  left: 0;
}
.saki-menu-item-component.RightLine .saki-m-i-title::after {
  right: 0;
}
.saki-menu-item-component.disabled {
  color: #ccc;
}
.saki-menu-item-component.disabled .saki-m-i-subtitle {
  color: #ccc;
}
.saki-menu-item-component.disabled .saki-m-i-title .item-content .item-c-icon {
  color: #ccc;
}
.saki-menu-item-component.disabled .saki-m-i-title .item-content .item-c-main .item-c-content {
  color: #ccc;
}
.saki-menu-item-component.disabled .saki-m-i-title .item-content .item-c-main .item-c-label {
  color: #ccc;
}
.saki-menu-item-component.disabled .saki-m-i-title .item-content .item-c-main .item-c-label .right-arrow-icon {
  fill: #ccc;
}

.saki-m-i-subtitle {
  padding: 0 12px;
  color: #aaa;
  font-size: 11px;
  cursor: pointer;
}

.saki-m-i-title {
  cursor: pointer;
  user-select: none;
  padding: 12px 12px;
  position: relative;
  transition: all 0.3s;
  background-color: var(--bg-color);
}
.saki-m-i-title:hover {
  background-color: var(--bg-hover-color);
}
.saki-m-i-title:active {
  background-color: var(--bg-active-color);
}

.item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-content .item-c-icon {
  margin-right: 8px;
  color: #555;
  font-size: 14px;
}
.item-content .item-c-main {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-content .item-c-main .item-c-content {
  flex: 1;
  color: #222;
}
.item-content .item-c-main .item-c-label {
  color: #999;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.item-content .item-c-main .item-c-label .right-arrow-icon {
  margin-left: 2px;
  fill: #999;
}