.hybrid-default-toast.t-message {
  pointer-events: none;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  width: max-content;
  max-width: 80vw;
  box-shadow: none;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
#app {
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff !important;
}
.chat {
  width: 100%;
}
.chat img,
.chat button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.chat__logo {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}
.chat__name {
  width: 180px;
  height: 42px;
  margin-bottom: 16px;
}
.chat__slogan {
  width: 180px;
  height: 20px;
  margin-bottom: 80px;
}
.chat__btn {
  display: block;
  width: 320px;
  height: 56px;
  max-width: 86%;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  background: linear-gradient(105.89deg, #00D862 -11.92%, #00CDFF 123.72%);
  border: 0;
}
.chat__btn:active {
  opacity: 0.8;
}
.chat__btn--loading {
  opacity: 0.8;
}
.chat__btn--loading img {
  width: 30px;
  animation: rotate 2s linear infinite;
}
.chat__btn--disabled {
  opacity: 0.5;
}
.chat__btn--disabled:active {
  opacity: 0.5;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.chat__download-tip {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.chat__browser-jump {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.chat__browser-jump__tip {
  position: fixed;
  top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 1502;
}
.chat__browser-jump__tip__content {
  font-size: 16px;
  line-height: 22.4px;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 26px;
}
.chat__browser-jump__tip__content::before {
  content: "";
  position: fixed;
  right: 28.5px;
  top: 4px;
  width: 48vw;
  height: 74px;
  background-image: url(/public/f83caa366096129929fc.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.t-message.t-is-info {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
}

