:root {
  color: #17211b;
  font-synthesis: none;
  background: #f4f7f5;
  font-family:
    Inter,
    PingFang SC,
    Microsoft YaHei,
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
header {
  background: #fff;
  border-bottom: 1px solid #e5ebe7;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 0 max(28px, 50vw - 640px);
  display: flex;
}
.brand {
  align-items: center;
  gap: 13px;
  display: flex;
}
.brand i {
  color: #fff;
  background: #17a66a;
  border-radius: 13px;
  place-items: center;
  width: 42px;
  height: 42px;
  font-style: normal;
  font-weight: 800;
  display: grid;
}
.brand div {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.brand b {
  letter-spacing: 0.14em;
  font-size: 12px;
}
.brand span {
  color: #69736c;
  font-size: 14px;
}
header em {
  color: #178a5b;
  background: #e8f7ef;
  border-radius: 99px;
  padding: 7px 12px;
  font-size: 12px;
  font-style: normal;
}
main {
  max-width: 1280px;
  margin: auto;
  padding: 30px 28px 60px;
}
.mode {
  background: #e6ece8;
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 5px;
  display: inline-flex;
}
.mode button {
  color: #66716a;
  background: 0 0;
  border: 0;
  border-radius: 9px;
  padding: 10px 20px;
  font-weight: 700;
}
.mode button.active {
  color: #17211b;
  background: #fff;
  box-shadow: 0 3px 12px #183b2820;
}
.mode small {
  color: #fff;
  background: #f56d4b;
  border-radius: 99px;
  margin-left: 3px;
  padding: 2px 5px;
  font-size: 9px;
}
.studio {
  grid-template-columns: minmax(0, 1fr) 580px;
  align-items: start;
  gap: 34px;
  display: grid;
}
.controls {
  flex-direction: column;
  gap: 18px;
  display: flex;
}
.panel {
  background: #fff;
  border: 1px solid #e3e9e5;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 35px #2848360c;
}
.panel h2 {
  margin: 0 0 18px;
  font-size: 17px;
}
.panel h2 small {
  color: #8a938e;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 400;
}
.grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}
.field {
  color: #5b655f;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  display: flex;
}
.field input,
.field select,
.field textarea {
  color: #18231c;
  background: #fafcfb;
  border: 1px solid #dce4df;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 10px 12px;
}
.field input:focus,
.field textarea:focus {
  border-color: #23a96f;
  box-shadow: 0 0 0 3px #23a96f18;
}
.field textarea {
  resize: vertical;
  min-height: 82px;
}
.seg {
  background: #f0f3f1;
  border-radius: 10px;
  padding: 3px;
  display: flex;
}
.seg button {
  color: #758078;
  background: 0 0;
  border: 0;
  border-radius: 7px;
  flex: 1;
  padding: 7px;
}
.seg button.on {
  color: #148b59;
  background: #fff;
  box-shadow: 0 2px 8px #243a2c18;
}
.users {
  gap: 12px;
  display: flex;
  overflow: auto;
}
.users button {
  color: #66716a;
  background: #fafcfb;
  border: 1px solid #e3e9e5;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 78px;
  padding: 10px;
  display: flex;
}
.users button.selected {
  color: #138b58;
  background: #edfaf4;
  border-color: #1aa66a;
}
.avatar {
  color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-weight: 700;
  display: inline-flex;
}
.users svg {
  background: #edf1ee;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  padding: 8px;
}
.composerPanel {
  gap: 16px;
  display: grid;
}
.composerPanel h2 {
  margin: 0;
}
.actions {
  flex-wrap: wrap;
  gap: 9px;
  display: flex;
}
.actions button,
.reset {
  color: #445049;
  background: #fff;
  border: 1px solid #dce4df;
  border-radius: 9px;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  display: flex;
}
.actions svg {
  width: 15px;
}
.actions .primary,
.export {
  color: #fff;
  background: #119e61;
  border-color: #119e61;
}
.actions .danger {
  color: #d94f45;
}
.preview {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-right: 150px;
  display: flex;
  position: sticky;
  top: 18px;
}
.phone {
  background: var(--chatbg, #ededed);
  width: 375px;
  height: 780px;
  box-shadow: none;
  color: #161a18;
  border: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.phone:before {
  display: none;
}
.status {
  background: #f7f7f7;
  justify-content: space-between;
  align-items: center;
  height: 49px;
  padding: 10px 18px 0;
  font-size: 12px;
  display: flex;
}
.status span {
  align-items: center;
  gap: 4px;
  display: flex;
}
.chatbar {
  background: #f7f7f7;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 13px;
  display: flex;
}
.chatbar > div {
  text-align: center;
  flex-direction: column;
  font-size: 15px;
  display: flex;
}
.chatbar small {
  color: #888;
  font-size: 9px;
  font-weight: 400;
}
.messages {
  height: 624px;
  padding: 18px 13px;
  overflow: auto;
}
.msg {
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  display: flex;
  position: relative;
}
.msg.mine {
  flex-direction: row-reverse;
}
.msg .avatar {
  border-radius: 6px;
  flex: none;
  width: 36px;
  height: 36px;
  font-size: 12px;
}
.bubble {
  word-break: break-word;
  background: #fff;
  border-radius: 6px;
  max-width: 235px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.delete {
  color: #fff;
  opacity: 0;
  background: #222a;
  border: 0;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  padding: 0;
  font-size: 11px;
  position: absolute;
  top: -11px;
  right: 38px;
}
.theirs .delete {
  left: 38px;
  right: auto;
}
.msg:hover .delete,
.time:hover button {
  opacity: 0.7;
}
.time {
  text-align: center;
  color: #8b918d;
  margin: 0 auto 16px;
  font-size: 11px;
  position: relative;
}
.time button {
  opacity: 0;
  color: #777;
  background: 0 0;
  border: 0;
}
.pic {
  color: #fff;
  background: linear-gradient(135deg, #d6dfd8, #a7c4b1);
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 145px;
  height: 102px;
  font-size: 12px;
  display: flex;
}
.voice {
  justify-content: space-between;
  min-width: 105px;
  display: flex;
}
.money-card {
  color: #fff;
  background: #fa9b3d;
  border-radius: 7px;
  grid-template-rows: minmax(50px, 1fr) 23px;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 10px;
  width: 225px;
  min-height: 88px;
  padding: 10px 10px 0;
  display: grid;
  position: relative;
  overflow: hidden;
}
.money-symbol {
  box-sizing: border-box;
  align-self: center;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
  position: relative;
}
.envelope-symbol {
  color: #ffd875;
  background: #ef5039;
  border-radius: 2px;
  width: 34px;
  height: 36px;
}
.envelope-symbol:before {
  content: "";
  border-top: 13px solid #e44631;
  border-left: 17px solid #0000;
  border-right: 17px solid #0000;
  position: absolute;
  inset: 0 0 auto;
}
.envelope-symbol i {
  z-index: 1;
  color: #e24b35;
  background: #ffd875;
  border-radius: 50%;
  place-items: center;
  width: 12px;
  height: 12px;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  display: grid;
  position: relative;
}
.transfer-symbol {
  border: 2px solid #fff;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  display: flex;
}
.transfer-symbol i {
  height: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 9px;
}
.money-copy {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  min-width: 0;
  display: flex;
}
.money-copy b {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 1.35;
  overflow: hidden;
}
.transfer-card .money-copy b {
  font-size: 16px;
}
.money-copy span {
  opacity: 0.95;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 1px;
  font-size: 10px;
  line-height: 1.3;
  overflow: hidden;
}
.money-card > small {
  color: #fff;
  opacity: 0.9;
  border-top: 1px solid #ffffff24;
  grid-column: 1/-1;
  margin: 0 -10px;
  padding: 5px 9px 0;
  font-size: 9px;
  line-height: 18px;
}
.composer {
  background: #f6f6f6;
  border-top: 1px solid #ddd;
  align-items: center;
  gap: 10px;
  height: 57px;
  padding: 8px 12px;
  display: flex;
}
.composer > div {
  background: #fff;
  border-radius: 6px;
  flex: 1;
  height: 38px;
}
.composer svg {
  width: 22px;
}
.composer span {
  font-size: 24px;
}
.navline {
  background: #222;
  border-radius: 9px;
  width: 110px;
  height: 4px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%);
}
.export {
  border: 0;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 8px 22px #119e6140;
}
.export svg {
  width: 18px;
}
.wallet {
  background: #fff;
}
.walletbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
  align-items: center;
  height: 52px;
  padding: 0 14px;
  display: flex;
}
.walletbar > b {
  margin-left: 55px;
}
.walletbar span {
  font-size: 13px;
}
.walletbody {
  text-align: center;
  padding: 48px 24px 0;
}
.walleticon {
  color: #fff;
  background: #f1b34b;
  border-radius: 50%;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: auto;
  font-size: 40px;
  display: grid;
}
.walletbody h3 {
  font-size: 15px;
  font-weight: 400;
}
.balance {
  margin: 14px 0 24px;
  font-size: 42px;
}
.balance small {
  margin-right: 5px;
  font-size: 23px;
}
.walletbody p {
  color: #888;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  justify-content: center;
  align-items: center;
  padding: 17px 0;
  font-size: 13px;
  display: flex;
}
.walletbody p svg {
  width: 15px;
}
.walletbody button {
  color: #fff;
  background: #07c160;
  border: 0;
  border-radius: 6px;
  width: 190px;
  margin: 15px auto;
  padding: 11px;
  display: block;
}
.walletbody button.ghost {
  color: #07a853;
  background: #eaf8f0;
}
.walletbody footer {
  color: #aaa;
  font-size: 11px;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
}
.walletsettings h1 {
  margin: 10px 0;
  font-size: 28px;
}
.walletsettings > p {
  color: #6c7770;
  margin-bottom: 28px;
}
.newtag {
  color: #ee6f4f;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.moneyinput {
  border: 1px solid #dce4df;
  border-radius: 12px;
  align-items: center;
  padding-left: 14px;
  display: flex;
}
.moneyinput span {
  font-size: 24px;
}
.moneyinput input {
  border: 0;
  font-size: 24px;
}
.notice {
  color: #8f6b25;
  background: #fff8e9;
  border-radius: 10px;
  margin-top: 22px;
  padding: 15px;
  font-size: 12px;
  line-height: 1.6;
}
.reset {
  margin-top: 18px;
}
.sitefoot {
  text-align: center;
  color: #7d8781;
  background: #fff;
  border-top: 1px solid #e2e9e5;
  padding: 28px;
  font-size: 12px;
}
@media (width<=900px) {
  header {
    padding: 0 18px;
  }
  .brand b {
    display: none;
  }
  main {
    padding: 20px 14px;
  }
  .studio {
    grid-template-columns: 1fr;
  }
  .preview {
    order: -1;
    position: static;
  }
  .phone {
    transform-origin: top;
    margin-bottom: -92px;
    transform: scale(0.88);
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .brand span {
    font-size: 12px;
  }
  .sitefoot {
    padding: 22px 18px;
    line-height: 1.8;
  }
}
@media (width<=420px) {
  .phone {
    margin-bottom: -140px;
    transform: scale(0.82);
  }
  .panel {
    padding: 17px;
  }
  .mode {
    display: flex;
  }
  .mode button {
    flex: 1;
  }
  .studio {
    gap: 20px;
  }
}
.panel-title {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  display: flex;
}
.panel-title h2 {
  margin: 0;
}
.panel-title > svg {
  color: #15935d;
  width: 20px;
}
.shuffle {
  color: #25845b;
  white-space: nowrap;
  background: #f8fbf9;
  border: 1px solid #dce4df;
  border-radius: 9px;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  font-size: 12px;
  display: flex;
}
.shuffle svg {
  width: 14px;
}
.shuffle:disabled {
  opacity: 0.45;
  cursor: wait;
}
.users {
  flex-wrap: wrap;
  align-items: stretch;
  overflow: visible;
}
.users .user-card {
  cursor: pointer;
  background: #fafcfb;
  border: 1px solid #e3e9e5;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 78px;
  min-height: 98px;
  padding: 9px 7px;
  transition: all 0.18s;
  display: flex;
}
.users .user-card:hover {
  border-color: #a8d9c1;
}
.users .user-card.selected {
  background: #edfaf4;
  border-color: #1aa66a;
  box-shadow: 0 0 0 2px #1aa66a12;
}
.avatar {
  overflow: hidden;
}
.avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.avatar-upload {
  cursor: pointer;
  display: block;
  position: relative;
}
.avatar-upload input {
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  position: absolute;
}
.avatar-hint {
  color: #fff;
  text-align: center;
  opacity: 0;
  background: #17211bcc;
  border-radius: 0 0 8px 8px;
  padding: 2px 0;
  font-size: 9px;
  transition: all 0.15s;
  position: absolute;
  inset: auto 0 0;
}
.avatar-upload:hover .avatar-hint {
  opacity: 1;
}
.user-name {
  text-align: center;
  color: #58645d;
  background: 0 0;
  border: 0;
  border-bottom: 1px solid #0000;
  outline: none;
  width: 64px;
  padding: 3px 1px;
  font-size: 12px;
}
.user-card.selected .user-name {
  color: #118b58;
}
.user-name:focus {
  border-bottom-color: #1aa66a;
}
.users .add-user {
  justify-content: center;
  min-height: 98px;
}
.avatar-source {
  color: #8a938e;
  margin: 14px 0 0;
  font-size: 11px;
}
.flow-panel {
  background: linear-gradient(145deg, #fff 65%, #f2fbf6);
  border-color: #cfe9dc;
}
.flow-input {
  resize: vertical;
  color: #27332c;
  background: #fbfdfc;
  border: 1px solid #d8e5de;
  border-radius: 12px;
  outline: none;
  width: 100%;
  min-height: 190px;
  padding: 14px;
  line-height: 1.65;
}
.flow-input:focus {
  border-color: #20a66b;
  box-shadow: 0 0 0 3px #20a66b16;
}
.flow-footer {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  display: flex;
}
.flow-footer span {
  color: #88928c;
  font-size: 11px;
}
.primary-flow {
  color: #fff;
  white-space: nowrap;
  background: #119e61;
  border: 0;
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 700;
  display: flex;
}
.primary-flow svg {
  width: 15px;
}
@media (width<=600px) {
  .panel-title,
  .flow-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .primary-flow {
    justify-content: center;
    width: 100%;
  }
}
.actions .image-action {
  color: #445049;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dce4df;
  border-radius: 9px;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  display: flex;
}
.actions .image-action svg {
  width: 15px;
}
.actual-pic {
  background: 0 0;
  width: auto;
  max-width: 145px;
  height: auto;
  max-height: 220px;
  display: block;
}
.actual-pic img {
  object-fit: contain;
  border-radius: 7px;
  width: auto;
  max-width: 145px;
  height: auto;
  max-height: 220px;
  display: block;
}
.bubble:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 13px;
}
.theirs .bubble:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-right: 7px solid #fff;
  left: -6px;
}
.mine .bubble:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-left: 7px solid #95ec69;
  right: -6px;
}
.voice {
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  min-width: 84px;
  max-width: 218px;
  display: flex;
}
.voice-waves {
  letter-spacing: -5px;
  padding-right: 5px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
  display: inline-block;
}
.voice-other .voice-waves {
  padding-left: 5px;
  padding-right: 0;
  transform: scaleX(-1);
}
.status {
  background: #f5f5f5;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  display: flex;
}
.status > b {
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}
.status-icons {
  color: #171a18;
  align-items: center;
  gap: 4px;
  height: 12px;
  display: flex;
}
.status-icons em {
  letter-spacing: -0.02em;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}
.cellular-bars {
  align-items: flex-end;
  gap: 1.3px;
  width: 14px;
  height: 10px;
  display: flex;
}
.cellular-bars i {
  background: #171a18;
  border-radius: 0.5px;
  width: 2.2px;
  display: block;
}
.status-wifi {
  stroke-width: 2.6px;
  width: 13px;
  height: 13px;
}
.status-battery {
  border: 1.2px solid #171a18;
  border-radius: 2px;
  width: 17px;
  height: 9px;
  padding: 1px;
  display: block;
  position: relative;
}
.status-battery:after {
  content: "";
  background: #171a18;
  border-radius: 0 1px 1px 0;
  width: 1.5px;
  height: 4px;
  position: absolute;
  top: 2px;
  right: -3px;
}
.status-battery i {
  width: var(--battery-level);
  background: #171a18;
  border-radius: 0.5px;
  max-width: 100%;
  height: 100%;
  display: block;
}
.phone {
  height: 812px;
}
.status > b {
  font-size: 15px;
}
.cellular-bars {
  gap: 1.5px;
  width: 18px;
  height: 12px;
}
.cellular-bars i {
  width: 3px;
}
.cellular-bars i:first-child {
  height: 4px;
}
.cellular-bars i:nth-child(2) {
  height: 7px;
}
.cellular-bars i:nth-child(3) {
  height: 9px;
}
.cellular-bars i:nth-child(4) {
  height: 12px;
}
.status-wifi {
  width: 20px;
  height: 17px;
}
.status-battery {
  border-width: 1.4px;
  width: 25px;
  height: 12px;
  padding: 1.5px;
}
.status-battery:after {
  height: 5px;
  top: 3px;
  right: -3px;
}
.chatbar {
  height: 44px;
  padding: 0 16px;
}
.chatbar > div {
  font-size: 17px;
}
.chatbar small {
  font-size: 9px;
}
.chatbar svg {
  width: 18px;
}
.messages {
  scrollbar-width: thin;
  scrollbar-color: #8d8d8d transparent;
  height: 634px;
  padding: 18px 12px;
}
.messages::-webkit-scrollbar {
  width: 3px;
}
.messages::-webkit-scrollbar-thumb {
  background: #8d8d8d;
  border-radius: 4px;
}
.msg .avatar {
  width: 40px;
  height: 40px;
}
.composer {
  gap: 9px;
  height: 56px;
  padding: 7px 10px;
}
.composer .composer-input {
  background: #fff;
  border-radius: 5px;
  flex: 1;
  height: 42px;
}
.input-voice {
  border: 1.7px solid #171a18;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 25px;
  height: 25px;
  display: grid;
  overflow: hidden;
}
.input-voice i {
  letter-spacing: -4px;
  padding-right: 4px;
  font:
    700 11px/1 Arial,
    sans-serif;
  transform: scaleX(-1);
}
.composer .input-emoji {
  font-size: 25px;
  line-height: 1;
}
.composer .input-plus {
  width: 26px;
  height: 26px;
}
.ios-home {
  background: #f6f6f6;
  justify-content: center;
  align-items: flex-end;
  height: 34px;
  padding-bottom: 8px;
  display: flex;
}
.ios-home i {
  background: #111;
  border-radius: 99px;
  width: 135px;
  height: 5px;
  display: block;
}
.android .messages {
  height: 668px;
}
.message-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}
.time-field {
  grid-column: 1/-1;
}
.date-selects {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  display: flex;
}
.date-selects select {
  color: #39443d;
  background: #fafcfb;
  border: 1px solid #dce4df;
  border-radius: 9px;
  outline: none;
  flex: 1;
  min-width: 62px;
  padding: 9px 7px;
}
.date-selects select:first-child {
  min-width: 78px;
}
.date-selects b {
  font-weight: 500;
}
.composerPanel .actions {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 3px;
  display: grid;
}
.composerPanel .actions button,
.composerPanel .actions .image-action {
  color: #fff;
  text-align: center;
  background: #079b51;
  border: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 42px;
  padding: 9px 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}
.composerPanel .actions .danger {
  color: #d24c43;
  background: #fff0f0;
  grid-column: 1/2;
}
.users .user-card {
  position: relative;
}
.users .remove-user {
  z-index: 3;
  color: #fff;
  background: #ef2d28;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  padding: 0;
  font-size: 15px;
  line-height: 1;
  display: grid;
  position: absolute;
  top: -8px;
  right: -7px;
}
.selected-check {
  z-index: 3;
  color: #fff;
  background: #27b768;
  border: 2px solid #fff;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: grid;
  position: absolute;
  bottom: 23px;
  right: -6px;
}
.voice-unread {
  background: #ed3d32;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
}
.voice-mine .voice-unread {
  left: -14px;
  right: auto;
}
@media (width<=760px) {
  .message-options {
    grid-template-columns: 1fr;
  }
  .time-field {
    grid-column: 1;
  }
  .composerPanel .actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .composerPanel .actions .danger {
    grid-column: 1/-1;
  }
}
.status {
  height: 44px;
  padding: 0 14.333px 0 31.667px;
}
.status > b {
  font-size: 15px;
  font-weight: 600;
}
.status-icons {
  gap: 2px;
  height: 15px;
}
.cellular-bars {
  background: url(/status/ios-signal.png) 50%/18px 12px no-repeat;
  width: 18px;
  height: 12px;
  display: block;
}
.cellular-bars i {
  display: none;
}
.status-icons em {
  text-align: center;
  letter-spacing: 0;
  width: 19px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
}
.status-wifi {
  background: url(/status/ios-wifi.png) 50%/21px 15px no-repeat;
  width: 21px;
  height: 15px;
  display: block;
}
.status-battery {
  background: url(/status/ios-battery.png) 50%/25px 12px no-repeat;
  border: 0;
  border-radius: 0;
  width: 25px;
  height: 12px;
  padding: 2.333px 5.333px 2.333px 2.333px;
  display: block;
}
.status-battery:after {
  display: none;
}
.status-battery i {
  background: #000;
  border-radius: 1.333px;
  max-width: 17.333px;
  height: 7.333px;
  display: block;
}
.money-card {
  background: #f79c46;
  border-radius: 5px;
  grid-template-rows: 64px 23.667px;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 10px;
  width: 233.333px;
  height: 87.667px;
  min-height: 87.667px;
  padding: 0 12.667px;
  overflow: visible;
}
.money-card:before {
  content: "";
  background: #f79c46;
  border-bottom-left-radius: 1.333px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 16.667px;
  left: -4px;
  transform: rotate(45deg);
}
.mine .money-card:before {
  border-top-right-radius: 1.333px;
  border-bottom-left-radius: 0;
  left: auto;
  right: -4px;
}
.money-symbol {
  align-self: center;
}
.envelope-symbol {
  background: url(/wechat/redpacket.png) 50%/34px 40px no-repeat;
  border-radius: 0;
  width: 34px;
  height: 40px;
  margin-left: 3px;
}
.envelope-symbol:before,
.envelope-symbol i {
  display: none;
}
.transfer-symbol {
  background: url(/wechat/transfer.png) 50%/40px 40px no-repeat;
  border: 0;
  border-radius: 0;
  width: 40px;
  height: 40px;
}
.transfer-symbol i {
  display: none;
}
.money-copy b,
.transfer-card .money-copy b {
  font-size: 16px;
  line-height: 1.25;
}
.money-copy span {
  margin-top: 0;
  font-size: 12px;
  line-height: 1.25;
}
.money-card > small {
  color: #faecda;
  opacity: 1;
  border-top: 1px solid #f0b36f;
  border-radius: 0 0 5px 5px;
  grid-column: 1/-1;
  margin: 0 -12.667px;
  padding: 0 12.667px;
  font-size: 12px;
  line-height: 23.667px;
}
.bubble {
  border-radius: 5px;
}
.mine .bubble {
  background: #98e970;
}
.mine .bubble:after {
  border-left-color: #98e970;
}
.voice {
  min-height: 41px;
}
.voice b {
  font-size: 14px;
  font-weight: 400;
}
.voice-waves {
  letter-spacing: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 11.333px 16.333px;
  flex: none;
  width: 11.333px;
  height: 16.333px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: block;
  transform: none;
}
.voice-mine .voice-waves {
  background-image: url(/wechat/voice-right.png);
}
.voice-other .voice-waves {
  background-image: url(/wechat/voice-left.png);
  padding: 0;
  transform: none;
}
.draggable-message {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  transition:
    opacity 0.15s,
    transform 0.15s,
    filter 0.15s;
}
.message-reordering,
.message-reordering * {
  cursor: grabbing !important;
}
.message-reordering .draggable-message {
  touch-action: none;
}
.dragging-message {
  opacity: 0.42;
  filter: saturate(0.7);
  transform: scale(0.985);
}
.drop-target {
  position: relative;
}
.drop-target:before {
  content: "";
  z-index: 20;
  background: #18aa69;
  border-radius: 99px;
  height: 3px;
  position: absolute;
  top: -10px;
  left: 4px;
  right: 4px;
  box-shadow: 0 0 0 2px #ededed;
}
.time.drop-target:before {
  top: -8px;
  left: 25%;
  right: 25%;
}
.message-tools {
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  gap: 4px;
  transition: opacity 0.15s;
  display: flex;
  position: absolute;
  top: -17px;
}
.mine .message-tools {
  right: 40px;
}
.theirs .message-tools {
  left: 40px;
}
.msg:hover .message-tools,
.msg:focus-within .message-tools {
  opacity: 1;
  pointer-events: auto;
}
.message-tools button,
.message-tools .delete {
  color: #fff;
  opacity: 0.88;
  background: #858b87;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 19px;
  min-width: 19px;
  height: 19px;
  padding: 0;
  font-size: 12px;
  line-height: 1;
  display: grid;
  position: static;
}
.message-tools button:hover {
  opacity: 1;
  background: #4d5550;
}
.message-tools .edit-message {
  padding-bottom: 1px;
  font-size: 13px;
}
.status,
.chatbar {
  background: #ededed;
}
.chatbar {
  border-bottom: 1px solid #d5d5d5;
  height: 44px;
  padding: 0 16.667px;
}
.chatbar .nav-back {
  background: url(/wechat/nav-back.png) 0/9px 17.333px no-repeat;
  flex: none;
  width: 50px;
  height: 44px;
  display: block;
}
.chatbar .nav-more {
  background: url(/wechat/nav-more.png) 100%/23.333px 4px no-repeat;
  flex: none;
  width: 50px;
  height: 44px;
  display: block;
}
.chatbar > div {
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  display: flex;
}
.chatbar > div b {
  font-weight: 500;
}
.composer {
  background: #f6f6f6;
  gap: 0;
  height: 55.667px;
  padding: 0;
}
.composer .input-voice {
  background: url(/wechat/bottom-voice.png) 50%/26.667px 26.667px no-repeat;
  border: 0;
  border-radius: 0;
  flex: none;
  width: 26.667px;
  height: 26.667px;
  margin-left: 10.667px;
  display: block;
}
.composer .composer-input {
  background: #fff;
  border-radius: 5px;
  flex: 1;
  height: 40px;
  margin: 0 10.667px;
}
.composer .input-emoji {
  background: url(/wechat/bottom-emoji.png) 50%/26.667px 26.667px no-repeat;
  flex: none;
  width: 26.667px;
  height: 26.667px;
  font-size: 0;
  display: block;
}
.composer .input-plus {
  background: url(/wechat/bottom-more.png) 50%/26.667px 26.667px no-repeat;
  flex: none;
  width: 26.667px;
  height: 26.667px;
  margin: 0 10.667px 0 13px;
  display: block;
}
.ios-home {
  align-items: flex-start;
  height: 34px;
  padding: 0;
}
.ios-home i {
  background: url(/wechat/home-bar.png) 50%/134px 5px no-repeat;
  border-radius: 0;
  width: 134px;
  height: 5px;
  margin-top: 21px;
}
.image-replace {
  cursor: pointer;
  outline: 0;
  transition:
    filter 0.15s,
    box-shadow 0.15s;
  position: relative;
}
.image-replace:hover {
  filter: brightness(0.96);
  box-shadow: 0 0 0 2px #1aaa6d55;
}
.image-placeholder small {
  opacity: 0.85;
  font-size: 9px;
}
.actual-pic:after {
  content: "点击替换图片";
  color: #fff;
  text-align: center;
  opacity: 0;
  background: #1119;
  border-radius: 0 0 7px 7px;
  padding: 5px 4px;
  font-size: 10px;
  transition: opacity 0.15s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.actual-pic:hover:after {
  opacity: 1;
}
.chat-avatar-upload {
  cursor: pointer;
  border-radius: 5px;
  flex: none;
  width: 40px;
  height: 40px;
  transition:
    box-shadow 0.15s,
    filter 0.15s;
  display: block;
}
.chat-avatar-upload:hover {
  filter: brightness(0.96);
  box-shadow: 0 0 0 2px #19aa6d;
}
.chat-avatar-upload .avatar {
  border-radius: 5px;
  width: 40px;
  height: 40px;
}
.users .user-card,
.users .add-user {
  min-height: 128px;
}
.users .cycle-avatar {
  color: #168354;
  background: #f0faf5;
  border: 1px solid #cfe2d7;
  border-radius: 7px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 64px;
  min-width: 0;
  height: 24px;
  padding: 0 5px;
  font-size: 10px;
  line-height: 1;
  display: flex;
  position: static;
}
.users .cycle-avatar svg {
  background: 0 0;
  border-radius: 0;
  width: 11px;
  height: 11px;
  padding: 0;
}
.users .cycle-avatar:hover {
  background: #dff5e9;
  border-color: #7bc69d;
}
.users .cycle-avatar:disabled {
  opacity: 0.45;
  cursor: wait;
}
.selected-check {
  bottom: 39px;
}
.phone.exporting .messages {
  scrollbar-width: none;
}
.phone.exporting .messages::-webkit-scrollbar {
  display: none;
}
.phone.exporting .message-tools,
.phone.exporting .time button {
  display: none !important;
}
.export:disabled {
  opacity: 0.65;
  cursor: wait;
}
.time-tools {
  vertical-align: middle;
  align-items: center;
  gap: 2px;
  margin-left: 3px;
  display: inline-flex;
}
.time .time-tools button {
  color: #fff;
  background: #858b87;
  border-radius: 50%;
  place-items: center;
  width: 17px;
  height: 17px;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  display: grid;
}
.time .time-tools button:hover {
  opacity: 1;
  background: #4d5550;
}
.panel-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  display: flex;
}
.group-toggle {
  color: #4c5b52;
  white-space: nowrap;
  background: #f8fbf9;
  border: 1px solid #dce4df;
  border-radius: 9px;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 12px;
  transition: all 0.18s;
  display: flex;
}
.group-toggle > span {
  color: #66746c;
  background: #e8efeb;
  border-radius: 6px;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 800;
  display: grid;
}
.group-toggle:hover {
  color: #16895a;
  border-color: #8dceb0;
}
.group-toggle.active {
  color: #108654;
  background: #eaf9f1;
  border-color: #16a568;
  box-shadow: 0 0 0 2px #16a56812;
}
.group-toggle.active > span {
  color: #fff;
  background: #16a568;
}
.group-mode-editor {
  background: #f4fbf7;
  border: 1px solid #cfe8da;
  border-radius: 11px;
  align-items: flex-end;
  gap: 14px;
  margin: -2px 0 18px;
  padding: 13px 14px;
  display: flex;
}
.group-mode-editor label {
  color: #4f6056;
  flex-direction: column;
  gap: 6px;
  min-width: 210px;
  font-size: 12px;
  display: flex;
}
.group-mode-editor input {
  color: #17211b;
  background: #fff;
  border: 1px solid #cfe0d6;
  border-radius: 9px;
  outline: none;
  height: 38px;
  padding: 8px 11px;
}
.group-mode-editor input:focus {
  border-color: #1ca66a;
  box-shadow: 0 0 0 3px #1ca66a15;
}
.group-mode-editor small {
  color: #7c8a82;
  padding-bottom: 9px;
  font-size: 11px;
  line-height: 1.45;
}
@media (width<=600px) {
  .panel-actions {
    justify-content: flex-start;
    width: 100%;
  }
  .group-mode-editor {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .group-mode-editor label {
    min-width: 0;
  }
  .group-mode-editor small {
    padding-bottom: 0;
  }
}
.ai-generator {
  background: #f8fcfa;
  border: 1px solid #d7e9df;
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 16px;
}
.ai-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}
.ai-field {
  color: #34443b;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}
.ai-field span {
  align-items: center;
  gap: 7px;
  display: flex;
}
.ai-field small {
  color: #15935d;
  background: #e5f6ed;
  border-radius: 99px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
}
.ai-field textarea {
  resize: vertical;
  color: #223029;
  background: #fff;
  border: 1px solid #d7e2dc;
  border-radius: 11px;
  outline: none;
  width: 100%;
  min-height: 104px;
  padding: 11px 12px;
  font-weight: 400;
  line-height: 1.55;
}
.ai-field textarea:focus {
  border-color: #20a66b;
  box-shadow: 0 0 0 3px #20a66b16;
}
.ai-generate-row {
  border-top: 1px solid #e0ebe5;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
}
.ai-generate-row > div {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.ai-generate-row > .ai-generate-actions {
  flex-direction: row;
  flex: none;
  gap: 8px;
}
.ai-generate-row b {
  font-size: 13px;
}
.ai-generate-row span {
  color: #7d8982;
  font-size: 11px;
}
.ai-generate {
  color: #fff;
  white-space: nowrap;
  background: #17251e;
  border: 0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-width: 142px;
  padding: 10px 15px;
  font-weight: 700;
  display: flex;
}
.ai-generate-another {
  color: #178a5b;
  background: #fff;
  border: 1px solid #9bcdb4;
}
.ai-generate-another:hover:not(:disabled) {
  background: #edf9f3;
  border-color: #159b61;
}
.ai-rate-limit-note {
  color: #735a21;
  background: #fff9e8;
  border: 1px solid #efd99a;
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 10px;
  font-size: 10px;
  line-height: 1.45;
  display: flex;
}
.ai-rate-limit-note b {
  color: #9a6610;
  white-space: nowrap;
}
.ai-rate-limit-note span {
  flex: 1;
}
.ai-rate-limit-note em {
  color: #137c50;
  white-space: nowrap;
  font-style: normal;
  font-weight: 800;
}
.ai-generate svg {
  width: 16px;
}
.ai-generate:hover:not(:disabled) {
  background: #0f9c60;
}
.ai-generate:disabled {
  opacity: 0.62;
  cursor: wait;
}
.ai-error {
  color: #c4423a;
  background: #fff0ef;
  border: 1px solid #f5d2cf;
  border-radius: 9px;
  margin: 10px 0 0;
  padding: 9px 11px;
  font-size: 12px;
}
.flow-divider {
  color: #839089;
  align-items: center;
  gap: 10px;
  margin: 2px 0 12px;
  font-size: 11px;
  display: flex;
}
.flow-divider:before,
.flow-divider:after {
  content: "";
  background: #e1e8e4;
  flex: 1;
  height: 1px;
}
.flow-divider span {
  white-space: nowrap;
}
@media (width<=700px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .ai-generate-row {
    flex-direction: column;
    align-items: stretch;
  }
  .ai-generate {
    width: 100%;
  }
  .ai-generate-row > .ai-generate-actions {
    width: 100%;
  }
  .ai-generate-actions .ai-generate {
    flex: 1;
  }
  .ai-rate-limit-note {
    align-items: flex-start;
    flex-direction: column;
  }
}
.flow-footer {
  position: relative;
}
.flow-note {
  flex: 1;
}
.format-help {
  flex: none;
  position: relative;
}
.format-help-trigger {
  color: #3d5146;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d5e3dc;
  border-radius: 9px;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  font-size: 12px;
  display: flex;
}
.format-help-trigger svg {
  width: 15px;
}
.format-help-trigger:hover,
.format-help-trigger:focus-visible {
  color: #118b58;
  border-color: #1aa66a;
  outline: none;
  box-shadow: 0 0 0 3px #20a66b14;
}
.format-tooltip {
  z-index: 30;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: left;
  background: #17251e;
  border: 1px solid #cfe1d7;
  border-radius: 13px;
  width: 350px;
  padding: 15px;
  transition: all 0.16s;
  position: absolute;
  bottom: calc(100% + 12px);
  right: 50%;
  transform: translate(50%) translateY(5px);
  box-shadow: 0 18px 45px #15271d38;
}
.format-tooltip:after {
  content: "";
  border: 7px solid #0000;
  border-top-color: #17251e;
  margin-left: -7px;
  position: absolute;
  top: 100%;
  left: 50%;
}
.format-help:hover .format-tooltip,
.format-help:focus-within .format-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(50%) translateY(0);
}
.format-tooltip > b {
  margin-bottom: 10px;
  font-size: 14px;
  display: block;
}
.format-tooltip ul {
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.format-tooltip li {
  grid-template-columns: minmax(135px, auto) 1fr;
  align-items: center;
  gap: 9px;
  display: grid;
}
.format-tooltip code {
  color: #b7f5d4;
  white-space: nowrap;
  background: #ffffff12;
  border: 1px solid #ffffff16;
  border-radius: 6px;
  padding: 4px 6px;
  font-family: Consolas, SFMono-Regular, monospace;
  font-size: 11px;
}
.flow-footer .format-tooltip span {
  color: #cbd7d0;
  font-size: 11px;
}
.format-tooltip small {
  color: #f2c98d;
  border-top: 1px solid #ffffff18;
  margin-top: 11px;
  padding-top: 10px;
  font-size: 10px;
  line-height: 1.55;
  display: block;
}
@media (width<=600px) {
  .format-help {
    align-self: center;
  }
  .format-tooltip {
    width: min(350px, 100vw - 54px);
    left: 50%;
    right: auto;
    transform: translate(-50%) translateY(5px);
  }
  .format-help:hover .format-tooltip,
  .format-help:focus-within .format-tooltip {
    transform: translate(-50%) translateY(0);
  }
}
.status-battery.low i {
  background: #ff3b30;
}
.header-tools {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  display: flex;
}
.header-tools button {
  font: inherit;
}
.balance-tools {
  align-items: center;
  gap: 3px;
  display: flex;
}
.deepseek-balance {
  color: #137d51;
  white-space: nowrap;
  background: #f1fbf6;
  border: 1px solid #cbe5d8;
  border-radius: 9px 4px 4px 9px;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}
.deepseek-balance svg {
  width: 15px;
}
.deepseek-balance.is-empty {
  color: #c4433b;
  background: #fff1f0;
  border-color: #f2c6c3;
}
.balance-refresh {
  color: #178a5b;
  background: #fff;
  border: 1px solid #cbe5d8;
  border-radius: 4px 9px 9px 4px;
  place-items: center;
  width: 30px;
  height: 34px;
  padding: 0;
  display: grid;
}
.balance-refresh svg {
  width: 14px;
}
.balance-refresh:hover:not(:disabled) {
  background: #e8f7ef;
}
.balance-refresh:disabled {
  opacity: 0.5;
}
.auth-buttons {
  align-items: center;
  gap: 6px;
  display: flex;
}
.auth-buttons button,
.user-center-button {
  color: #314139;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d9e4de;
  border-radius: 9px;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}
.auth-buttons button svg,
.user-center-button svg {
  width: 15px;
}
.auth-buttons .register-button {
  color: #fff;
  background: #119e61;
  border-color: #119e61;
}
.auth-buttons button:hover,
.user-center-button:hover {
  background: #f2faf6;
  border-color: #7cc8a2;
}
.auth-buttons .register-button:hover {
  color: #fff;
  background: #0b8c55;
}
.user-center-button {
  text-align: left;
  grid-template-rows: 19px 14px;
  grid-template-columns: 16px auto;
  column-gap: 7px;
  height: 40px;
  display: grid;
}
.user-center-button svg {
  grid-row: 1/3;
}
.user-center-button span {
  align-self: end;
}
.user-center-button small {
  color: #819087;
  text-overflow: ellipsis;
  align-self: start;
  max-width: 92px;
  font-size: 9px;
  font-weight: 500;
  overflow: hidden;
}
.account-loading {
  color: #87938c;
  white-space: nowrap;
  font-size: 11px;
}
.account-overlay {
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #0a181168;
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}
.account-modal {
  background: #fff;
  border: 1px solid #dce6e0;
  border-radius: 18px;
  width: min(430px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  box-shadow: 0 24px 70px #06150d45;
}
.account-modal-wide {
  width: min(900px, 100%);
}
.account-modal > header {
  background: #fff;
  border-bottom: 1px solid #e7ece9;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 72px;
  padding: 17px 20px;
  display: flex;
}
.account-modal > header div {
  flex-direction: column;
  gap: 3px;
  display: flex;
}
.account-modal > header b {
  font-size: 18px;
}
.account-modal > header span {
  color: #859189;
  font-size: 11px;
}
.modal-close {
  color: #506058;
  background: #f0f4f2;
  border: 0;
  border-radius: 9px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}
.modal-close svg {
  width: 18px;
}
.account-form {
  gap: 14px;
  padding: 20px;
  display: grid;
}
.account-form label {
  gap: 7px;
  display: grid;
}
.account-form label > span {
  color: #516058;
  font-size: 12px;
  font-weight: 700;
}
.account-form input {
  background: #fbfdfc;
  border: 1px solid #d7e1dc;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 43px;
  padding: 0 12px;
}
.account-form input:focus {
  border-color: #1da66a;
  box-shadow: 0 0 0 3px #1da66a16;
}
.account-primary {
  color: #fff;
  background: #119e61;
  border: 0;
  border-radius: 10px;
  height: 43px;
  font-weight: 800;
}
.account-primary:disabled {
  opacity: 0.55;
}
.account-switch {
  text-align: center;
  color: #86928b;
  margin: 0;
  font-size: 12px;
}
.account-switch button {
  color: #12905a;
  background: 0 0;
  border: 0;
  padding: 0;
  font-weight: 700;
}
.account-error,
.account-success,
.admin-notice {
  border-radius: 9px;
  margin: 0 20px 14px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
}
.account-error {
  color: #bf3e38;
  background: #fff0ef;
  border: 1px solid #f4d0cd;
}
.account-success {
  color: #137d51;
  background: #ebf9f2;
  border: 1px solid #ccebdc;
}
.initial-password-note {
  color: #9a6a16;
  background: #fff6e6;
  border-radius: 9px;
  margin: 0;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
}
.password-form {
  border-top: 1px solid #e7ece9;
}
.profile-card {
  background: #f5faf7;
  border: 1px solid #dfeae4;
  border-radius: 13px;
  align-items: center;
  gap: 12px;
  margin: 20px;
  padding: 15px;
  display: flex;
}
.profile-card > span {
  color: #138956;
  background: #dff5e9;
  border-radius: 12px;
  place-items: center;
  width: 44px;
  height: 44px;
  display: grid;
}
.profile-card > span svg {
  width: 21px;
}
.profile-card > div {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
  display: flex;
}
.profile-card > div b {
  font-size: 16px;
}
.profile-card > div small {
  color: #78867e;
  font-size: 11px;
}
.profile-card > i {
  color: #148958;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  display: flex;
}
.profile-card > i svg {
  width: 15px;
}
.member-tip {
  color: #84611e;
  background: #fffaf0;
  border: 1px solid #f0ddb5;
  border-radius: 11px;
  gap: 10px;
  margin: 0 20px 16px;
  padding: 12px;
  display: flex;
}
.member-tip > svg {
  flex: none;
  width: 19px;
}
.member-tip div {
  flex-direction: column;
  gap: 3px;
  display: flex;
}
.member-tip b {
  font-size: 12px;
}
.member-tip span {
  font-size: 10px;
  line-height: 1.5;
}
.center-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 20px 20px;
  display: flex;
}
.center-actions button,
.admin-toolbar button,
.admin-actions button {
  color: #405048;
  background: #fff;
  border: 1px solid #d9e3de;
  border-radius: 8px;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  font-size: 11px;
  display: flex;
}
.center-actions button svg,
.admin-toolbar button svg {
  width: 14px;
}
.center-actions button:hover,
.admin-actions button:hover {
  background: #f1faf5;
  border-color: #6bc297;
}
.admin-toolbar {
  border-bottom: 1px solid #e8eeea;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  display: flex;
}
.admin-toolbar > div {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.admin-toolbar b {
  font-size: 15px;
}
.admin-toolbar span {
  color: #829087;
  font-size: 11px;
}
.admin-list {
  gap: 10px;
  max-height: 60vh;
  padding: 0 20px 20px;
  display: grid;
  overflow: auto;
}
.admin-user {
  border: 1px solid #e0e8e3;
  border-radius: 12px;
  padding: 13px;
}
.admin-user-main {
  align-items: center;
  gap: 10px;
  display: flex;
}
.admin-avatar {
  color: #68786f;
  background: #edf4f0;
  border-radius: 10px;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
}
.admin-avatar svg {
  width: 18px;
}
.admin-avatar.is-admin {
  color: #128555;
  background: #e4f7ed;
}
.admin-user-main > div {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
  display: flex;
}
.admin-user-main b {
  align-items: center;
  gap: 7px;
  display: flex;
}
.admin-user-main b small {
  color: #128555;
  background: #e3f6ec;
  border-radius: 99px;
  padding: 2px 5px;
  font-size: 9px;
}
.admin-user-main span {
  color: #839087;
  font-size: 10px;
}
.admin-user-main > i {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}
.admin-user-main > i.active {
  color: #15905b;
}
.admin-user-main > i.disabled {
  color: #ca443d;
}
.admin-actions {
  border-top: 1px solid #edf1ef;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  padding-top: 11px;
  display: flex;
}
.admin-actions button {
  padding: 6px 8px;
}
.admin-actions .danger-lite {
  color: #c43d36;
  border-color: #f0d0cd;
}
.admin-notice {
  color: #20784f;
  word-break: break-all;
  background: #f0faf5;
  border: 1px solid #cce9da;
  margin: 14px 20px;
}
@media (width<=700px) {
  body > div > header {
    gap: 8px;
    height: auto;
    min-height: 72px;
    padding: 12px 14px;
  }
  .brand > div {
    display: none;
  }
  .header-tools {
    gap: 5px;
  }
  .header-tools > em {
    padding: 6px 8px;
  }
  .auth-buttons {
    gap: 4px;
  }
  .auth-buttons button {
    height: 34px;
    padding: 0 8px;
  }
  .user-center-button {
    padding: 0 8px;
  }
  .balance-tools {
    order: -1;
  }
  .deepseek-balance {
    padding: 0 6px;
  }
  .account-overlay {
    padding: 12px;
  }
  .account-modal {
    max-height: calc(100vh - 24px);
  }
  .account-modal > header {
    padding: 14px 16px;
  }
  .admin-list {
    padding: 0 12px 14px;
  }
  .admin-toolbar {
    padding: 14px 12px;
  }
  .admin-user-main > span {
    display: none;
  }
}
@media (width<=430px) {
  .header-tools > em {
    font-size: 10px;
  }
  .auth-buttons button svg {
    display: none;
  }
  .user-center-button small {
    max-width: 62px;
  }
  .deepseek-balance {
    font-size: 10px;
  }
  .balance-refresh {
    width: 27px;
  }
}
.member-feature-strip {
  color: #7a5718;
  background: linear-gradient(90deg, #fff7e6, #fffdf7);
  border: 1px solid #f1d7a5;
  border-radius: 11px;
  align-items: center;
  gap: 9px;
  margin: -4px 0 16px;
  padding: 10px 12px;
  display: flex;
}
.member-feature-strip b {
  color: #fff;
  letter-spacing: 0.04em;
  background: #e9a82e;
  border-radius: 7px;
  padding: 4px 8px;
  font-size: 12px;
}
.member-feature-strip span {
  font-size: 11px;
  font-weight: 600;
}
.member-feature-strip:after {
  content: "AI";
  color: #b77809;
  background: #fff;
  border: 1px solid #efd8aa;
  border-radius: 99px;
  margin-left: auto;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 800;
}
@media (width<=520px) {
  .member-feature-strip {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .member-feature-strip span {
    width: calc(100% - 74px);
    line-height: 1.5;
  }
  .member-feature-strip:after {
    display: none;
  }
}
.chat-file-card {
  color: #171a18;
  background: #fff;
  border-radius: 5px;
  align-items: center;
  gap: 12px;
  width: 262px;
  min-height: 96px;
  padding: 15px 14px 14px 16px;
  display: flex;
  position: relative;
}
.chat-file-card:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 14px;
}
.theirs .chat-file-card:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-right: 7px solid #fff;
  left: -6px;
}
.mine .chat-file-card:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-left: 7px solid #fff;
  right: -6px;
}
.chat-file-copy {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  gap: 7px;
  min-width: 0;
  display: flex;
}
.chat-file-copy b {
  -webkit-line-clamp: 2;
  word-break: break-all;
  -webkit-box-orient: vertical;
  max-height: 44px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}
.chat-file-copy span {
  color: #8b8f8d;
  font-size: 12px;
  line-height: 1;
}
.chat-file-icon {
  clip-path: polygon(0 0, 72% 0, 100% 24%, 100% 100%, 0 100%);
  color: #fff;
  background: #aeb5c4;
  border-radius: 5px;
  flex: none;
  place-items: center;
  width: 54px;
  height: 64px;
  display: grid;
  position: relative;
}
.chat-file-icon:before {
  content: "";
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  background: #ffffff35;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
.chat-file-icon > b {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
.chat-file-icon.word {
  background: #1884dc;
}
.chat-file-icon.excel {
  background: #14a858;
}
.chat-file-icon.pdf {
  background: #e3484c;
}
.chat-file-icon.pdf > b {
  font-size: 16px;
}
.chat-file-icon.powerpoint {
  background: #e96a38;
}
.chat-file-icon.archive {
  background: #8269c8;
}
.chat-file-icon.archive > b,
.chat-file-icon.generic > b {
  font-size: 13px;
}
.chat-file-icon.text {
  background: #dfe2ea;
}
.text-file-lines {
  gap: 6px;
  width: 26px;
  display: grid;
}
.text-file-lines em {
  background: #73809d;
  border-radius: 3px;
  height: 3px;
  display: block;
}
.text-file-lines em:nth-child(2) {
  width: 22px;
}
.text-file-lines em:nth-child(3) {
  width: 15px;
}
.composerPanel .actions .file-action {
  background: #079b51;
}
@media (width<=420px) {
  .chat-file-card {
    width: 245px;
  }
}
.preview-export-actions {
  z-index: 20;
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
  width: 140px;
  display: flex;
  position: absolute;
  top: 86px;
  right: 0;
}
.preview-export-actions .export,
.record-video,
.download-video {
  color: #fff;
  border: 0;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 8px 22px #173d2a24;
}
.preview-export-actions .export {
  padding: 12px 20px;
}
.preview-export-actions > button {
  width: 100%;
}
.record-video {
  background: #25342c;
}
.record-video:hover:not(:disabled) {
  background: #17251e;
}
.record-video.recording {
  background: #df453e;
  box-shadow: 0 8px 22px #c23b3438;
}
.download-video {
  background: #2878d0;
}
.download-video:hover {
  background: #1e68b7;
}
.record-video svg,
.download-video svg {
  width: 17px;
  height: 17px;
}
.record-video svg:last-child:not(:first-child) {
  fill: currentColor;
  width: 10px;
  height: 10px;
}
.record-video:disabled,
.download-video:disabled {
  opacity: 0.6;
  cursor: wait;
}
.phone.video-recording {
  outline-offset: 3px;
  outline: 3px solid #e24b43;
}
.phone.video-recording:after {
  content: "REC";
  z-index: 80;
  color: #fff;
  letter-spacing: 0.08em;
  background: #e13f38;
  border-radius: 99px;
  padding: 3px 6px;
  font-size: 8px;
  font-weight: 800;
  position: absolute;
  top: 48px;
  right: 10px;
}
.phone.video-recording .message-tools,
.phone.video-recording .time-tools {
  display: none !important;
}
@media (width<=520px) {
  .preview-export-actions {
    gap: 7px;
  }
  .preview-export-actions .export,
  .record-video,
  .download-video {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 12px;
  }
}
@media (width<=1200px) {
  .studio {
    grid-template-columns: minmax(0, 1fr) 430px;
  }
  .preview {
    padding-right: 0;
  }
  .preview-export-actions {
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: auto;
    position: static;
  }
  .preview-export-actions > button {
    width: auto;
  }
}
@media (width<=900px) {
  .studio {
    grid-template-columns: 1fr;
  }
}
.delete-video {
  color: #c4433c;
  background: #fff2f1;
  border: 1px solid #efcac7;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 12px 16px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 8px 22px #6e21151a;
}
.delete-video:hover {
  background: #ffe5e3;
  border-color: #e6aaa5;
}
.delete-video svg {
  width: 17px;
  height: 17px;
}
@media (width<=520px) {
  .delete-video {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 12px;
  }
}
.mode .whatsapp-mode-button.active {
  color: #087f5b;
  background: #fff;
  box-shadow: 0 3px 12px #183b2820;
}
.whatsapp-phone {
  color: #111;
  background: #efeae2;
}
.whatsapp-phone .status {
  background: #fff;
}
.whatsapp-chatbar {
  background: #fff;
  border-bottom: 1px solid #e7e5e1;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 14px 0 12px;
  display: flex;
}
.whatsapp-back {
  border-bottom: 2px solid #171a18;
  border-left: 2px solid #171a18;
  flex: none;
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
}
.whatsapp-header-avatar {
  cursor: pointer;
  flex: none;
  width: 34px;
  height: 34px;
  display: block;
}
.whatsapp-header-avatar .avatar {
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 10px;
}
.whatsapp-contact {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}
.whatsapp-contact b {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
}
.whatsapp-contact small {
  color: #7d8580;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 8px;
  overflow: hidden;
}
.whatsapp-header-actions {
  align-items: center;
  gap: 20px;
  display: flex;
}
.whatsapp-header-actions svg {
  stroke-width: 1.8px;
  width: 22px;
  height: 22px;
}
.whatsapp-messages {
  background-color: var(--chatbg, #efeae2);
  scrollbar-width: thin;
  scrollbar-color: #8d8d8d transparent;
  background-image:
    linear-gradient(#fff7, #fff7), url(/whatsapp/chat-background.png);
  background-position: 50%;
  background-size: cover;
  height: 626px;
  padding: 11px 12px 18px;
  overflow: auto;
}
.whatsapp-messages::-webkit-scrollbar {
  width: 3px;
}
.whatsapp-messages::-webkit-scrollbar-thumb {
  background: #8d8d8d;
  border-radius: 4px;
}
.whatsapp-time {
  text-align: center;
  color: #6f766f;
  margin: 3px auto 11px;
  font-size: 10px;
}
.whatsapp-time > span:first-child {
  background: #f7f5f0cc;
  border-radius: 6px;
  padding: 5px 8px;
  display: inline-block;
  box-shadow: 0 1px 2px #00000010;
}
.whatsapp-message {
  margin: 0 0 9px;
  display: flex;
  position: relative;
}
.whatsapp-message.mine {
  justify-content: flex-end;
}
.whatsapp-message.theirs {
  justify-content: flex-start;
}
.whatsapp-bubble {
  word-break: break-word;
  background: #fff;
  border-radius: 7px;
  max-width: 277px;
  min-height: 34px;
  padding: 8px 9px 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 1px 1px #00000012;
}
.whatsapp-message.mine .whatsapp-bubble {
  background: #9fea75;
}
.whatsapp-bubble:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
}
.whatsapp-message.theirs .whatsapp-bubble:before {
  border-top: 8px solid #fff;
  border-left: 7px solid #0000;
  left: -6px;
}
.whatsapp-message.mine .whatsapp-bubble:before {
  border-top: 8px solid #9fea75;
  border-right: 7px solid #0000;
  right: -6px;
}
.whatsapp-text {
  white-space: pre-wrap;
}
.whatsapp-bubble > small {
  float: right;
  color: #7b837e;
  white-space: nowrap;
  margin: 8px 0 -1px 12px;
  font-size: 8px;
  line-height: 1;
}
.whatsapp-bubble > small i,
.whatsapp-image > span i,
.whatsapp-file > small i {
  color: #29a4d9;
  letter-spacing: -2px;
  margin-left: 3px;
  font-style: normal;
  font-weight: 800;
}
.whatsapp-sender {
  color: #1f8e73;
  margin-bottom: 2px;
  font-size: 10px;
  display: block;
}
.whatsapp-message .message-tools {
  top: -15px;
}
.whatsapp-message.mine .message-tools {
  right: 4px;
}
.whatsapp-message.theirs .message-tools {
  left: 4px;
}
.whatsapp-message:hover .message-tools,
.whatsapp-message:focus-within .message-tools {
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-image {
  cursor: pointer;
  background: #fff;
  border-radius: 7px;
  max-width: 230px;
  padding: 3px;
  display: block;
  position: relative;
  box-shadow: 0 1px 2px #0001;
}
.whatsapp-message.mine .whatsapp-image {
  background: #9fea75;
}
.whatsapp-image img {
  object-fit: contain;
  border-radius: 5px;
  max-width: 224px;
  max-height: 260px;
  display: block;
}
.whatsapp-image > span {
  color: #fff;
  background: #0005;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 8px;
  position: absolute;
  bottom: 6px;
  right: 8px;
}
.whatsapp-image-placeholder {
  color: #75857c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 185px;
  height: 118px;
  display: flex;
}
.whatsapp-image-placeholder svg {
  width: 27px;
}
.whatsapp-image-placeholder b {
  font-size: 12px;
}
.whatsapp-image-placeholder small {
  font-size: 8px;
}
.whatsapp-file {
  position: relative;
}
.whatsapp-file .chat-file-card {
  width: 270px;
  min-height: 88px;
  padding: 12px;
}
.whatsapp-message.mine .whatsapp-file .chat-file-card {
  background: #9fea75;
}
.whatsapp-message.mine .whatsapp-file .chat-file-card:after {
  border-left-color: #9fea75;
}
.whatsapp-file > small {
  color: #777f7a;
  font-size: 8px;
  position: absolute;
  bottom: 5px;
  right: 8px;
}
.whatsapp-voice {
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  width: 225px;
  padding-bottom: 18px;
  display: grid;
}
.whatsapp-play {
  border-top: 8px solid #0000;
  border-bottom: 8px solid #0000;
  border-left: 12px solid #607068;
  width: 0;
  height: 0;
  margin-left: 4px;
}
.whatsapp-voice-track {
  background: #8ca098;
  border-radius: 99px;
  height: 3px;
}
.whatsapp-voice-track i {
  background: #5c6f66;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  display: block;
}
.whatsapp-voice > b {
  color: #66736d;
  font-size: 9px;
  font-weight: 400;
}
.whatsapp-voice > small {
  margin: 0;
  position: absolute;
  bottom: 6px;
  right: 8px;
}
.whatsapp-special {
  background: #fff;
  border-radius: 7px;
  align-items: center;
  gap: 10px;
  width: 245px;
  min-height: 70px;
  padding: 12px 10px;
  display: flex;
  position: relative;
  box-shadow: 0 1px 2px #0001;
}
.whatsapp-message.mine .whatsapp-special {
  background: #9fea75;
}
.whatsapp-special > svg {
  color: #fff;
  background: #25a978;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 7px;
}
.whatsapp-special > div {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.whatsapp-special b {
  font-size: 14px;
}
.whatsapp-special span {
  color: #69756f;
  font-size: 9px;
}
.whatsapp-special small {
  color: #727a76;
  font-size: 8px;
  position: absolute;
  bottom: 5px;
  right: 7px;
}
.whatsapp-composer {
  background: #f1f3f4;
  border-top: 1px solid #e2e4e3;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 7px 11px;
  display: flex;
}
.whatsapp-plus {
  flex: none;
  width: 23px;
  height: 23px;
  position: relative;
}
.whatsapp-plus:before,
.whatsapp-plus:after {
  content: "";
  background: #1d2521;
  border-radius: 2px;
  width: 2px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 10px;
}
.whatsapp-plus:after {
  transform: rotate(90deg);
}
.whatsapp-input {
  background: #fff;
  border: 1px solid #d6dbd8;
  border-radius: 20px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  height: 38px;
  padding: 0 10px;
  display: flex;
}
.whatsapp-input span {
  border: 2px solid #7d8580;
  border-radius: 50%;
  width: 16px;
  height: 13px;
  position: relative;
}
.whatsapp-input span:after {
  content: "";
  border-right: 2px solid #7d8580;
  width: 5px;
  height: 5px;
  position: absolute;
  bottom: -3px;
  right: -2px;
  transform: rotate(35deg);
}
.whatsapp-input i {
  display: none;
}
.whatsapp-camera {
  border: 2px solid #353d39;
  border-radius: 3px;
  width: 22px;
  height: 16px;
  position: relative;
}
.whatsapp-camera:before {
  content: "";
  border: 2px solid #353d39;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 3px;
  left: 6px;
}
.whatsapp-camera:after {
  content: "";
  background: #353d39;
  border-radius: 2px 2px 0 0;
  width: 8px;
  height: 4px;
  position: absolute;
  top: -5px;
  left: 3px;
}
.whatsapp-mic {
  border: 2px solid #313a35;
  border-radius: 8px;
  width: 12px;
  height: 20px;
  margin-left: 2px;
  position: relative;
}
.whatsapp-mic:before {
  content: "";
  border: 2px solid #313a35;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  width: 18px;
  height: 11px;
  position: absolute;
  top: 7px;
  left: -5px;
}
.whatsapp-mic:after {
  content: "";
  background: #313a35;
  width: 2px;
  height: 6px;
  position: absolute;
  bottom: -7px;
  left: 4px;
}
.whatsapp-phone .ios-home {
  background: #f1f3f4;
}
.phone.exporting .whatsapp-messages {
  scrollbar-width: none;
}
.phone.exporting .whatsapp-messages::-webkit-scrollbar {
  display: none;
}
@media (width<=420px) {
  .mode button {
    padding-left: 10px;
    padding-right: 10px;
  }
  .whatsapp-bubble {
    max-width: 255px;
  }
  .whatsapp-file .chat-file-card {
    width: 250px;
  }
}
.prompt-save-tools {
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  display: flex;
}
.prompt-save-tools > span {
  color: #cf433b;
  text-align: right;
  max-width: 220px;
  font-size: 11px;
  line-height: 1.35;
}
.prompt-save-button {
  color: #148555;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #bcdccc;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.16s;
  display: inline-flex;
}
.prompt-save-button:hover:not(:disabled) {
  background: #f0faf5;
  border-color: #159b61;
}
.prompt-save-button.saved {
  color: #628075;
  cursor: default;
  background: #edf7f2;
  border-color: #c9ded3;
}
.prompt-save-button svg {
  width: 15px;
  height: 15px;
}
.prompt-save-button:disabled {
  opacity: 0.78;
}
.whatsapp-phone .status,
.whatsapp-chatbar {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fffdf9e0;
}
.whatsapp-time {
  position: relative;
}
.whatsapp-time .time-tools {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s;
}
.whatsapp-time:hover .time-tools,
.whatsapp-time:focus-within .time-tools {
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-time .time-tools button {
  color: #fff;
  opacity: 0.88;
  background: #858b87;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 17px;
  height: 17px;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  display: grid;
}
.whatsapp-time .time-tools button:hover {
  opacity: 1;
  background: #4d5550;
}
.phone.exporting .whatsapp-time .time-tools {
  display: none !important;
}
@media (width<=600px) {
  .prompt-save-tools {
    justify-content: flex-start;
    width: 100%;
  }
  .prompt-save-tools > span {
    text-align: left;
  }
  .prompt-save-button {
    width: 100%;
  }
}
.whatsapp-messages {
  height: 632px;
}
.whatsapp-composer {
  background: #f4f5f6;
  border-top: 1px solid #dedede;
  height: 50px;
  padding: 0;
  display: block;
  position: relative;
}
.whatsapp-plus,
.whatsapp-camera,
.whatsapp-mic,
.whatsapp-input span {
  background-color: #0000;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  display: block;
  position: absolute;
}
.whatsapp-plus {
  background-image: url(/whatsapp/toolbar-plus.png);
  width: 24.667px;
  height: 24.667px;
  top: 15px;
  left: 11px;
}
.whatsapp-plus:before,
.whatsapp-plus:after,
.whatsapp-input span:before,
.whatsapp-input span:after,
.whatsapp-camera:before,
.whatsapp-camera:after,
.whatsapp-mic:before,
.whatsapp-mic:after {
  display: none;
}
.whatsapp-input {
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 16px;
  width: 234px;
  height: 31px;
  padding: 0;
  position: absolute;
  top: 7px;
  left: 47px;
}
.whatsapp-input span {
  background-image: url(/whatsapp/toolbar-sticker.png);
  width: 23px;
  height: 23px;
  top: 4px;
  right: 9.333px;
}
.whatsapp-camera {
  background-image: url(/whatsapp/toolbar-camera.png);
  width: 28.333px;
  height: 23.333px;
  top: 15px;
  left: 297px;
}
.whatsapp-mic {
  background-image: url(/whatsapp/toolbar-mic.png);
  width: 20.667px;
  height: 28px;
  top: 13px;
  left: 339.667px;
}
.ai-field > span {
  position: relative;
}
.ai-field-help {
  color: #178b59;
  cursor: help;
  background: #fff;
  border: 1px solid #c7dfd2;
  border-radius: 50%;
  outline: none;
  flex: none;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-left: auto;
  position: relative;
  align-items: center !important;
  display: inline-flex !important;
}
.ai-field-help > svg {
  width: 13px;
  height: 13px;
}
.ai-field-help > i {
  z-index: 80;
  color: #dce8e1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #17251e;
  border-radius: 11px;
  width: 320px;
  padding: 13px 14px;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  transition: all 0.15s;
  position: absolute;
  top: calc(100% + 10px);
  right: -4px;
  transform: translateY(-4px);
  box-shadow: 0 15px 38px #15271d38;
}
.ai-field-help > i:before {
  content: "";
  border: 6px solid #0000;
  border-bottom-color: #17251e;
  position: absolute;
  bottom: 100%;
  right: 7px;
}
.ai-field-help > i b {
  color: #a9f1cc;
  margin-bottom: 5px;
  font-size: 12px;
  display: block;
}
.ai-field-help:hover > i,
.ai-field-help:focus > i,
.ai-field-help:focus-within > i {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.save-cloud-task {
  color: #fff;
  white-space: nowrap;
  background: #119e61;
  border: 1px solid #159b61;
  border-radius: 9px;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}
.save-cloud-task:hover:not(:disabled) {
  background: #0b8c55;
}
.save-cloud-task:disabled {
  opacity: 0.65;
  cursor: wait;
}
.save-cloud-task svg {
  width: 15px;
}
.history-task-button {
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  display: inline-flex;
  border-left: 1px solid #d2dbd6 !important;
}
.history-task-button svg {
  width: 15px;
  height: 15px;
}
.history-task-button i {
  color: #fff;
  background: #169a61;
  border-radius: 99px;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 9px;
  font-style: normal;
  display: inline-grid;
}
.task-overlay {
  z-index: 180;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #101b1678;
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}
.task-modal {
  background: #fff;
  border: 1px solid #dce8e1;
  border-radius: 18px;
  flex-direction: column;
  width: min(720px, 100%);
  max-height: min(760px, 100vh - 48px);
  display: flex;
  overflow: hidden;
  box-shadow: 0 28px 80px #0f1c1650;
}
.task-modal-head {
  border-bottom: 1px solid #e3ebe6;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  display: flex;
}
.task-modal-head > div {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.task-modal-head b {
  align-items: center;
  gap: 8px;
  font-size: 17px;
  display: flex;
}
.task-modal-head b svg {
  color: #15965e;
  width: 19px;
}
.task-modal-head span {
  color: #849087;
  font-size: 11px;
}
.task-modal-head > button {
  color: #526159;
  background: #f1f5f3;
  border: 0;
  border-radius: 9px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}
.task-modal-head > button svg {
  width: 18px;
}
.task-modal-toolbar {
  background: #f8fbf9;
  border-bottom: 1px solid #e8eeea;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  display: flex;
}
.task-modal-toolbar > span {
  color: #7c8982;
  font-size: 11px;
}
.task-modal-toolbar button {
  color: #3e5247;
  background: #fff;
  border: 1px solid #d5e2db;
  border-radius: 8px;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  font-size: 11px;
  display: flex;
}
.task-modal-toolbar svg {
  width: 13px;
}
.task-error {
  color: #c4423a;
  background: #fff2f1;
  border: 1px solid #f0cfcb;
  border-radius: 8px;
  margin: 12px 20px 0;
  padding: 9px 11px;
  font-size: 12px;
}
.task-list {
  gap: 10px;
  padding: 14px 20px 20px;
  display: grid;
  overflow: auto;
}
.task-empty {
  color: #8a978f;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 230px;
  display: flex;
}
.task-empty svg {
  color: #57a67d;
  width: 34px;
  height: 34px;
}
.task-empty b {
  color: #405047;
  font-size: 14px;
}
.task-empty span {
  font-size: 11px;
}
.task-card {
  background: #fcfefd;
  border: 1px solid #e0e8e3;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 15px;
  display: flex;
}
.task-card > div:first-child {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  display: flex;
}
.task-card > div:first-child > b {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  overflow: hidden;
}
.task-card > div:first-child > span {
  color: #637168;
  font-size: 11px;
}
.task-card > div:first-child > small {
  color: #96a099;
  font-size: 10px;
}
.task-card > div:last-child {
  flex: none;
  gap: 7px;
  display: flex;
}
.task-card button {
  border-radius: 8px;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}
.task-card button svg {
  width: 14px;
}
.task-restore {
  color: #128457;
  background: #edf9f3;
  border: 1px solid #bcdcca;
}
.task-delete {
  color: #c34b43;
  background: #fff4f3;
  border: 1px solid #efd0cd;
}
.task-card button:disabled {
  opacity: 0.5;
  cursor: wait;
}
@media (width<=700px) {
  .save-cloud-task {
    justify-content: center;
    width: 36px;
    padding: 0;
    font-size: 0;
  }
  .save-cloud-task svg {
    width: 16px;
  }
  .mode {
    max-width: 100%;
    overflow-x: auto;
  }
  .mode button {
    flex: none !important;
  }
  .ai-field-help > i {
    width: min(300px, 100vw - 60px);
    right: -4px;
  }
  .task-overlay {
    padding: 12px;
  }
  .task-modal {
    max-height: calc(100vh - 24px);
  }
  .task-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .task-card > div:last-child {
    width: 100%;
  }
  .task-card button {
    flex: 1;
    justify-content: center;
  }
}
.docx-source-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 1px;
  display: flex;
}
.docx-source-row > span {
  color: #819087;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}
.docx-upload-button {
  color: #128557;
  cursor: pointer;
  background: #eef9f3;
  border: 1px solid #b9dbc9;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}
.docx-upload-button:hover {
  background: #e4f6ed;
  border-color: #159b61;
}
.docx-upload-button svg {
  width: 15px;
  height: 15px;
}
.docx-upload-button input {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.docx-source-list {
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 2px;
  display: flex;
}
.docx-source-chip {
  color: #38483f;
  background: #fff;
  border: 1px solid #d8e6de;
  border-radius: 9px;
  align-items: center;
  min-height: 30px;
  font-weight: 400;
  gap: 6px !important;
  padding: 5px 5px 5px 9px !important;
  display: inline-flex !important;
}
.docx-source-chip b {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 130px;
  font-size: 11px;
  overflow: hidden;
}
.docx-source-chip small {
  color: #168455 !important;
  background: #e8f6ee !important;
  padding: 2px 5px !important;
  font-size: 9px !important;
}
.docx-source-chip button {
  color: #bd4a43;
  background: #f5eeed;
  border: 0;
  border-radius: 6px;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 15px;
  line-height: 1;
  display: grid;
}
.docx-source-chip button:hover {
  background: #fbdedb;
}
.document-chat-tabs {
  scrollbar-width: thin;
  align-items: stretch;
  gap: 7px;
  width: 100%;
  padding: 1px 1px 4px;
  display: flex;
  overflow-x: auto;
}
.document-chat-tab {
  cursor: pointer;
  background: #f7faf8;
  border: 1px solid #d8e3dd;
  border-radius: 10px;
  align-items: stretch;
  min-width: 102px;
  max-width: 170px;
  transition: all 0.16s;
  display: flex;
  position: relative;
}
.document-chat-tab:hover {
  background: #f1faf5;
  border-color: #91c9aa;
}
.document-chat-tab.active {
  background: #e9f8f0;
  border-color: #159b61;
  box-shadow: 0 0 0 2px #159b6114;
}
.document-chat-tab > button:first-child {
  color: #24342b;
  text-align: left;
  background: 0 0;
  border: 0;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  padding: 8px 25px 8px 10px;
  display: flex;
}
.document-chat-tab b {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 128px;
  font-size: 11px;
  overflow: hidden;
}
.document-chat-tab small {
  color: #7f8b84;
  font-size: 9px;
}
.document-chat-delete {
  z-index: 3;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  background: #e8453d;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  transition: all 0.14s;
  display: grid;
  position: absolute;
  top: -6px;
  right: -5px;
}
.document-chat-tab:hover .document-chat-delete,
.document-chat-tab:focus-within .document-chat-delete {
  opacity: 1;
  pointer-events: auto;
}
.phone.exporting ~ .document-chat-tabs {
  display: none;
}
@media (width<=700px) {
  .docx-source-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .docx-upload-button {
    width: 100%;
  }
  .document-chat-tabs {
    max-width: 375px;
  }
}
.ai-interface-hint {
  background: #f8fbf9;
  border: 1px dashed #cfe1d7;
  border-radius: 9px;
  flex-wrap: wrap;
  margin-top: 1px;
  padding: 8px 9px;
  font-weight: 400;
  align-items: center !important;
  gap: 5px !important;
  display: flex !important;
}
.ai-interface-hint b {
  color: #526159;
  margin-right: 2px;
  font-size: 10px;
}
.ai-interface-hint > span {
  color: #168357;
  background: #e8f6ee;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 9px;
  line-height: 1.2;
}
.ai-interface-hint small {
  width: 100%;
  color: #8a958f !important;
  background: 0 0 !important;
  padding: 0 !important;
  font-size: 9px !important;
  font-weight: 400 !important;
}
.android-bluetooth,
.battery-number {
  display: none;
}
.phone.android .status {
  background: #ededed;
  height: 34px;
  padding: 0 24px;
}
.phone.android .status > b {
  font-size: 14px;
  font-weight: 500;
}
.phone.android .status-icons {
  gap: 6px;
  height: 16px;
}
.phone.android .android-bluetooth {
  background: url(/android/status-bluetooth.png) 50%/10px 15px no-repeat;
  flex: none;
  width: 10px;
  height: 15px;
  display: block;
}
.phone.android .cellular-bars {
  display: none;
}
.phone.android .status-wifi {
  background: url(/android/status-wifi.png) 50%/17px 14px no-repeat;
  flex: none;
  width: 17px;
  height: 14px;
  display: block;
}
.phone.android .status-icons em {
  text-align: center;
  width: auto;
  min-width: 17px;
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  display: block;
}
.phone.android .status-battery {
  background: url(/android/status-battery-frame.png) 50%/26px 14px no-repeat;
  border: 0;
  width: 26px;
  height: 14px;
  padding: 0;
  display: block;
  position: relative;
}
.phone.android .status-battery:after,
.phone.android .status-battery > i {
  display: none;
}
.phone.android .status-battery .battery-number {
  color: #222;
  place-items: center;
  font:
    600 8px/14px Arial,
    sans-serif;
  display: grid;
  position: absolute;
  inset: 0 3px 0 0;
}
.phone.android .status-battery.low .battery-number {
  color: #e53832;
}
.phone.android:not(.whatsapp-phone):not(.wallet) {
  height: 840px;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .chatbar {
  background: #ededed;
  border-bottom: 1px solid #d5d5d5;
  height: 45px;
  padding: 0 15px;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .chatbar .nav-back {
  background: url(/android/nav-back.png) 0/14px 22px no-repeat;
  width: 50px;
  height: 45px;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .chatbar .nav-more {
  background: url(/android/nav-more.png) 100%/24px 11px no-repeat;
  width: 50px;
  height: 45px;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .chatbar > div {
  font-size: 15px;
  font-weight: 600;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .chatbar > div b {
  font-weight: 600;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .messages {
  background: #ededed;
  height: 687.333px;
  padding: 18px 10px;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .msg {
  gap: 10px;
  margin-bottom: 18px;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .bubble {
  max-width: 258px;
  padding: 10px 12px;
  font-size: 15px;
  line-height: 1.45;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .time {
  margin-bottom: 20px;
  font-size: 13px;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .composer {
  background: #f2f2f2 url(/android/composer.png) 50%/375px 73.667px no-repeat;
  border: 0;
  height: 73.667px;
  padding: 0;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .composer > * {
  visibility: hidden;
}
.phone.android:not(.whatsapp-phone):not(.wallet) .navline {
  display: none;
}
.whatsapp-phone.android .whatsapp-messages {
  height: 676px;
}
.ios-phone {
  background: var(--ios-chat-bg, #ededed);
  color: #161a18;
  width: 375px;
  height: 812px;
  position: relative;
  overflow: hidden;
}
.ios-status {
  background: #ededed;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  padding: 0 14.333px 0 31.667px;
  display: flex;
}
.ios-status > b {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
.ios-status-icons {
  color: #111;
  align-items: center;
  gap: 2px;
  height: 15px;
  display: flex;
}
.ios-cellular {
  background: url(/status/ios-single-4-dark.png) 50%/18px 12px no-repeat;
  flex: none;
  width: 18px;
  height: 12px;
}
.ios-cellular-1 {
  background-image: url(/status/ios-single-1-dark.png);
}
.ios-cellular-2 {
  background-image: url(/status/ios-single-2-dark.png);
}
.ios-cellular-3 {
  background-image: url(/status/ios-single-3-dark.png);
}
.ios-cellular-4 {
  background-image: url(/status/ios-single-4-dark.png);
}
.ios-status-wifi {
  background: url(/status/ios-wifi-3-dark.png) 50%/21px 15px no-repeat;
  flex: none;
  width: 21px;
  height: 15px;
}
.ios-wifi-1 {
  background-image: url(/status/ios-wifi-1-dark.png);
}
.ios-wifi-2 {
  background-image: url(/status/ios-wifi-2-dark.png);
}
.ios-wifi-3 {
  background-image: url(/status/ios-wifi-3-dark.png);
}
.ios-status-network {
  text-align: center;
  width: 19px;
  font:
    500 12px/15px Arial,
    sans-serif;
}
.ios-status-battery {
  background: url(/status/ios-battery.png) 50%/25px 12px no-repeat;
  flex: none;
  width: 25px;
  height: 12px;
  padding: 2.333px 5.333px 2.333px 2.333px;
}
.ios-battery-level {
  background: #000;
  border-radius: 1.333px;
  max-width: 17.333px;
  height: 7.333px;
  display: block;
}
.ios-battery-low .ios-battery-level {
  background: #ff3b30;
}
.ios-battery-charging {
  position: relative;
}
.ios-battery-charging .ios-battery-level {
  background: #65c466;
}
.ios-battery-charging.ios-battery-low .ios-battery-level {
  background: #ff3b30;
}
.ios-battery-charging:after {
  content: "";
  background: url(/status/ios-battery-charge-dark.png) 50%/6px 12px no-repeat;
  width: 6px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ios-chatbar {
  background: #ededed;
  border-bottom: 1px solid #d5d5d5;
  align-items: center;
  height: 44px;
  padding: 0 16.667px;
  display: flex;
}
.ios-nav-back {
  background: url(/wechat/nav-back.png) 0/9px 17.333px no-repeat;
  flex: none;
  width: 50px;
  height: 44px;
}
.ios-nav-more {
  background: url(/wechat/nav-more.png) 100%/23.333px 4px no-repeat;
  flex: none;
  width: 50px;
  height: 44px;
}
.ios-chat-title {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  font-size: 17px;
  line-height: 1;
  display: flex;
}
.ios-chat-title b {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
  font-weight: 500;
  overflow: hidden;
}
.ios-chat-title small {
  color: #888;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 400;
}
.ios-messages {
  background: var(--ios-chat-bg, #ededed);
  scrollbar-width: thin;
  scrollbar-color: #8d8d8d transparent;
  height: 634px;
  padding: 18px 12px;
  overflow: auto;
}
.ios-messages::-webkit-scrollbar {
  width: 3px;
}
.ios-messages::-webkit-scrollbar-thumb {
  background: #8d8d8d;
  border-radius: 4px;
}
.ios-message {
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  display: flex;
  position: relative;
}
.ios-message.ios-mine {
  flex-direction: row-reverse;
}
.ios-avatar-upload {
  cursor: pointer;
  border-radius: 5px;
  flex: none;
  width: 40px;
  height: 40px;
  display: block;
}
.ios-avatar-upload > input {
  display: none;
}
.ios-chat-avatar {
  color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  overflow: hidden;
}
.ios-chat-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.ios-bubble {
  word-break: break-word;
  white-space: pre-wrap;
  background: #fff;
  border-radius: 5px;
  max-width: 235px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.ios-mine .ios-bubble {
  background: #98e970;
}
.ios-bubble:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 13px;
}
.ios-theirs .ios-bubble:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-right: 7px solid #fff;
  left: -6px;
}
.ios-mine .ios-bubble:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-left: 7px solid #98e970;
  right: -6px;
}
.ios-time-row {
  text-align: center;
  color: #8b918d;
  margin: 0 auto 16px;
  font-size: 11px;
  position: relative;
}
.ios-time-tools {
  margin-left: 4px;
}
.ios-time-tools button {
  opacity: 0;
  color: #777;
  background: 0 0;
  border: 0;
  padding: 1px 2px;
}
.ios-time-row:hover .ios-time-tools button {
  opacity: 0.75;
}
.ios-message-tools {
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  gap: 4px;
  display: flex;
  position: absolute;
  top: -17px;
}
.ios-mine .ios-message-tools {
  right: 40px;
}
.ios-theirs .ios-message-tools {
  left: 40px;
}
.ios-message:hover .ios-message-tools,
.ios-message:focus-within .ios-message-tools {
  opacity: 1;
  pointer-events: auto;
}
.ios-message-tools button {
  color: #fff;
  background: #858b87;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 19px;
  min-width: 19px;
  height: 19px;
  padding: 0;
  font-size: 12px;
  line-height: 1;
  display: grid;
}
.ios-pic {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #d6dfd8, #a7c4b1);
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 145px;
  height: 102px;
  font-size: 12px;
  display: flex;
}
.ios-pic > input {
  display: none;
}
.ios-image-placeholder small {
  opacity: 0.85;
  font-size: 9px;
}
.ios-actual-pic {
  background: 0 0;
  width: auto;
  max-width: 145px;
  height: auto;
  max-height: 220px;
  display: block;
}
.ios-actual-pic img {
  object-fit: contain;
  border-radius: 7px;
  max-width: 145px;
  max-height: 220px;
  display: block;
}
.ios-voice {
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  min-width: 84px;
  max-width: 218px;
  min-height: 41px;
  display: flex;
}
.ios-voice b {
  font-size: 14px;
  font-weight: 400;
}
.ios-voice-waves {
  background: 50%/11.333px 16.333px no-repeat;
  flex: none;
  width: 11.333px;
  height: 16.333px;
}
.ios-voice-mine .ios-voice-waves {
  background-image: url(/wechat/voice-right.png);
}
.ios-voice-other .ios-voice-waves {
  background-image: url(/wechat/voice-left.png);
}
.ios-voice-unread {
  background: #ed3d32;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
}
.ios-voice-mine .ios-voice-unread {
  left: -14px;
  right: auto;
}
.ios-money-card {
  color: #fff;
  background: #f79c46;
  border-radius: 5px;
  grid-template-rows: 64px 23.667px;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 10px;
  width: 233.333px;
  height: 87.667px;
  padding: 0 12.667px;
  display: grid;
  position: relative;
}
.ios-money-card:before {
  content: "";
  background: #f79c46;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 16.667px;
  left: -4px;
  transform: rotate(45deg);
}
.ios-mine .ios-money-card:before {
  left: auto;
  right: -4px;
}
.ios-money-symbol {
  align-self: center;
  width: 40px;
  height: 40px;
}
.ios-envelope-symbol {
  background: url(/wechat/redpacket.png) 50%/34px 40px no-repeat;
  width: 34px;
  margin-left: 3px;
}
.ios-transfer-symbol {
  background: url(/wechat/transfer.png) 50%/40px 40px no-repeat;
}
.ios-money-copy {
  flex-direction: column;
  align-self: center;
  min-width: 0;
  display: flex;
}
.ios-money-copy b {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.25;
  overflow: hidden;
}
.ios-money-copy span {
  font-size: 12px;
}
.ios-money-card > small {
  color: #faecda;
  border-top: 1px solid #f0b36f;
  grid-column: 1/-1;
  margin: 0 -12.667px;
  padding: 0 12.667px;
  font-size: 12px;
  line-height: 23.667px;
}
.ios-file-card {
  color: #171a18;
  background: #fff;
  border-radius: 5px;
  align-items: center;
  gap: 12px;
  width: 245px;
  min-height: 92px;
  padding: 14px 13px 13px 15px;
  display: flex;
  position: relative;
}
.ios-file-card:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 14px;
}
.ios-theirs .ios-file-card:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-right: 7px solid #fff;
  left: -6px;
}
.ios-mine .ios-file-card:after {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-left: 7px solid #fff;
  right: -6px;
}
.ios-file-copy {
  flex-direction: column;
  flex: 1;
  gap: 7px;
  min-width: 0;
  display: flex;
}
.ios-file-copy b {
  word-break: break-all;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}
.ios-file-copy span {
  color: #8b8f8d;
  font-size: 12px;
}
.ios-file-icon {
  clip-path: polygon(0 0, 72% 0, 100% 24%, 100% 100%, 0 100%);
  color: #fff;
  background: #aeb5c4;
  border-radius: 5px;
  flex: none;
  place-items: center;
  width: 50px;
  height: 60px;
  display: grid;
  position: relative;
}
.ios-file-icon > b {
  font-size: 22px;
}
.ios-file-word {
  background: #1884dc;
}
.ios-file-excel {
  background: #14a858;
}
.ios-file-pdf {
  background: #e3484c;
}
.ios-file-powerpoint {
  background: #e96a38;
}
.ios-file-archive {
  background: #8269c8;
}
.ios-text-file-lines {
  gap: 5px;
  width: 24px;
  display: grid;
}
.ios-text-file-lines em {
  background: #73809d;
  border-radius: 3px;
  height: 3px;
}
.android-text-file-lines {
  gap: 5px;
  width: 24px;
  display: grid;
}
.android-text-file-lines em {
  background: #73809d;
  border-radius: 3px;
  height: 3px;
}
.ios-composer {
  background: #f6f6f6;
  align-items: center;
  height: 55.667px;
  display: flex;
}
.ios-input-voice {
  background: url(/wechat/bottom-voice.png) 50%/26.667px 26.667px no-repeat;
  flex: none;
  width: 26.667px;
  height: 26.667px;
  margin-left: 10.667px;
}
.ios-composer-input {
  background: #fff;
  border-radius: 5px;
  flex: 1;
  height: 40px;
  margin: 0 10.667px;
}
.ios-input-emoji {
  background: url(/wechat/bottom-emoji.png) 50%/26.667px 26.667px no-repeat;
  flex: none;
  width: 26.667px;
  height: 26.667px;
}
.ios-input-plus {
  background: url(/wechat/bottom-more.png) 50%/26.667px 26.667px no-repeat;
  flex: none;
  width: 26.667px;
  height: 26.667px;
  margin: 0 10.667px 0 13px;
}
.ios-home {
  background: #f6f6f6;
  justify-content: center;
  align-items: flex-start;
  height: 34px;
  display: flex;
}
.ios-home i {
  background: url(/wechat/home-bar.png) 50%/134px 5px no-repeat;
  width: 134px;
  height: 5px;
  margin-top: 21px;
}
.android-phone {
  background: var(--android-chat-bg, #ededed);
  color: #111;
  width: 375px;
  height: 840px;
  position: relative;
  overflow: hidden;
}
.android-status {
  background: #ededed;
  justify-content: space-between;
  align-items: center;
  height: 34px;
  padding: 0 24px;
  display: flex;
}
.android-status > b {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.android-status-icons {
  color: #171717;
  align-items: center;
  gap: 5px;
  height: 18px;
  display: flex;
}
.android-status-bluetooth {
  background: url(/android/status-bluetooth.png) 50%/10px 15px no-repeat;
  flex: none;
  width: 10px;
  height: 15px;
}
.android-status-wifi {
  background: url(/android/status-wifi.png) 50%/17px 14px no-repeat;
  flex: none;
  width: 17px;
  height: 14px;
}
.android-status-signal {
  background: url(/android/status-signal.png) 50%/21px 18px no-repeat;
  flex: none;
  width: 21px;
  height: 18px;
}
.android-status-network {
  text-align: center;
  min-width: 18px;
  font:
    600 10px/14px Arial,
    sans-serif;
}
.android-status-battery {
  background: url(/android/status-battery-frame.png) 50%/26px 14px no-repeat;
  flex: none;
  width: 26px;
  height: 14px;
  position: relative;
}
.android-battery-number {
  text-align: center;
  color: #222;
  width: 23px;
  height: 14px;
  font:
    600 8px/14px Arial,
    sans-serif;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.android-battery-low .android-battery-number {
  color: #e53832;
}
.android-chatbar {
  background: #ededed;
  border-bottom: 1px solid #d5d5d5;
  align-items: center;
  height: 45px;
  padding: 0 15px;
  display: flex;
}
.android-nav-back {
  background: url(/android/nav-back.png) 0/14px 22px no-repeat;
  flex: none;
  width: 50px;
  height: 45px;
}
.android-nav-more {
  background: url(/android/nav-more.png) 100%/24px 11px no-repeat;
  flex: none;
  width: 50px;
  height: 45px;
}
.android-chat-title {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  font-size: 17px;
  line-height: 1;
  display: flex;
}
.android-chat-title b {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 230px;
  font-weight: 400;
  overflow: hidden;
}
.android-chat-title small {
  color: #898989;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 400;
}
.android-messages {
  background: var(--android-chat-bg, #ededed);
  scrollbar-width: thin;
  scrollbar-color: #8d8d8d transparent;
  height: 687.333px;
  padding: 18px 10px;
  overflow: auto;
}
.android-messages::-webkit-scrollbar {
  width: 3px;
}
.android-messages::-webkit-scrollbar-thumb {
  background: #8d8d8d;
  border-radius: 4px;
}
.android-message {
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  display: flex;
  position: relative;
}
.android-message.android-mine {
  flex-direction: row-reverse;
}
.android-avatar-upload {
  cursor: pointer;
  border-radius: 7px;
  flex: none;
  width: 38px;
  height: 38px;
  display: block;
}
.android-avatar-upload > input {
  display: none;
}
.android-chat-avatar {
  color: #fff;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  overflow: hidden;
}
.android-chat-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.android-bubble {
  word-break: break-word;
  white-space: pre-wrap;
  background: #fff;
  border-radius: 4px;
  max-width: 258px;
  padding: 9px 11px;
  font-size: 17px;
  line-height: 1.45;
  position: relative;
}
.android-mine .android-bubble {
  background: #8eea61;
}
.android-bubble:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 13px;
}
.android-theirs .android-bubble:after {
  border-top: 7px solid #0000;
  border-bottom: 7px solid #0000;
  border-right: 8px solid #fff;
  left: -7px;
}
.android-mine .android-bubble:after {
  border-top: 7px solid #0000;
  border-bottom: 7px solid #0000;
  border-left: 8px solid #8eea61;
  right: -7px;
}
.android-time-row {
  text-align: center;
  color: #929795;
  margin: 2px auto 20px;
  font-size: 13px;
  position: relative;
}
.android-time-tools {
  margin-left: 5px;
}
.android-time-tools button {
  opacity: 0;
  color: #777;
  background: 0 0;
  border: 0;
  padding: 1px 2px;
}
.android-time-row:hover .android-time-tools button {
  opacity: 0.75;
}
.android-message-tools {
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  gap: 4px;
  display: flex;
  position: absolute;
  top: -18px;
}
.android-mine .android-message-tools {
  right: 38px;
}
.android-theirs .android-message-tools {
  left: 38px;
}
.android-message:hover .android-message-tools,
.android-message:focus-within .android-message-tools {
  opacity: 1;
  pointer-events: auto;
}
.android-message-tools button {
  color: #fff;
  background: #858b87;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  padding: 0;
  font-size: 12px;
  display: grid;
}
.android-pic {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #d6dfd8, #a7c4b1);
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 155px;
  height: 110px;
  font-size: 13px;
  display: flex;
}
.android-pic > input {
  display: none;
}
.android-image-placeholder small {
  font-size: 9px;
}
.android-actual-pic {
  background: 0 0;
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 260px;
  display: block;
}
.android-actual-pic img {
  object-fit: contain;
  border-radius: 6px;
  max-width: 160px;
  max-height: 260px;
  display: block;
}
.android-voice {
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-width: 92px;
  max-width: 245px;
  min-height: 45px;
  display: flex;
}
.android-voice b {
  font-size: 16px;
  font-weight: 400;
}
.android-voice-waves {
  background: 50%/13px 19px no-repeat;
  flex: none;
  width: 13px;
  height: 19px;
}
.android-voice-mine .android-voice-waves {
  background-image: url(/wechat/voice-right.png);
}
.android-voice-other .android-voice-waves {
  background-image: url(/wechat/voice-left.png);
}
.android-voice-unread {
  background: #ed3d32;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
}
.android-voice-mine .android-voice-unread {
  left: -14px;
  right: auto;
}
.android-money-card {
  color: #fff;
  background: #f79c46;
  border-radius: 5px;
  grid-template-rows: 68px 26px;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 11px;
  width: 245px;
  height: 94px;
  padding: 0 13px;
  display: grid;
  position: relative;
}
.android-money-card:before {
  content: "";
  background: #f79c46;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 17px;
  left: -5px;
  transform: rotate(45deg);
}
.android-mine .android-money-card:before {
  left: auto;
  right: -5px;
}
.android-money-symbol {
  align-self: center;
  width: 42px;
  height: 42px;
}
.android-envelope-symbol {
  background: url(/wechat/redpacket.png) 50%/36px 42px no-repeat;
  width: 36px;
  margin-left: 3px;
}
.android-transfer-symbol {
  background: url(/wechat/transfer.png) 50%/42px 42px no-repeat;
}
.android-money-copy {
  flex-direction: column;
  align-self: center;
  min-width: 0;
  display: flex;
}
.android-money-copy b {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
  line-height: 1.25;
  overflow: hidden;
}
.android-money-copy span {
  font-size: 12px;
}
.android-money-card > small {
  color: #faecda;
  border-top: 1px solid #f0b36f;
  grid-column: 1/-1;
  margin: 0 -13px;
  padding: 0 13px;
  font-size: 12px;
  line-height: 26px;
}
.android-file-card {
  color: #171a18;
  background: #fff;
  border-radius: 5px;
  align-items: center;
  gap: 12px;
  width: 255px;
  min-height: 98px;
  padding: 15px 14px 14px 16px;
  display: flex;
  position: relative;
}
.android-file-card:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 14px;
}
.android-theirs .android-file-card:after {
  border-top: 7px solid #0000;
  border-bottom: 7px solid #0000;
  border-right: 8px solid #fff;
  left: -7px;
}
.android-mine .android-file-card:after {
  border-top: 7px solid #0000;
  border-bottom: 7px solid #0000;
  border-left: 8px solid #fff;
  right: -7px;
}
.android-file-copy {
  flex-direction: column;
  flex: 1;
  gap: 7px;
  min-width: 0;
  display: flex;
}
.android-file-copy b {
  word-break: break-all;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}
.android-file-copy span {
  color: #8b8f8d;
  font-size: 12px;
}
.android-file-icon {
  clip-path: polygon(0 0, 72% 0, 100% 24%, 100% 100%, 0 100%);
  color: #fff;
  background: #aeb5c4;
  border-radius: 5px;
  flex: none;
  place-items: center;
  width: 54px;
  height: 64px;
  display: grid;
  position: relative;
}
.android-file-icon > b {
  font-size: 24px;
}
.android-file-word {
  background: #1884dc;
}
.android-file-excel {
  background: #14a858;
}
.android-file-pdf {
  background: #e3484c;
}
.android-file-powerpoint {
  background: #e96a38;
}
.android-file-archive {
  background: #8269c8;
}
.android-composer-reference {
  background: #f2f2f2 url(/android/composer.png) 50%/375px 73.667px no-repeat;
  flex: none;
  width: 375px;
  height: 73.667px;
}
.ios-draggable,
.android-draggable {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}
.ios-dragging,
.android-dragging {
  opacity: 0.42;
  transform: scale(0.985);
}
.ios-drop-target:before,
.android-drop-target:before {
  content: "";
  z-index: 20;
  background: #18aa69;
  border-radius: 99px;
  height: 3px;
  position: absolute;
  top: -10px;
  left: 4px;
  right: 4px;
}
.ios-phone.exporting .ios-messages {
  scrollbar-width: none;
}
.ios-phone.exporting .ios-messages::-webkit-scrollbar {
  display: none;
}
.ios-phone.exporting .ios-message-tools,
.ios-phone.exporting .ios-time-tools {
  display: none !important;
}
.android-phone.exporting .android-messages {
  scrollbar-width: none;
}
.android-phone.exporting .android-messages::-webkit-scrollbar {
  display: none;
}
.android-phone.exporting .android-message-tools,
.android-phone.exporting .android-time-tools {
  display: none !important;
}
@media (width<=900px) {
  .ios-phone {
    transform-origin: top;
    margin-bottom: -92px;
    transform: scale(0.88);
  }
  .android-phone {
    transform-origin: top;
    margin-bottom: -101px;
    transform: scale(0.88);
  }
}
@media (width<=420px) {
  .ios-phone {
    margin-bottom: -140px;
    transform: scale(0.82);
  }
  .android-phone {
    margin-bottom: -151px;
    transform: scale(0.82);
  }
}
.docx-upload-emphasis {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  display: flex;
}
.docx-dropzone {
  background: #f8fcfa;
  border: 1.5px dashed #8bcaaa;
  border-radius: 11px;
  width: 100%;
  padding: 9px;
  transition:
    border-color 0.16s,
    background 0.16s,
    box-shadow 0.16s;
}
.docx-dropzone.dragging {
  background: #e7f8ef;
  border-color: #0f9d60;
  box-shadow: 0 0 0 3px #159b6118;
}
.docx-dropzone .docx-upload-button {
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: auto 1fr;
  justify-content: start;
  width: 100%;
  min-height: 54px;
  display: grid;
}
.docx-dropzone .docx-upload-button svg {
  grid-row: 1/3;
}
.docx-dropzone .docx-upload-button > span {
  font-size: 11px;
  font-weight: 800;
}
.docx-dropzone .docx-upload-button > small {
  color: #718078 !important;
  background: 0 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 9px !important;
  font-weight: 400 !important;
}
.docx-batch-callout {
  color: #a94f00;
  background: #fff3cf;
  border: 1px solid #f1b64d;
  border-radius: 7px;
  align-items: center;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  display: inline-flex;
  box-shadow: 0 3px 10px #d7841324;
}
.docx-batch-callout:before {
  content: "重点";
  color: #fff;
  background: #f29a19;
  border-radius: 5px;
  margin-right: 6px;
  padding: 2px 5px;
  font-size: 9px;
  line-height: 1.2;
}
@media (width<=700px) {
  .docx-upload-emphasis {
    width: 100%;
  }
  .docx-batch-callout {
    justify-content: center;
    width: 100%;
  }
}
.docx-source-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  width: 100%;
  display: grid;
}
.docx-source-preview {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  display: flex;
}
.docx-source-preview > .docx-source-chip {
  align-self: flex-start;
}
.docx-source-preview > label {
  color: #536159;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  display: flex;
}
.docx-source-preview > label > small {
  color: #7a8780 !important;
  background: #eef3f0 !important;
  border-radius: 99px !important;
  padding: 2px 6px !important;
  font-size: 8px !important;
  font-weight: 700 !important;
}
.docx-source-preview > textarea {
  color: #4b5851;
  resize: vertical;
  cursor: text;
  background: #f7f9f8;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  outline: none;
  width: 100%;
  height: 92px;
  min-height: 72px;
  padding: 8px 9px;
  font:
    10px/1.55 Inter,
    PingFang SC,
    Microsoft YaHei,
    sans-serif;
}
.docx-source-preview > textarea:focus {
  border-color: #94c9ad;
  box-shadow: 0 0 0 2px #159b6112;
}
@media (width<=700px) {
  .docx-source-list {
    grid-template-columns: 1fr;
  }
  .docx-source-preview > textarea {
    height: 86px;
  }
}
.docx-mode-overlay {
  z-index: 240;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #10201978;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}
.docx-mode-modal {
  background: #fff;
  border: 1px solid #cce3d6;
  border-radius: 16px;
  align-items: flex-start;
  gap: 14px;
  width: min(500px, 100%);
  padding: 20px;
  display: flex;
  box-shadow: 0 26px 70px #10201855;
}
.docx-mode-icon {
  color: #fff;
  background: #159b61;
  border-radius: 12px;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 16px;
  font-weight: 900;
  display: grid;
}
.docx-mode-modal.warning {
  border-color: #f0c66e;
}
.docx-mode-modal.warning .docx-mode-icon {
  background: #ed971c;
}
.docx-mode-modal > div {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  min-width: 0;
  display: flex;
}
.docx-mode-modal b {
  color: #24342b;
  font-size: 16px;
}
.docx-mode-modal p {
  color: #526159;
  margin: 7px 0 5px;
  font-size: 12px;
  line-height: 1.65;
}
.docx-mode-modal small {
  color: #d07808;
  font-size: 10px;
  line-height: 1.55;
}
.docx-mode-modal button {
  color: #fff;
  background: #119e61;
  border: 0;
  border-radius: 9px;
  align-self: flex-end;
  min-width: 88px;
  height: 36px;
  margin-top: 14px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
}
.docx-mode-modal button:hover {
  background: #0b8c55;
}
@media (width<=700px) {
  .docx-mode-overlay {
    padding: 12px;
  }
  .docx-mode-modal {
    padding: 16px;
  }
  .docx-mode-icon {
    width: 38px;
    height: 38px;
  }
}
.ios-image-replace,
.android-image-replace {
  font: inherit;
  border: 0;
  padding: 0;
}
.whatsapp-image.image-replace {
  font: inherit;
  color: inherit;
  text-align: inherit;
  border: 0;
}
.docx-image-library {
  background: #f9fcfa;
  border: 1px solid #d8e7df;
  border-radius: 12px;
  margin-top: 12px;
  padding: 12px;
}
.docx-image-library-head {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  display: flex;
}
.docx-image-library-head > div {
  align-items: center;
  gap: 7px;
  display: flex;
}
.docx-image-library-head svg {
  color: #159b61;
  width: 17px;
  height: 17px;
}
.docx-image-library-head b {
  font-size: 13px;
}
.docx-image-library-head span,
.docx-image-library-head small {
  color: #7c8982;
  font-size: 10px;
}
.docx-image-library-grid {
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 9px;
  display: grid;
}
.docx-library-card {
  background: #fff;
  border: 1px solid #dce6e0;
  border-radius: 9px;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 6px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 8px #173b2810;
}
.docx-library-card > img {
  object-fit: cover;
  background: #eef2ef;
  border-radius: 6px;
  width: 100%;
  height: 76px;
}
.docx-library-card > button,
.docx-picker-delete {
  z-index: 3;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  background: #e8453d;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 21px;
  height: 21px;
  padding: 0;
  font-size: 15px;
  line-height: 1;
  transition: all 0.14s;
  display: grid;
  position: absolute;
  top: 2px;
  right: 2px;
}
.docx-library-card:hover > button,
.docx-library-card:focus-within > button,
.docx-picker-card:hover .docx-picker-delete,
.docx-picker-card:focus-within .docx-picker-delete {
  opacity: 1;
  pointer-events: auto;
}
.docx-library-card > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #39483f;
  font-size: 10px;
  overflow: hidden;
}
.docx-library-card > small {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #168357;
  font-size: 9px;
  font-weight: 700;
  overflow: hidden;
}
.image-source-overlay {
  z-index: 220;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #10201978;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}
.image-source-modal {
  background: #fff;
  border: 1px solid #d8e6de;
  border-radius: 16px;
  flex-direction: column;
  width: min(720px, 100%);
  max-height: min(760px, 100vh - 40px);
  padding: 0;
  display: flex;
  overflow: hidden;
  box-shadow: 0 28px 80px #10201855;
}
.image-source-modal > header {
  border-bottom: 1px solid #e4ece7;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  display: flex;
}
.image-source-modal > header > div {
  flex-direction: column;
  gap: 3px;
  display: flex;
}
.image-source-modal > header b {
  font-size: 16px;
}
.image-source-modal > header span {
  color: #7a8780;
  font-size: 10px;
}
.image-source-modal > header > button {
  color: #4b5d53;
  background: #f0f5f2;
  border: 0;
  border-radius: 8px;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  display: grid;
}
.image-source-modal > header svg {
  width: 17px;
}
.local-image-choice {
  color: #128557;
  cursor: pointer;
  background: #edf9f3;
  border: 1px solid #9fd0b7;
  border-radius: 10px;
  align-items: center;
  gap: 11px;
  margin: 14px 18px 8px;
  padding: 12px 14px;
  display: flex;
  position: relative;
}
.local-image-choice:hover {
  background: #e4f6ed;
  border-color: #159b61;
}
.local-image-choice > svg {
  width: 22px;
}
.local-image-choice > div {
  flex-direction: column;
  gap: 2px;
  display: flex;
}
.local-image-choice b {
  font-size: 13px;
}
.local-image-choice span {
  color: #6d7f75;
  font-size: 9px;
}
.local-image-choice input {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.docx-picker-title {
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px;
  display: flex;
}
.docx-picker-title > div {
  align-items: center;
  gap: 7px;
  display: flex;
}
.docx-picker-title svg {
  color: #159b61;
  width: 17px;
}
.docx-picker-title b {
  font-size: 13px;
}
.docx-picker-title > span {
  color: #7e8b84;
  font-size: 10px;
}
.docx-picker-groups {
  gap: 12px;
  padding: 0 18px 18px;
  display: grid;
  overflow: auto;
}
.docx-picker-group {
  background: #f9fbfa;
  border: 1px solid #e0e8e3;
  border-radius: 11px;
  padding: 10px;
}
.docx-picker-group > h3 {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 0 9px;
  display: flex;
}
.docx-picker-group > h3 b {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden;
}
.docx-picker-group > h3 span {
  color: #168357;
  background: #e4f5eb;
  border-radius: 99px;
  flex: none;
  padding: 2px 6px;
  font-size: 9px;
}
.docx-picker-group > div {
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 8px;
  display: grid;
}
.docx-picker-card {
  background: #fff;
  border: 1px solid #dce6e0;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 5px;
  display: flex;
  position: relative;
}
.docx-picker-thumb {
  cursor: pointer;
  background: #eef2ef;
  border: 0;
  border-radius: 6px;
  height: 82px;
  padding: 0;
  overflow: hidden;
}
.docx-picker-thumb:hover {
  box-shadow: 0 0 0 2px #18a765;
}
.docx-picker-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.docx-picker-card > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #536159;
  font-size: 9px;
  overflow: hidden;
}
.docx-picker-empty {
  color: #87948d;
  text-align: center;
  background: #f8fbf9;
  border: 1px dashed #cddbd3;
  border-radius: 11px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 190px;
  margin: 0 18px 18px;
  display: flex;
}
.docx-picker-empty svg {
  color: #59a77e;
  width: 30px;
  height: 30px;
}
.docx-picker-empty b {
  color: #506057;
  font-size: 13px;
}
.docx-picker-empty span {
  font-size: 10px;
}
@media (width<=700px) {
  .docx-image-library-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .docx-image-library-grid,
  .docx-picker-group > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .image-source-overlay {
    padding: 10px;
  }
  .image-source-modal {
    max-height: calc(100vh - 20px);
  }
  .docx-library-card > button,
  .docx-picker-delete {
    opacity: 1;
    pointer-events: auto;
  }
}
.ai-template-button {
  color: #128357;
  white-space: nowrap;
  background: #edf9f3;
  border: 1px solid #8dcdb0;
  border-radius: 7px;
  height: 25px;
  margin-left: auto;
  padding: 0 9px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.ai-template-button:hover {
  background: #ddf4e8;
  border-color: #159b61;
}
.ai-field > span > .ai-template-button + .ai-field-help {
  margin-left: 0;
}
.ai-template-overlay {
  z-index: 260;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #0d1c1575;
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}
.ai-template-modal {
  background: #fff;
  border: 1px solid #d9e6df;
  border-radius: 18px;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  box-shadow: 0 28px 80px #0c1d1450;
}
.ai-template-modal > header {
  background: #fff;
  border-bottom: 1px solid #e3ebe6;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 76px;
  padding: 17px 20px;
  display: flex;
}
.ai-template-modal > header > div {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.ai-template-modal > header b {
  font-size: 18px;
}
.ai-template-modal > header span {
  color: #839087;
  font-size: 11px;
}
.ai-template-modal > header > button {
  color: #53625a;
  background: #eff4f1;
  border: 0;
  border-radius: 9px;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
}
.ai-template-modal > header > button:hover {
  background: #e5eee9;
}
.ai-template-modal > header svg {
  width: 18px;
}
.ai-template-options {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  display: grid;
}
.ai-template-options > button {
  color: #23332a;
  text-align: left;
  background: #fbfdfc;
  border: 1px solid #dce7e1;
  border-radius: 13px;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  padding: 15px;
  transition: all 0.16s;
  display: flex;
}
.ai-template-options > button:hover {
  background: #edf9f3;
  border-color: #43b27c;
  transform: translateY(-1px);
  box-shadow: 0 7px 20px #168a5616;
}
.ai-template-kind {
  color: #117d50;
  background: #daf3e6;
  border-radius: 11px;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 11px;
  font-weight: 800;
  display: grid !important;
}
.ai-template-kind.group {
  color: #6d53b3;
  background: #e7e2fa;
}
.ai-template-options > button > div {
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  display: flex;
}
.ai-template-options > button b {
  font-size: 14px;
}
.ai-template-options > button small {
  color: #718078;
  font-size: 10px;
  line-height: 1.4;
}
.ai-template-options > button p {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #95a099;
  margin: 3px 0 0;
  font-size: 9px;
  overflow: hidden;
}
.ai-template-saved {
  border-top: 1px solid #e4ece7;
  padding: 15px 18px 18px;
}
.ai-template-saved-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}
.ai-template-saved-head b {
  font-size: 13px;
}
.ai-template-saved-head span {
  color: #849088;
  font-size: 10px;
}
.ai-template-saved-list {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}
.ai-template-saved-card {
  background: #fbfdfc;
  border: 1px solid #dce7e1;
  border-radius: 12px;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.ai-template-saved-apply {
  color: #26362d;
  text-align: left;
  background: transparent;
  border: 0;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 12px 34px 12px 12px;
  display: flex;
}
.ai-template-saved-apply:hover {
  background: #edf9f3;
}
.ai-template-saved-apply > div {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  display: flex;
}
.ai-template-saved-apply b,
.ai-template-saved-apply small,
.ai-template-saved-apply em {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ai-template-saved-apply b {
  font-size: 12px;
}
.ai-template-saved-apply small {
  color: #718078;
  font-size: 9px;
}
.ai-template-saved-apply em {
  color: #9aa39e;
  font-size: 8px;
  font-style: normal;
}
.ai-template-saved-delete {
  z-index: 2;
  color: #c64a43;
  background: #fff0ef;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 23px;
  height: 23px;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  display: grid;
  position: absolute;
  top: 7px;
  right: 7px;
}
.ai-template-saved-delete:hover {
  color: #fff;
  background: #d74e46;
}
.ai-template-saved-empty {
  color: #829087;
  text-align: center;
  background: #fafcfb;
  border: 1px dashed #d5e2db;
  border-radius: 10px;
  padding: 15px;
  font-size: 10px;
}
.ai-template-saved-empty.error {
  color: #ba443e;
  background: #fff7f6;
  border-color: #efc7c4;
}
@media (width<=600px) {
  .ai-template-overlay {
    padding: 12px;
  }
  .ai-template-options {
    grid-template-columns: 1fr;
  }
  .ai-template-modal > header {
    padding: 15px 16px;
  }
  .ai-template-options {
    padding: 14px;
  }
  .ai-template-saved {
    padding: 13px 14px 15px;
  }
  .ai-template-saved-list {
    grid-template-columns: 1fr;
  }
}
.docx-template-overlay {
  z-index: 275;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #0d1c1575;
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}
.docx-template-modal {
  background: #fff;
  border: 1px solid #d9e6df;
  border-radius: 18px;
  width: min(620px, 100%);
  max-height: min(720px, 100vh - 40px);
  overflow: auto;
  box-shadow: 0 28px 80px #0c1d1450;
}
.docx-template-modal > header {
  background: #fff;
  border-bottom: 1px solid #e3ebe6;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 78px;
  padding: 17px 20px;
  display: flex;
}
.docx-template-modal > header > div {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.docx-template-modal > header b {
  font-size: 18px;
}
.docx-template-modal > header span {
  color: #7d8b83;
  font-size: 11px;
}
.docx-template-modal > header > button {
  color: #53625a;
  background: #eff4f1;
  border: 0;
  border-radius: 9px;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
}
.docx-template-modal > header > button svg {
  width: 18px;
}
.docx-template-default {
  padding: 18px 20px 8px;
}
.docx-template-default > button,
.docx-template-list > button {
  text-align: left;
  color: #24342b;
  background: #f7fcf9;
  border: 1px solid #cfe3d8;
  border-radius: 13px;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 13px;
  display: flex;
}
.docx-template-default > button:hover,
.docx-template-list > button:hover {
  background: #effaf4;
  border-color: #16a366;
}
.docx-template-default > button > span,
.docx-template-list > button > span {
  color: #118d59;
  background: #dff4e9;
  border-radius: 10px;
  flex: none;
  place-items: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}
.docx-template-default > button > div,
.docx-template-list > button > div {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  display: flex;
}
.docx-template-default b,
.docx-template-list b {
  font-size: 13px;
}
.docx-template-default small,
.docx-template-list small {
  color: #728078;
  font-size: 11px;
  line-height: 1.5;
}
.docx-template-saved-head {
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 9px;
  display: flex;
}
.docx-template-saved-head b {
  font-size: 13px;
}
.docx-template-saved-head span {
  color: #86928b;
  font-size: 11px;
}
.docx-template-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 20px 14px;
  display: grid;
}
.docx-template-list > button {
  background: #fff;
}
.docx-template-list small {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.docx-template-list em {
  color: #9aa39e;
  font-size: 9px;
  font-style: normal;
}
.docx-template-empty {
  color: #829087;
  text-align: center;
  background: #fafcfb;
  border: 1px dashed #d5e2db;
  border-radius: 12px;
  margin: 0 20px 14px;
  padding: 18px;
  font-size: 12px;
}
.docx-template-empty.error {
  color: #ba443e;
  background: #fff7f6;
  border-color: #efc7c4;
}
.docx-template-modal > footer {
  border-top: 1px solid #e3ebe6;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  display: flex;
}
.docx-template-modal > footer span {
  color: #7d8a82;
  font-size: 11px;
}
.docx-template-modal > footer button {
  color: #526159;
  background: #fff;
  border: 1px solid #d8e2dc;
  border-radius: 9px;
  height: 34px;
  padding: 0 16px;
  font-size: 12px;
}
.docx-template-modal button:disabled {
  opacity: 0.55;
  cursor: wait;
}
@media (width<=620px) {
  .docx-template-overlay {
    padding: 12px;
  }
  .docx-template-modal > header {
    padding: 15px 16px;
  }
  .docx-template-default {
    padding: 15px 16px 8px;
  }
  .docx-template-saved-head {
    padding-left: 16px;
    padding-right: 16px;
  }
  .docx-template-list {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .docx-template-empty {
    margin-left: 16px;
    margin-right: 16px;
  }
  .docx-template-modal > footer {
    padding: 12px 16px;
  }
}
.ai-language-select {
  color: #607067;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #cfe0d7;
  border-radius: 9px;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 8px 0 10px;
  display: inline-flex;
}
.ai-language-select > span {
  color: #738178;
  font-size: 10px;
}
.ai-language-select select {
  color: #178657;
  cursor: pointer;
  background: 0 0;
  border: 0;
  outline: none;
  min-width: 108px;
  font-size: 12px;
  font-weight: 700;
}
.ai-language-select:focus-within {
  border-color: #159b61;
  box-shadow: 0 0 0 3px #20a66b14;
}
.ai-language-select select:disabled {
  cursor: wait;
  opacity: 0.65;
}
.prompt-save-tools > .ai-translation-status {
  color: #178657;
}
.prompt-save-tools {
  flex-wrap: wrap;
}
@media (width<=700px) {
  .ai-language-select {
    flex: 1;
    min-width: 180px;
  }
  .ai-language-select select,
  .prompt-save-button {
    flex: 1;
  }
}
