@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-input-component {
  width: 100%;
  --input-border-color: #eee;
  --input-border-hover-color: #f29cb2;
}
.saki-input-component .si-subtitle {
  color: #666;
  font-size: 14px;
}
.saki-input-component.error .si-error {
  display: block;
}
.saki-input-component input::-webkit-input-placeholder, .saki-input-component input::-moz-placeholder, .saki-input-component input:-ms-input-placeholder, .saki-input-component input::placeholder {
  font-size: var(--saki-input-placeholder-font-size) !important;
}
.saki-input-component .si-input {
  width: 100%;
  position: relative;
}
.saki-input-component .si-input .line {
  display: none;
}
.saki-input-component .si-input.Search input {
  padding-left: 30px;
}
.saki-input-component .si-input.Search .placeholder {
  left: 30px;
  width: calc(100% - 50px);
}
.saki-input-component .si-input.Password input {
  padding-right: 30px;
}
.saki-input-component .si-input.Password .placeholder {
  width: calc(100% - 30px);
}
.saki-input-component .si-input.Range input[type=range] {
  -webkit-appearance: none;
}
.saki-input-component .si-input.Range input[type=range]::-webkit-slider-runnable-track {
  width: var(--saki-input-range-width);
  height: var(--saki-input-range-height);
  background: #eee;
  border: none;
  border-radius: calc(var(--saki-input-range-height) / 2);
}
.saki-input-component .si-input.Range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  width: var(--saki-input-range-thumb);
  height: var(--saki-input-range-thumb);
  border-radius: 50%;
  background: var(--saki-input-range-background-color);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  margin-top: -4px;
}
.saki-input-component .si-input.Textarea {
  overflow: auto;
}
.saki-input-component .si-input.Textarea .placeholder {
  display: block;
}
.saki-input-component .si-input.Textarea.havaValue .placeholder {
  display: none;
}
.saki-input-component .si-input.MoveUp input {
  padding-top: 14px;
}
.saki-input-component .si-input.MoveUp .line {
  display: block;
}
.saki-input-component .si-input.MoveUp .placeholder {
  display: block !important;
  margin-top: 8px;
}
.saki-input-component .si-input.MoveUp .delete-icon {
  margin-top: 8px;
}
.saki-input-component .si-input.MoveUp .showpassword-icon {
  margin-top: 8px;
}
.saki-input-component .si-input.MoveUp.havaValue .line::before {
  width: 100%;
}
.saki-input-component .si-input.MoveUp.havaValue .placeholder {
  top: 4px;
  transform: translateY(0);
  font-size: 12px !important;
  margin-top: 0px;
  color: var(--input-border-hover-color);
}
.saki-input-component .si-input.MoveUp.havaValue .delete-icon {
  opacity: 1;
}
.saki-input-component .si-input.closeIcon input,
.saki-input-component .si-input.closeIcon textarea {
  padding-right: 30px;
}
.saki-input-component .si-input.closeIcon .delete-icon {
  visibility: visible;
}
.saki-input-component .si-input.havaValue .placeholder {
  display: none;
}
.saki-input-component .si-input.focus .delete-icon {
  opacity: 1;
}
.saki-input-component .si-input .placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  left: 0px;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  overflow: hidden;
}
.saki-input-component .si-input .line {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: var(--input-border-color);
}
.saki-input-component .si-input .line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  transition: width 0.4s;
  background-color: var(--input-border-hover-color);
}
.saki-input-component .si-input input {
  border: none;
  width: 100%;
  outline: none;
  height: 100%;
  padding: 0;
}
.saki-input-component .si-input textarea,
.saki-input-component .si-input .textarea {
  border: none;
  width: 100%;
  outline: none;
  padding: 0;
  resize: none;
}
.saki-input-component .si-input .search-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.saki-input-component .si-input .search-icon .icon {
  height: 18px;
  width: 18px;
  fill: #aaa;
  cursor: pointer;
}
.saki-input-component .si-input .delete-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.saki-input-component .si-input .delete-icon .icon {
  height: 18px;
  width: 18px;
  fill: #666;
  cursor: pointer;
}
.saki-input-component .si-input .showpassword-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
  transition: all 0.3s;
}
.saki-input-component .si-input .showpassword-icon .icon {
  height: 18px;
  width: 18px;
  fill: #666;
  cursor: pointer;
}
.saki-input-component .si-error {
  display: none;
  font-size: 12px;
  color: #cd2323;
  margin: 4px 0 0;
}