@charset "UTF-8";:root {  --font-size-lg: 15px;  --font-size-md: 14px;  --font-size-sm: 13px;  --title-font-size-sm: 18px;  --title-font-size-md: 20px;  --title-font-size-lg: 24px;  --title-font-size-lg-1: 28px;  --title-font-size-lg-2: 36px;  --star-link-color: #409EFF;}._star-preload {  display: none !important;}@keyframes _starWave {  0% {    transform: rotate(0deg) translateY(0);  }  50% {    transform: rotate(20deg) translateY(-15px);  }  100% {    transform: rotate(0deg) translateY(0);  }}@keyframes buttonWave {  99% {    transform: scale(2);    opacity: 0;  }  100% {    transform: scale(1);    opacity: 0;  }}@keyframes shake {  10%, 90% {    transform: translateX(1px);  }  20%, 80% {    transform: translateX(-1px);  }  30%, 50%, 70% {    transform: translateX(2px);  }  40%, 60% {    transform: translateX(-2px);  }}/* 动画效果 */@keyframes fadeInBottom {  0% {    opacity: 0;    -webkit-transform: translate3d(0, 12%, 0);    transform: translate3d(0, 12%, 0);  }  to {    opacity: 1;    -webkit-transform: translateY(0);    transform: translateY(0);  }}@keyframes fadeInTop {  0% {    opacity: 0;    -webkit-transform: translate3d(0, -50%, 0);    transform: translate3d(0, -50%, 0);  }  to {    opacity: 1;    -webkit-transform: translateY(0);    transform: translateY(0);  }}@keyframes fadeOutTop {  0% {    opacity: 1;    -webkit-transform: translateY(0);    transform: translateY(0);  }  to {    opacity: 0;    -webkit-transform: translate3d(0, -50%, 0);    transform: translate3d(0, -50%, 0);  }}@keyframes fadeOutBottom {  0% {    opacity: 1;    -webkit-transform: translateY(0);    transform: translateY(0);  }  to {    opacity: 0;    -webkit-transform: translate3d(0, 12%, 0);    transform: translate3d(0, 12%, 0);  }}/* 动画效果 */@keyframes fadeInLeft {  0% {    opacity: 0;    -webkit-transform: translate3d(-100%, 0, 0);    transform: translate3d(-100%, 0, 0);  }  to {    opacity: 1;    -webkit-transform: translateZ(0);    transform: translateZ(0);  }}@keyframes fadeOutLeft {  0% {    opacity: 1;    -webkit-transform: translateZ(0);    transform: translateZ(0);  }  to {    opacity: 0;    -webkit-transform: translate3d(-5%, 0, 0);    transform: translate3d(-5%, 0, 0);  }}@keyframes fadeInRight {  0% {    opacity: 0;    z-index: -1;    -webkit-transform: translate3d(20%, 0, 0);    transform: translate3d(20%, 0, 0);  }  to {    opacity: 1;    z-index: 1;    -webkit-transform: translateZ(0);    transform: translateZ(0);  }}@keyframes fadeOutRight {  0% {    opacity: 1;    -webkit-transform: translateZ(0);    transform: translateZ(0);  }  to {    opacity: 0;    -webkit-transform: translate3d(5%, 0, 0);    transform: translate3d(5%, 0, 0);  }}@keyframes fadeIn {  0% {    opacity: 0;  }  to {    opacity: 1;  }}@keyframes rotate {  from {    transform: rotate(0deg);    transform-origin: center center;  }  to {    transform: rotate(360deg);    transform-origin: center center;  }}/* 悬浮标签 */._star-chat-open-label {  position: fixed;  box-sizing: border-box;  height: 36px;  bottom: 61px;  z-index: 9997;  white-space: nowrap;  font-size: 17px;  line-height: 17px;  border-radius: 16px;  padding: 10px 15px;  box-shadow: rgba(0, 18, 46, 0.24) 0px 6px 32px 0px;  background: rgb(255, 255, 255);}._star-chat-open-label._star-position-left {  left: 95px;}._star-chat-open-label._star-position-right {  right: 95px;}/* 浮动按钮 */._star-chat-open {  position: fixed;  z-index: 9999;  cursor: pointer;}._star-chat-open ._star-chat-unread {  position: absolute;  top: 0;  right: 0;  z-index: 1;  display: none;  align-items: center;  justify-content: center;  width: 20px;  height: 20px;  background-color: red;  color: white;  font-size: 13px;  line-height: 24px;  border-radius: 50%;}._star-chat-open._star-position-left {  left: 24px;  bottom: 50px;}._star-chat-open._star-position-right {  right: 24px;  bottom: 50px;}._star-chat-open._star-clicked ._star-btn-wave {  animation: 0.5s ease-out 0s 1 normal none running buttonWave;}._star-chat-open ._star-btn-wave {  position: absolute;  z-index: -1;  width: 60px;  height: 60px;}._star-chat-open ._star-btn-wave:after {  content: " ";  position: absolute;  width: 100%;  height: 100%;  border-radius: 50%;  background-color: rgb(20, 127, 255);  opacity: 0.5;}._star-chat-open ._star-chat-btn {  width: 60px;  height: 60px;  border-radius: 50%;  pointer-events: initial;  background-size: 130% 130%;  transition: all 0.2s ease-in-out 0s;  position: relative;  color: rgb(0, 125, 252);  background: linear-gradient(135deg, rgb(42, 39, 218), rgb(0, 204, 255));  box-shadow: rgba(0, 77, 255, 0.5) 0px 4px 24px;}._star-chat-open ._star-chat-btn ._star-icons {  width: 100%;  height: 100%;  position: absolute;  display: flex;  align-items: center;  justify-content: center;  top: 0;  left: 0;  opacity: 0;}._star-chat-open ._star-chat-btn ._star-icons._closed {  opacity: 1;}._star-chat-open ._star-chat-btn ._type-1:after {  display: block;  content: " ";  position: absolute;  width: 100%;  height: 100%;  border-radius: 50%;  background: rgb(255, 255, 255);  transition: all 0.2s ease-in-out 0s;  transform: scale(0);}._star-chat-open ._star-chat-btn:hover ._type-1:after {  transform: scale(1);}._star-chat-open ._star-chat-btn svg {  transition: all 0.2s ease-in-out 0s;}._star-chat-open ._star-chat-btn i._type-1 svg {  width: 30px;  height: 28px;  fill: currentcolor;}._star-chat-open ._star-chat-btn i._type-2 svg {  width: 32px;  height: 32px;  fill: currentcolor;  transform: scale(0);}._star-chat-open ._star-chat-btn:hover i._type-2 svg {  transform: scale(1);}._star-chat-open._star-chat-status-open._star-position-left {  left: 390px;  bottom: 50px;  animation: fadeIn 0.3s;}._star-chat-open._star-chat-status-open ._star-icons._closed {  opacity: 0;}._star-chat-open._star-chat-status-open ._star-icons._opened {  opacity: 1;}._star-quick-keywords {  padding-top: 8px;  display: flex;  grid-gap: 5px;  flex-wrap: wrap;  padding-bottom: 10px;}._star-quick-keywords > div {  border: 1px solid #333333;  border-radius: 8px;  padding: 2px 8px;  color: #666666;  font-size: 13px;  max-width: 350px;  word-break: break-all;  white-space: break-spaces;  cursor: pointer;}._star-quick-keywords > div label {  cursor: pointer;  margin-bottom: 0;}._star-quick-keywords > div span {  display: none;  margin-bottom: 0;}._star-quick-keywords > div:hover {  border-color: var(--star-link-color);  opacity: 0.8;}/* 开始聊天 */._star-chat-start {  width: 372px;  position: fixed;  z-index: 9998;  border-radius: 16px;  pointer-events: auto;  box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 22px 0px;  overflow: hidden;  display: none;  font-size: var(--font-size-md);}._star-chat-start ._star-emoji {  top: -200px;}._star-chat-start ._star-emoji ._star-emoji-list {  height: 150px;}._star-chat-start._star-position-left {  left: 48px;  bottom: 26px;}._star-chat-start._star-position-right {  right: 48px;  bottom: 26px;}._star-chat-start ._star-chat-header {  color: white;  background: linear-gradient(135deg, rgb(42, 39, 218) 0%, rgb(0, 204, 255) 100%);  padding: 24px 28px 0px;  position: relative;}._star-chat-start ._star-chat-header ._star-banner {  width: 100%;  height: 100%;  position: absolute;  top: 0px;  left: 0px;  border-radius: 8px 8px 0px 0px;  overflow: hidden;  opacity: 0.16;  background-size: cover;  background-image: url("https://www.tidio.com/media/img/bg1.jpg");}._star-chat-start ._star-chat-header ._star-h2-banner {  font-size: var(--title-font-size-lg-1);  margin: 6px 0 16px;  padding-top: 4px;  display: inline-block;  position: relative;  max-width: calc(100% - 100px);  line-height: 34px;  overflow-wrap: break-word;  padding-left: 14px;}._star-chat-start ._star-chat-header ._star-h2-banner-many {  font-size: 22px;  font-weight: bold;  line-height: 26px;}._star-chat-start ._star-chat-header ._star-start-message {  color: currentColor;  font-size: var(--font-size-lg);  margin: 0px 0px 32px;  line-height: 22px;  position: relative;  padding-left: 14px;  padding-right: 100px;}._star-chat-start ._star-chat-header ._star-header-operator {  display: flex;  position: absolute;  top: 84px;  right: 42px;}._star-data-modal {  box-sizing: border-box;  position: absolute;  display: none;  top: 0;  left: 0;  right: 0;  bottom: 0;  justify-content: center;  align-items: center;  height: 100%;  width: 100%;  overflow-y: auto;  overflow-x: hidden;  z-index: 10;  background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) center top/100% 40px no-repeat, linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) center bottom/100% calc(100% - 40px) rgb(255, 255, 255);  padding: 50px 55px;  background-repeat: no-repeat;  background-position: center top, center bottom;  background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)), linear-gradient(118deg, rgb(42, 39, 218), rgb(0, 204, 255));}._star-data-modal ._star-btn-close {  display: none;}._star-data-modal._star-data-modal-hide-close ._star-data-modal-close {  display: none;}._star-data-modal._star-data-modal-hide-close ._star-btn-close {  display: block;  position: absolute;  right: 16px;  top: 16px;  cursor: pointer;}._star-data-modal._star-data-modal-hide-close ._star-btn-close svg {  width: 22px;  height: 22px;  transform: rotate(270deg) translate(3px, 0px);  fill: currentColor;}._star-data-modal ._star-data-modal-filler {  width: 280%;  background-color: rgb(255, 255, 255);  display: block;  position: absolute;  left: -90%;  top: 0;  height: calc(100% - 30px);  z-index: -1;  border-radius: 0px 0px 53% 53%;  background-clip: padding-box;}._star-data-modal ._star-data-modal-close {  position: absolute;  right: 16px;  top: 16px;  cursor: pointer;}._star-data-modal ._star-data-modal-close svg {  width: 17px;  height: 17px;  fill: rgb(109, 126, 158);  position: static;  top: 10px;  left: 12px;}._star-data-modal ._star-always-online {  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;}._star-data-modal ._star-always-online ._star-data-modal-operator {  margin-bottom: 26px;}._star-data-modal ._star-always-online ._star-data-modal-text {  font-size: 20px;  font-weight: 600;  text-align: center;  color: rgb(0, 18, 46);  margin: 0 auto 32px;  word-wrap: break-word;  max-width: 90%;}._star-data-modal ._star-always-online ._star-data-modal-fields {  position: relative;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper {  position: relative;  display: flex;  align-items: flex-start;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper._star-field-wrapper-gdpr {  cursor: pointer;  margin-top: 15px;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper input[type=checkbox] {  width: 16px;  height: 16px;  margin: 2px 0 0 0;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-gbpr {  padding: 2px 8px;  font-size: 13px;  flex: 1;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-gbpr span {  display: none;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-gbpr a {  margin: 0 2px;  text-decoration: underline;  color: rgb(0, 125, 252);}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-success svg {  fill: green;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-success ._star-ic-arrow {  display: none;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-success ._star-ic-success-check {  display: block;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-error {  animation: 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0s 1 normal both running shake;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-error svg {  fill: red;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-error ._star-ic-arrow {  display: none;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-error ._star-ic-close {  display: block;}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-field-wrapper-error input {  border-color: rgb(246, 48, 58);}._star-data-modal ._star-always-online ._star-data-modal-fields ._star-ic-arrow {  display: block;  transform: rotate(45deg);}._star-data-modal ._star-always-online ._star-data-modal-fields svg {  position: absolute;  top: 8px;  left: 9px;  width: 24px;  height: 24px;  fill: rgb(0, 125, 252);  display: none;}._star-data-modal ._star-always-online ._star-data-modal-fields input {  width: 100%;  border: 1px solid rgba(108, 125, 159, 0.24);  font-size: 15px;  padding: 9px 12px 10px 40px;  margin: 0px 0px 8px;  line-height: normal;}._star-data-modal ._star-always-online ._star-data-modal-fields input:focus {  outline: 0px;}._star-data-modal ._star-always-online ._star-data-modal-submit {  width: 100%;  height: 40px;  font-size: 16px;  font-weight: 600;  color: rgb(255, 255, 255);  border-radius: 6px;  background: linear-gradient(99deg, rgb(42, 39, 218), rgb(0, 204, 255));  margin: 16px 0px;  position: relative;  display: flex;  align-items: center;  justify-content: center;  cursor: pointer;}._star-chat-other-qrcode {  position: absolute;  width: 120px;  height: 120px;  padding: 5px;  display: none;  background-color: #FFFFFF;  border-radius: 5px;  box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 22px 0px;  z-index: 1;}._star-chat-other-qrcode img {  width: 100%;}._star-chat-other {  position: relative;  margin: 0 -5px;}._star-chat-other ._star-chat-other-apps {  display: flex;  align-items: center;  flex-wrap: wrap;}._star-chat-other ._star-chat-other-app {  display: inline-block;  background-color: #efefef;  margin-bottom: 5px;  padding: 4px 8px;  border-radius: 20px;  font-size: 13px;}._star-chat-other ._star-chat-other-app > div {  display: flex;  align-items: center;  cursor: pointer;  user-select: none;}._star-chat-other ._star-chat-other-app > div:hover {  opacity: 0.7;}._star-chat-other ._star-chat-other-app > div svg {  margin-right: 5px;}._star-chat-input {  box-sizing: border-box;  width: 100%;  position: relative;  background: white;  padding: 20px 18px 18px;  flex-shrink: 0;}._star-chat-input ._star-footer-bottom {  height: 42px;  position: relative;  display: flex;  justify-content: space-between;  align-items: center;}._star-chat-input ._star-footer-bottom ._star-btn-box {  display: flex;  align-items: center;}._star-chat-input ._star-footer-bottom ._star-btn-box input {  position: absolute;  display: none;  top: 0;  left: 0;  right: 0;  bottom: 0;  cursor: pointer;}._star-chat-input ._star-footer-bottom ._star-btn {  cursor: pointer;  margin-right: 5px;  position: relative;}._star-chat-input ._star-footer-bottom ._star-btn:hover svg {  fill: rgb(88, 88, 88);}._star-chat-input ._star-footer-bottom ._star-btn.active svg {  fill: rgb(0, 125, 252);}._star-chat-input ._star-footer-bottom ._star-btn svg {  fill: rgb(136, 148, 171);}._star-chat-input ._star-footer-bottom ._star-power-by {  color: lightgray;  user-select: none;  font-size: 13px;  padding-right: 30px;  display: flex;  align-items: center;}._star-chat-input ._star-footer-bottom ._star-power-by a {  cursor: pointer;}._star-chat-input ._star-footer-bottom ._star-power-by img {  margin-left: 10px;  height: 16px;}._star-chat-input textarea {  border: 0px;  width: 100%;  height: 80px;  font-size: var(--font-size-lg);  font-family: inherit;  resize: none;  line-height: 24px;  min-height: 80px;  overflow-x: hidden;}._star-chat-input textarea._star-chat-input-error {  animation: 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0s 1 normal both running shake;}._star-chat-input textarea:focus, ._star-chat-input textarea:active {  border: 0px;  outline: 0px;}._star-chat, ._star-chat-start {  background-color: white;}._star-chat div::-webkit-scrollbar-track-piece, ._star-chat-start div::-webkit-scrollbar-track-piece {  background-color: rgb(242, 242, 242);  opacity: 1;}._star-chat div::-webkit-scrollbar, ._star-chat-start div::-webkit-scrollbar {  width: 8px;  height: 8px;  transition: 3s;  background-color: #7f7f7f;}._star-chat div::-webkit-scrollbar-thumb, ._star-chat-start div::-webkit-scrollbar-thumb {  background-color: rgba(144, 147, 153, 0.4);  border-radius: 20px;  opacity: 0;}._star-chat textarea::-webkit-scrollbar, ._star-chat-start textarea::-webkit-scrollbar {  display: none;}._star-header-action {  display: flex;  align-items: center;  position: absolute;  top: 20px;  right: 20px;}._star-header-action ._star-btn {  position: relative;  display: flex;  align-items: center;  color: white;  cursor: pointer;}._star-header-action ._star-btn:last-child {  margin-left: 15px;}._star-header-action ._star-btn:last-child svg {  width: 22px;  height: 22px;  transform: rotate(270deg) translate(3px, 0px);}._star-header-action ._star-btn svg {  width: 26px;  height: 26px;  fill: currentColor;}._star-header-action ._star-btn:before {  display: block;  content: " ";  position: absolute;  background: rgba(0, 36, 92, 0.16);  width: 40px;  height: 40px;  border-radius: 50%;  z-index: -1;  transition: all 0.16s ease-in-out 0s;  transform: scale(0);  top: calc(50% - 20px);  left: calc(50% - 20px);}._star-header-action ._star-btn:hover:before {  z-index: 1;  transform: scale(1);}._star-offline-message {  padding: 14px 28px 20px;  background-image: linear-gradient(135deg, rgba(42, 39, 218, 0.72) 0%, rgba(0, 204, 255, 0.72) 100%);  margin: 18px -28px 0px;  color: currentcolor;  padding: 14px 28px 20px;  position: relative;  background-size: 100% calc(100% + 12px);}._star-offline-message > span {  position: relative;  word-break: break-all;  display: flex;  align-items: center;}._star-offline-message .offline {  display: none;}._star-offline-message .online {  padding-left: 20px;}._star-offline-message .online:after {  content: "";  display: block;  width: 8px;  height: 8px;  position: absolute;  top: calc(50% - 4px);  background: rgb(88, 183, 67);  border-radius: 50%;  left: 0px;}._star-offline-message:after {  content: " ";  position: absolute;  width: calc(100% + 10px);  bottom: -8px;  left: -5px;  border-image-source: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNzIgMTUiPgogIDxwYXRoIGQ9Ik0zNDkuOCAxLjRDMzM0LjUuNCAzMTguNSAwIDMwMiAwaC0yLjVjLTkuMSAwLTE4LjQuMS0yNy44LjQtMzQuNSAxLTY4LjMgMy0xMDIuMyA0LjctMTQgLjUtMjggMS4yLTQxLjUgMS42Qzg0IDcuNyA0MS42IDUuMyAwIDIuMnY4LjRjNDEuNiAzIDg0IDUuMyAxMjguMiA0LjEgMTMuNS0uNCAyNy41LTEuMSA0MS41LTEuNiAzMy45LTEuNyA2Ny44LTMuNiAxMDIuMy00LjcgOS40LS4zIDE4LjctLjQgMjcuOC0uNGgyLjVjMTYuNSAwIDMyLjQuNCA0Ny44IDEuNCA4LjQuMyAxNS42LjcgMjIgMS4yVjIuMmMtNi41LS41LTEzLjgtLjUtMjIuMy0uOHoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);  border-image-slice: 0 0 100%;  border-image-width: 0 0 15px;  border-image-repeat: stretch;  border-width: 0px 0px 15px;  border-bottom-style: solid;  border-color: initial;  border-top-style: initial;  border-left-style: initial;  border-right-style: initial;}._star-chat-show._star-position-right {  animation: fadeInRight 0.3s;}._star-chat-show._star-position-left {  animation: fadeInLeft 0.3s;}._star-chat-show._star-fade-in {  animation: fadeIn 0.3s;}._star-chat-hidden {  opacity: 0;  z-index: -1;  display: none !important;}._star-chat-hidden._star-position-left {  animation: fadeOutLeft 0.5s;}._star-chat-hidden._star-position-right {  animation: fadeOutRight 0.5s;}._star-chat, ._star-chat-start {  display: flex;  flex-direction: column;}._star-chat._star-position-right, ._star-chat-start._star-position-right {  right: 48px;  bottom: 26px;}._star-chat._star-position-left, ._star-chat-start._star-position-left {  left: 48px;  bottom: 26px;}._star-chat {  width: 372px;  max-width: 100%;  height: 770px;  position: fixed;  border-radius: 16px;  pointer-events: auto;  box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 22px 0px;  overflow: hidden;  opacity: 1;  z-index: 9998;  font-size: var(--font-size-md);}._star-chat * {  box-sizing: border-box;}._star-chat ._star-offline-message {  margin-top: 5px;}._star-chat ._star-chat-input {  padding: 5px 18px 0 18px;}._star-chat._star-chat-status-started {  display: none;}._star-chat ._star-chat-header {  color: white;  background: linear-gradient(135deg, rgb(42, 39, 218) 0%, rgb(0, 204, 255) 100%);  padding: 24px 28px 0px;}._star-chat ._star-chat-operator {  display: flex;  align-items: center;}._star-chat ._star-chat-operator ._star-name {  display: flex;  flex-direction: column;  width: 200px;  padding-left: 20px;  max-height: 40px;  display: -webkit-box;  overflow: hidden;  text-overflow: ellipsis;  -webkit-box-orient: vertical;  -webkit-line-clamp: 2;}._star-chat ._star-chat-operator h2 {  font-size: var(--font-size-lg);}._star-chat ._star-conversation {  box-sizing: border-box;  padding: 0 12px;  width: 100%;  flex: 1;  overflow: hidden auto;  background: white;  transition: all 0.3s ease 0s;  position: relative;}._star-chat ._star-conversation ._star-loading {  position: absolute;  top: 0;  bottom: 0;  left: 0;  right: 0;  margin: auto;  z-index: 1;  width: 32px;  height: 32px;  animation: rotate 1s infinite linear;  transform-origin: center center;  opacity: 0.8;}._star-chat .hr {  width: 90%;  margin: 0 auto;  border-bottom: 1px solid rgb(219, 223, 230);}._star-chat-avatar {  width: 66px;  height: 66px;  border-radius: 50%;  display: flex;  background-color: white;  background-repeat: no-repeat;  background-size: cover;  background-position: center center;  background-image: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAMDAwMDAwQEBAQFBQUFBQcHBgYHBwsICQgJCAsRCwwLCwwLEQ8SDw4PEg8bFRMTFRsfGhkaHyYiIiYwLTA+PlQBAwMDAwMDBAQEBAUFBQUFBwcGBgcHCwgJCAkICxELDAsLDAsRDxIPDg8SDxsVExMVGx8aGRofJiIiJjAtMD4+VP/CABEIADwAPAMBIgACEQEDEQH/xAAcAAEAAQUBAQAAAAAAAAAAAAAABgEDBAUHAgn/2gAIAQEAAAAA+lYAj8cy5ndHO8VNN0IFrk62gjEYudH9iLQPN6lec+0VmtG038L9UpWh/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/aAAgBAhAAAAAAAP/EABQBAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQMQAAAAAAD/xAAuEAABAwMACAUEAwAAAAAAAAABAgMEAAURBhASEyAhQVEiMmKRwSNxcoExQqH/2gAIAQEAAT8A14PHdbuuMvcMY2wPGs88Z6ClT5qzlUh0n8qjXmawoFay8jqlfwaZebkNIdbOUrGRwCpxJmySf53qtdgJNu+zq+G7N7u4yPUoK9xrsyC3bWfUVL9zw6QxiS1IA5Y2F/Gpplb7qGkeZasCkNpabQhPlQkJH64CMDJ5DvWkk+Gu3uRm3wp5ak42Dkp2TnJNC4S2hhyPvT0Wg4z9xVqmuN3SNJl/TabUcITzxkY2j3piRHkjLLrbg9Ks1gjVL0nnvLVuAllHTllf7Jp+VKknLz7jn5K+KAAGNY8JykkHuDg0xe7rG5JkqUB/VY2x/tR9LkBvEmMsud2/KfeumrtXSu9dKFZNf//EABQRAQAAAAAAAAAAAAAAAAAAAED/2gAIAQIBAT8AB//EABQRAQAAAAAAAAAAAAAAAAAAAED/2gAIAQMBAT8AB//Z);}._star-submit-success {  display: none;  align-items: center;  justify-content: center;  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: rgba(80, 80, 80, 0.8);  z-index: 10;}._star-submit-success ._star-submit-success-modal {  position: relative;  width: 200px;  padding: 20px;  background: #FFFFFF;  border-radius: 5px;  box-shadow: rgba(0, 18, 46, 0.24) 0px 3px 32px 0px;}._star-submit-success ._star-submit-success-modal ._star-submit-success-close {  position: absolute;  top: 10px;  right: 10px;  cursor: pointer;  opacity: 0.4;}._star-submit-success ._star-submit-success-modal ._star-submit-success-close:hover {  opacity: 0.8;}._star-submit-success ._star-submit-success-modal ._star-submit-success-title {  text-align: center;  font-size: 18px;  font-weight: bold;  margin: 10px 0;}._star-submit-success ._star-submit-success-modal ._star-submit-success-text {  text-align: center;  margin-bottom: 20px;}._star-submit-success ._star-submit-success-modal ._star-submit-success-icon {  display: flex;  justify-content: center;  margin-top: 10px;  padding: 10px;}._star-messages {  margin-top: 10px;  padding-bottom: 24px;}._star-messages ._star-messages-empty {  width: 100%;  margin-top: 30px;  text-align: center;  display: none;}._star-messages ._star-chat-message-wrap {  display: flex;  justify-content: flex-start;  margin-bottom: 16px;}._star-messages ._star-chat-message-wrap:not(._star-chat-me) .web-channel-text a {  color: blue !important;}._star-messages ._star-chat-message-wrap._star-chat-me {  justify-content: flex-end;}._star-messages ._star-chat-message-wrap._star-chat-me ._star-chat-message {  align-items: flex-end;}._star-messages ._star-chat-message-wrap._star-chat-me ._star-chat-message-time {  padding-right: 10px;  padding-left: 0px;}._star-messages ._star-chat-message-wrap._star-chat-me ._star-chat-message-body {  background: linear-gradient(135deg, rgb(42, 39, 218), rgb(0, 204, 255));  color: white;}._star-messages ._star-chat-message {  max-width: 80%;  display: flex;  flex-direction: column;  align-items: flex-start;}._star-messages ._star-chat-message ._star-chat-message-time {  animation: fadeInTop 0.25s;  padding-top: 5px;  padding-left: 10px;  opacity: 0.7;}._star-messages ._star-chat-message ._star-chat-message-time._star-chat-message-time-close {  animation: fadeOutTop 0.25s;}._star-messages ._star-chat-message ._star-chat-message-body {  padding: 2px;  border-radius: 20px;  margin: 2px 0px;  font-size: var(--font-size-md);  line-height: 20px;  overflow-wrap: break-word;  display: inline-block;  max-width: 100%;  transition: margin 0.28s ease-in-out 0s;  color: rgb(6, 19, 43);  background: rgb(240, 242, 247);}._star-messages ._star-chat-message ._star-chat-message-body.body_VIDEO {  background: none !important;}._star-chat-message .web-body {  background-color: #ffffff;}._star-chat-message .web-body.body_AUDIO {  background-color: transparent;}._star-chat-message .web-body.body_QUICK_REPLY {  background-color: transparent;}._star-chat-message .web-body.body_QUICK_REPLY .web-channel-text {  background-color: rgb(240, 242, 247);  padding: 8px 10px;  border-radius: 10px;}._star-chat-message .web-channel-form {  width: 250px;  padding: 10px 16px;}._star-chat-message .web-channel-form .web-channel-form-items {  margin-top: 10px;}._star-chat-message .web-channel-form .web-channel-form-items .web-channel-form-input {  color: #333333;  background: rgba(255, 255, 255, 0.9);  margin-bottom: 5px;}._star-chat-message .web-channel-form .web-channel-form-items > div {  border-radius: 5px;  padding: 5px 10px;  background-color: white;}._star-chat-message .web-channel-audio {  padding: 10px;  background-color: #ffffff;  border-radius: 10px;  transform-origin: left center;}._star-chat-message .web-channel-audio audio {  width: 250px;  transform: scale(0.85);  transform-origin: 0% 50%;}._star-chat-message .web-channel-video {  display: flex;  flex-direction: column;  justify-content: center;  align-items: center;  border-radius: 5px;  width: 250px;  height: 150px;}._star-chat-message .web-channel-video video {  width: 100%;}._star-chat-message .web-channel-image {  border-radius: 5px;  max-width: 250px;}._star-chat-message .web-channel-image .wa-preview {  display: flex;  justify-content: center;}._star-chat-message .web-channel-image img {  display: block;  object-fit: contain;  width: 100%;  height: 150px;}._star-chat-message .web-channel-image div {  padding: 5px;}._star-chat-message .web-channel-text {  padding: 3px 8px;}._star-chat-message .web-channel-file {  display: flex;  justify-content: flex-start;  align-items: center;  border: 2px solid transparent;  border-radius: 5px;  width: 100%;  min-height: 60px;  word-break: break-all;  padding: 5px;  font-size: var(--font-size-sm);}._star-chat-message .web-channel-file .file-icon {  margin-right: 12px;  width: 32px;  height: 32px;  background-size: cover;  background-repeat: no-repeat;  object-fit: cover;  flex-shrink: 0;}._star-chat-message .web-channel-file .file-icon-ppt, ._star-chat-message .web-channel-file .file-icon-pptx {  background-image: url(https://oss.starify.cn/prod/starigy/file-icon/ic_ppt.svg);}._star-chat-message .web-channel-file label {  font-weight: bold;  word-break: break-all;  word-wrap: break-word;}._star-chat-message .web-channel-file a {  color: var(--link-color);  white-space: nowrap;}._star-chat-message .web-channel-reply-buttons {  border: 2px solid transparent;  border-radius: 5px;  width: 250px;}._star-chat-message .web-channel-reply-buttons .main-box {  border-radius: 10px;  padding: 5px;  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);  background-color: white;}._star-chat-message .web-channel-reply-buttons .buttons {  display: grid;  grid-template-columns: 1fr;  grid-row-gap: 5px;  margin-top: 5px;}._star-chat-message .web-channel-reply-buttons .buttons > div {  border-radius: 10px;  font-size: 16px;  text-align: center;  height: 36px;  color: rgb(0, 99, 240);  line-height: 36px;  background-color: white;  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);  cursor: pointer;}._star-chat-message .web-channel-reply-buttons .buttons > div:hover {  opacity: 0.6;}._star-chat-message .web-channel-reply-buttons .header-text {  font-size: 14px;  font-weight: bold;  color: rgb(98, 98, 98);  padding: 4px 4px 0px;}._star-chat-message .web-channel-reply-buttons .body-text {  font-size: 14px;  padding: 4px 4px 0px;  color: rgb(98, 98, 98);  word-break: break-word;}._star-chat-message .web-channel-reply-buttons .footer-text {  padding: 4px 4px 0px;  color: rgb(165, 165, 166);  word-break: break-word;  font-size: 14px;}._star-chat-message .web-channel-reply-buttons .img-box {  height: 140px;  background-color: rgb(240, 242, 247);  display: flex;  justify-content: center;  align-items: center;}._star-chat-message .web-channel-reply-buttons .img-box .el-icon-picture {  font-size: 24px;}._star-chat-message .web-channel-reply-buttons img {  object-fit: contain;  width: 100%;}._star-chat-message .web-channel-evaluate svg {  width: 28px;  height: 28px;  fill: lightgrey;  cursor: pointer;}._star-chat-message .web-channel-evaluate svg.active {  fill: orange;}._star-chat-message .web-channel-evaluate.disabled svg {  cursor: default;}._star-chat-message .web-channel-evaluate.web-channel-evaluate-animation .web-channel-evaluate-star {  transform-origin: center center;  animation: _starWave 1s alternate ease-in-out;}._star-chat-message .web-channel-evaluate.web-channel-evaluate-animation .web-channel-evaluate-star:nth-child(1) {  animation-delay: 0s;}._star-chat-message .web-channel-evaluate.web-channel-evaluate-animation .web-channel-evaluate-star:nth-child(2) {  animation-delay: 0.1s;}._star-chat-message .web-channel-evaluate.web-channel-evaluate-animation .web-channel-evaluate-star:nth-child(3) {  animation-delay: 0.2s;}._star-chat-message .web-channel-evaluate.web-channel-evaluate-animation .web-channel-evaluate-star:nth-child(4) {  animation-delay: 0.3s;}._star-chat-message .web-channel-evaluate.web-channel-evaluate-animation .web-channel-evaluate-star:nth-child(5) {  animation-delay: 0.4s;}._star-chat-message .web-channel-evaluate .web-channel-evaluate-star.active svg {  fill: orange;}._star-chat-message .web-channel-evaluate .web-channel-evaluate-stars {  display: flex;  align-items: center;  justify-content: center;  flex-wrap: nowrap;  margin: 10px 0;}._star-chat-message .web-channel-quick-reply img {  width: calc(100% + 16px);  object-fit: fill;  margin: -8px 0 0 -8px;  border-top-left-radius: 5px;  border-top-right-radius: 5px;  overflow: hidden;}._star-chat-message .web-channel-quick-reply .web-channel-text {  display: inline-block;}._star-chat-message .web-channel-quick-reply .web-channel-replies {  display: flex;  justify-content: flex-start;  flex-wrap: wrap;  margin-top: 10px;  grid-column-gap: 8px;  grid-row-gap: 10px;}._star-chat-message .web-channel-quick-reply .web-channel-replies .web-channel-reply {  font-size: 14px;  border: 1px solid var(--star-link-color);  padding: 2px 6px;  border-radius: 16px;  cursor: pointer;  color: var(--star-link-color);}._star-chat-message .web-channel-quick-reply .web-channel-replies .web-channel-reply:hover {  opacity: 0.8;}._star-chat-message .web-channel-quick-reply .web-channel-replies .web-channel-reply label, ._star-chat-message .web-channel-quick-reply .web-channel-replies .web-channel-reply span {  cursor: pointer;  margin-bottom: 0;}._star-chat-message .web-channel-quick-reply .web-channel-replies .web-channel-reply span {  display: none;}._star-chat-message .web-channel-carousel {  width: 250px;  background-color: rgb(241, 240, 241);  overflow: hidden;  position: relative;  border-radius: 5px;}._star-chat-message .web-channel-carousel:hover .web-channel-carousel-prev, ._star-chat-message .web-channel-carousel:hover .web-channel-carousel-next {  display: flex;}._star-chat-message .web-channel-carousel .web-channel-image {  max-width: 250px;  height: 250px;  border-top-left-radius: 5px;  border-top-right-radius: 5px;  overflow: hidden;}._star-chat-message .web-channel-carousel .web-channel-image .web-channel-img-box {  width: 100%;  height: 100%;}._star-chat-message .web-channel-carousel .web-channel-image img {  width: 100%;  height: 100%;  object-fit: cover;}._star-chat-message .web-channel-carousel.web-channel-carousel-horizontal .web-channel-image {  height: 130px;}._star-chat-message .web-channel-carousel .web-channel-carousel-body {  padding: 10px;}._star-chat-message .web-channel-carousel .web-channel-carousel-title {  font-weight: bold;  font-size: 16px;  line-height: 22px;  overflow: hidden;  text-overflow: ellipsis;  display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;}._star-chat-message .web-channel-carousel .web-channel-carousel-subtitle {  font-size: 13px;  margin-bottom: 10px;  overflow: hidden;  text-overflow: ellipsis;  display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;}._star-chat-message .web-channel-carousel .web-channel-carousel-buttons {  display: grid;  grid-template-columns: 1fr;  grid-row-gap: 5px;  margin-top: 5px;}._star-chat-message .web-channel-carousel .web-channel-carousel-buttons > div {  cursor: pointer;  border-radius: 10px;  font-size: 16px;  text-align: center;  height: 36px;  color: rgb(98, 98, 98);  line-height: 36px;  background-color: rgb(250, 250, 250);}._star-chat-message .web-channel-carousel .web-channel-carousel-cards {  display: flex;  transition: transform 0.4s ease-in-out;}._star-chat-message .web-channel-carousel .web-channel-carousel-card {  flex: 0 0 100%;}._star-chat-message .web-channel-carousel .web-channel-carousel-prev, ._star-chat-message .web-channel-carousel .web-channel-carousel-next {  position: absolute;  top: 50%;  margin-top: -14px;  display: none;  align-items: center;  justify-content: center;  width: 28px;  height: 28px;  background: rgba(0, 0, 0, 0.3);  color: white;  border: none;  border-radius: 50%;  cursor: pointer;}._star-chat-message .web-channel-carousel .web-channel-carousel-prev:hover, ._star-chat-message .web-channel-carousel .web-channel-carousel-next:hover {  background: rgba(0, 0, 0, 0.7);}._star-chat-message .web-channel-carousel .web-channel-carousel-prev svg, ._star-chat-message .web-channel-carousel .web-channel-carousel-next svg {  fill: rgba(255, 255, 255, 0.6);}._star-chat-message .web-channel-carousel .web-channel-carousel-prev {  left: 5px;}._star-chat-message .web-channel-carousel .web-channel-carousel-next {  right: 5px;}._star-chat-message .file-icon-pdf {  background: url("https://oss.starify.cn/prod/starigy/file-icon/ic_pdf.svg");}._star-chat-message .file-icon-xls, ._star-chat-message .file-icon-xlsx {  background: url("https://oss.starify.cn/prod/starigy/file-icon/ic_excel.svg");}._star-chat-message .file-icon-doc, ._star-chat-message .file-icon-docx {  background: url("https://oss.starify.cn/prod/starigy/file-icon/ic_word.svg");}._star-chat-message .file-icon-ppt, ._star-chat-message .file-icon-pptx {  background: url("https://oss.starify.cn/prod/starigy/file-icon/ic_ppt.svg");}._star-chat-message .file-icon-txt {  background: url("https://oss.starify.cn/prod/starigy/file-icon/ic_txt.svg");}._star-emoji {  position: absolute;  top: -250px;  left: 0px;  right: 0px;  background-color: white;  border-radius: 5px;  border-top: 1px solid rgb(219, 223, 230);  padding: 10px 0px 10px 10px;  animation: fadeInBottom 0.25s;  margin-bottom: 10px;}._star-emoji svg {  position: absolute;  cursor: pointer;  right: 10px;  top: 10px;  width: 16px;  height: 16px;  fill: #333333;}._star-emoji svg:hover {  fill: rgb(0, 125, 252);}._star-emoji._star-emoji-close {  animation: fadeOutBottom 0.25s;}._star-emoji ._star-emoji-list {  display: grid;  font-size: 18px;  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;  height: 200px;  overflow-y: auto;  z-index: 100;  padding: 10px 0;}._star-emoji ._star-emoji-list span {  cursor: pointer;}._star-emoji ._star-emoji-tabs {  display: flex;}._star-emoji ._star-emoji-tabs > div {  padding: 0px 10px;  font-size: 13px;  min-height: 26px;  cursor: pointer;  margin-right: 10px;  text-align: center;}._star-emoji ._star-emoji-tabs > div.active {  color: rgb(0, 125, 252);  border-bottom: 2px solid rgb(0, 125, 252);}._star-history {  display: flex;  justify-content: center;  align-items: center;  height: 50px;}._star-history ._star-history-btn {  padding: 5px 8px;  border-radius: 12px;  background-color: #efefef;  cursor: pointer;}._star-history ._star-history-btn:hover {  background-color: #dddddd;}._star-header-menu {  position: absolute;  display: none;  z-index: 10;  top: 50px;  right: 50px;  background-color: white;  border-radius: 5px;  padding: 5px 5px;}._star-header-menu ._star-header-menu-item {  text-align: center;  padding: 5px 20px;  color: #8894AB;  border-radius: 5px;  cursor: pointer;}._star-header-menu ._star-header-menu-item:hover {  background-color: #EFF2F6;}._star-user-info {  position: sticky;  z-index: -1;  top: 20px;  width: 200px;  margin: auto;  padding: 10px;  background-color: #ffffff;  border-radius: 10px;  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);}._star-user-info ._star-user-info-item {  display: flex;  flex-direction: column;  margin-bottom: 5px;}._star-user-info ._star-user-info-item label {  font-weight: bold;}._star-user-info ._star-user-info-body {  padding-top: 15px;}._star-user-info ._star-user-info-avatar {  position: absolute;  top: -15px;  width: 40px;  height: 40px;  margin: auto;  display: flex;  justify-content: center;  align-items: center;  border-radius: 50%;  left: 0;  right: 0;  background-color: darkgrey;}._star-user-info ._star-user-info-btn {  display: flex;  justify-content: center;  align-items: center;  cursor: pointer;  padding-top: 10px;}._star-user-info ._star-user-info-btn svg {  transform: rotate(90deg);}._star-user-info ._star-user-info-btn svg:Hover {  opacity: 0.8;}._star-user-info._star-user-info-collapse {  display: flex;  align-items: center;  justify-content: space-between;  width: 60px;  top: 5px;  left: revert;  right: 20px;  padding: 5px;  border-radius: 20px;  cursor: pointer;  margin: revert;}._star-user-info._star-user-info-collapse:hover {  opacity: 0.8;}._star-user-info._star-user-info-collapse ._star-user-info-body {  display: none;}._star-user-info._star-user-info-collapse ._star-user-info-avatar {  position: static;  width: 24px;  height: 24px;}._star-user-info._star-user-info-collapse ._star-user-info-avatar svg {  width: 16px;  height: 16px;}._star-user-info._star-user-info-collapse ._star-user-info-btn {  padding-top: 0px;  justify-content: right;}._star-user-info._star-user-info-collapse ._star-user-info-btn svg {  transform: rotate(270deg);}._star-chat-win-tpl {  display: none;}._star-chat-win {  border-radius: 10px;  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);  width: 90%;  height: 90%;  position: fixed;  top: 0;  left: 0;  right: 0;  bottom: 0;  margin: auto;  background: #ffffff;  z-index: 99999;  padding: 10px;}._star-chat-win iframe {  width: 100%;  height: calc(100% - 60px);  margin: 0;  border: 0;}._star-chat-win ._star-chat-win-head {  display: flex;  justify-content: space-between;}._star-chat-win ._star-chat-win-head label {  font-size: 18px;  padding-left: 20px;  line-height: 40px;}._star-chat-win ._star-chat-win-head span {  padding: 0 5px;  cursor: pointer;}._star-chat-preview {  position: fixed;  z-index: 9998;  display: none;  width: 300px;  min-height: 110px;  background-color: white;  border-radius: 10px;  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);}._star-chat-preview ._star-chat-preview-input {  color: #808695;  padding: 15px 20px;}._star-chat-preview ._star-chat-preview-text {  width: 200px;  margin-top: 15px;  padding: 0 15px;  display: -webkit-box;  overflow: hidden;  text-overflow: ellipsis;  -webkit-box-orient: vertical;  -webkit-line-clamp: 5;}._star-chat-preview._star-position-right {  right: 10px;  bottom: 30px;}._star-chat-preview ._star-chat-preview-close {  position: absolute;  opacity: 0.3;  top: 5px;  right: 5px;  cursor: pointer;}._star-chat-preview ._star-chat-preview-close:hover {  opacity: 0.5;}/*# sourceMappingURL=style.css.map */
@media (max-width: 992px) {  ._star-conversation {    height: 280px;  }  ._star-chat-open._star-position-right {    right: 15px;    bottom: 15px;  }  ._star-chat-open._star-position-left {    left: 15px;    bottom: 15px;  }  ._star-chat-open ._star-chat-btn, ._star-chat-open ._star-btn-wave {    width: 48px;    height: 48px;  }  ._star-chat-open ._star-chat-btn i._type-1 svg, ._star-chat-open ._star-btn-wave i._type-1 svg {    width: 26px;    height: 25px;  }  ._star-chat-open ._star-chat-btn i._type-2 svg, ._star-chat-open ._star-btn-wave i._type-2 svg {    width: 26px;    height: 26px;  }  ._star-chat-open-label {    display: none !important;  }  ._star-chat, ._star-chat-start {    inset: 2px !important;    margin: auto;    height: fit-content;  }}/*# sourceMappingURL=style-mobile.css.map */