:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #939495;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7ebf0;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.preview-state-nav {
  display: none;
}

.preview-hub-return {
  display: none;
}

.rednote-process-note {
  display: none;
}

.ios-device {
  position: relative;
  width: 375px;
  height: 812px;
  flex: 0 0 auto;
}

.device-button {
  display: none;
}

.app-screen {
  position: relative;
  width: 375px;
  height: 812px;
  overflow: hidden;
  background: #939495;
}

.ios-status-bar {
  position: absolute;
  z-index: 20;
  top: 14px;
  right: 22px;
  left: 22px;
  display: flex;
  height: 18px;
  align-items: center;
  justify-content: space-between;
  color: #111;
  pointer-events: none;
}

.ios-time {
  min-width: 38px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.25px;
  text-align: center;
}

.ios-status-icons {
  display: flex;
  height: 18px;
  align-items: center;
  gap: 6px;
}

.cellular {
  display: flex;
  width: 17px;
  height: 12px;
  align-items: flex-end;
  gap: 1.5px;
}

.cellular i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: currentColor;
}

.cellular i:nth-child(1) {
  height: 4px;
}

.cellular i:nth-child(2) {
  height: 6px;
}

.cellular i:nth-child(3) {
  height: 9px;
}

.cellular i:nth-child(4) {
  height: 12px;
}

.wifi {
  width: 17px;
  height: 14px;
}

.battery {
  position: relative;
  width: 23px;
  height: 11px;
  padding: 1.5px;
  border: 1px solid rgba(17, 17, 17, 0.72);
  border-radius: 3px;
}

.battery::after {
  position: absolute;
  top: 3px;
  right: -3px;
  width: 2px;
  height: 5px;
  border-radius: 0 1px 1px 0;
  background: rgba(17, 17, 17, 0.48);
  content: "";
}

.battery i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.5px;
  background: #111;
}

.dynamic-island {
  position: absolute;
  z-index: 21;
  top: 9px;
  left: 50%;
  width: 92px;
  height: 27px;
  border-radius: 16px;
  background: #050505;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transform: translateX(-50%);
}

.dynamic-island i {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 37% 35%, #274767 0, #112235 34%, #050609 70%);
  box-shadow: 0 0 0 1px #0c0d0e;
}

.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.rednote-compose {
  position: absolute;
  z-index: 100;
  inset: 0;
  overflow: hidden;
  color: #343434;
  background: #fff;
}

.app-screen.is-composing .ios-status-bar {
  z-index: 120;
}

.app-screen.is-composing .ios-toast {
  z-index: 130;
}

.app-screen.is-composing .dynamic-island {
  opacity: 0;
}

.compose-nav {
  position: absolute;
  top: 43px;
  right: 0;
  left: 0;
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 15px;
}

.compose-nav button {
  display: grid;
  width: 30px;
  height: 36px;
  place-items: center;
}

.compose-nav svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.compose-nav .compose-info {
  color: #949494;
}

.compose-nav .compose-info svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.compose-media-strip {
  position: absolute;
  top: 88px;
  right: 12px;
  left: 12px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.compose-media-strip::-webkit-scrollbar {
  display: none;
}

.compose-media-thumb,
.compose-media-add {
  position: relative;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  overflow: hidden;
  border-radius: 10px;
}

.compose-media-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compose-media-add {
  background: #fafafa;
}

.compose-media-add span::before,
.compose-media-add span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 1.5px;
  border-radius: 2px;
  background: #929292;
  content: "";
  transform: translate(-50%, -50%);
}

.compose-media-add span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.compose-editor {
  position: absolute;
  top: 228px;
  right: 10px;
  left: 10px;
  height: 177px;
}

.compose-title {
  width: 100%;
  height: 32px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: #343434;
  background: transparent;
  font: 700 19px/32px -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  letter-spacing: -0.3px;
}

.compose-title-suggestions,
.compose-topic-suggestions {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.compose-title-suggestions::-webkit-scrollbar,
.compose-topic-suggestions::-webkit-scrollbar {
  display: none;
}

.compose-title-suggestions {
  position: absolute;
  top: 36px;
  right: -10px;
  left: 0;
  gap: 8px;
}

.compose-title-suggestions button {
  height: 29px;
  flex: 0 0 auto;
  padding: 0 8px;
  border-radius: 15px;
  color: #909090;
  background: #fafafa;
  font-size: 12px;
  font-weight: 600;
}

.compose-editor textarea {
  position: absolute;
  top: 74px;
  right: 0;
  left: 0;
  width: 100%;
  height: 101px;
  padding: 11px 0 0;
  resize: none;
  border: 0;
  border-top: 1px solid #f5f5f5;
  border-radius: 0;
  outline: 0;
  color: #3a3a3a;
  background: transparent;
  font: 600 15.5px/23px -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
}

.compose-editor textarea::placeholder {
  color: #929292;
  opacity: 1;
}

.compose-assist {
  position: absolute;
  top: 408px;
  right: 0;
  left: 0;
  height: 83px;
  overflow: hidden;
  background: #fff;
}

.compose-assist-actions {
  position: relative;
  display: flex;
  height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.compose-assist-actions > button {
  position: relative;
  display: flex;
  height: 29px;
  align-items: center;
  padding: 0 8px;
  border-radius: 15px;
  color: #3b3b3b;
  background: #fafafa;
  font-size: 12.5px;
  font-weight: 650;
}

.compose-assist-actions .assist-symbol {
  margin-right: 4px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.compose-assist-actions .poll-action {
  padding-left: 8px;
}

.poll-action svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.poll-new {
  position: absolute;
  top: -10px;
  right: -2px;
  height: 14px;
  padding: 0 5px;
  border-radius: 4px 6px 4px 0;
  color: #fff;
  background: #ff3152;
  font-size: 8px;
  font-style: italic;
  font-weight: 700;
  line-height: 14px;
}

.compose-assist-actions .assist-collapse {
  width: 30px;
  flex: 0 0 30px;
  margin-left: auto;
  padding: 0;
  justify-content: center;
}

.assist-collapse svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 160ms ease;
}

.compose-assist.tags-collapsed .assist-collapse svg {
  transform: rotate(180deg);
}

.compose-topic-suggestions {
  height: 49px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  transition: opacity 140ms ease, transform 140ms ease;
}

.compose-topic-suggestions button {
  height: 30px;
  flex: 0 0 auto;
  padding: 0 9px;
  border-radius: 15px;
  color: #969696;
  background: #fafafa;
  font-size: 12.5px;
  font-weight: 600;
}

.compose-assist.tags-collapsed .compose-topic-suggestions {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-5px);
}

.compose-settings {
  position: absolute;
  top: 498px;
  right: 0;
  left: 0;
  border-top: 1px solid #f6f6f6;
  background: #fff;
}

.compose-setting-row {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  padding: 0 13px 0 17px;
  border-bottom: 1px solid #f5f5f5;
  text-align: left;
}

.setting-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-right: 8px;
  fill: none;
  stroke: #343434;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.compose-setting-row strong {
  flex: 0 0 auto;
  color: #343434;
  font-size: 15px;
  font-weight: 650;
}

.setting-tip {
  display: flex;
  height: 31px;
  min-width: 0;
  align-items: center;
  margin-left: auto;
  padding: 0 8px;
  overflow: hidden;
  border-radius: 16px;
  color: #3d3d3d;
  background: #fafafa;
  font-size: 12.5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setting-chevron {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-left: 5px;
  fill: none;
  stroke: #999;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.compose-advanced-row {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px 0 12px;
  border-bottom: 1px solid #f7f7f7;
}

.compose-advanced-row > button:first-child {
  color: #969696;
  font-size: 13.5px;
  font-weight: 650;
}

.compose-advanced-row > button:first-child span {
  display: inline-block;
  margin-left: 2px;
  font-size: 22px;
  font-weight: 400;
  vertical-align: -1px;
}

.compose-advanced-row .save-album {
  display: flex;
  align-items: center;
  color: #3b3b3b;
  font-size: 13px;
  font-weight: 650;
}

.save-album span {
  display: grid;
  width: 18px;
  height: 18px;
  margin-right: 2px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #363636;
  font-size: 12px;
}

.compose-footer {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 92px;
  align-items: flex-start;
  padding: 10px 16px 0 12px;
  border-top: 1px solid #f5f5f5;
  background: #fff;
}

.save-draft {
  display: flex;
  width: 43px;
  height: 57px;
  flex: 0 0 43px;
  flex-direction: column;
  align-items: center;
  color: #373737;
}

.save-draft svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.save-draft span {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.publish-note {
  height: 52px;
  min-width: 0;
  flex: 1;
  margin-left: 10px;
  border-radius: 27px;
  color: #fff;
  background: #ff2442;
  font-size: 19px;
  font-weight: 700;
}

.compose-home-indicator {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 134px;
  height: 5px;
  border-radius: 3px;
  background: #000;
  transform: translateX(-50%);
}

.compose-nav button:active,
.compose-media-thumb:active,
.compose-media-add:active,
.compose-title-suggestions button:active,
.compose-assist button:active,
.compose-settings button:active,
.compose-footer button:active {
  filter: brightness(0.96);
  transform: scale(0.985);
}

.wechat-mini-program {
  position: absolute;
  z-index: 110;
  inset: 0;
  overflow: hidden;
  color: #242629;
  background: #f4f5f3;
}

.app-screen.is-wechat .ios-status-bar {
  z-index: 140;
}

.app-screen.is-wechat .dynamic-island {
  z-index: 141;
}

.app-screen.is-wechat .ios-toast {
  z-index: 150;
}

.wechat-nav {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 88px;
  align-items: flex-end;
  justify-content: center;
  padding: 0 14px 13px;
  border-bottom: 1px solid rgba(31, 34, 38, 0.06);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.wechat-nav > button {
  position: absolute;
  bottom: 8px;
  left: 9px;
  display: grid;
  width: 42px;
  height: 40px;
  place-items: center;
}

.wechat-nav > button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #17181a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.wechat-nav > strong {
  font-size: 16px;
  font-weight: 650;
  line-height: 24px;
}

.wechat-capsule {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: flex;
  width: 83px;
  height: 32px;
  align-items: center;
  justify-content: space-around;
  border: 1px solid rgba(40, 43, 48, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
}

.wechat-capsule::after {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 1px;
  background: rgba(40, 43, 48, 0.12);
  content: "";
}

.wechat-capsule i {
  margin-top: -5px;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 1px;
}

.wechat-capsule b {
  width: 14px;
  height: 14px;
  border: 2px solid #202124;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  background: #202124;
}

.wechat-login-view {
  position: absolute;
  z-index: 12;
  inset: 88px 0 0;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(20, 24, 21, 0.42);
  backdrop-filter: blur(3px);
  text-align: center;
}

.wechat-login-dialog {
  width: 100%;
  padding: 24px 20px 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 20, 16, 0.3);
}

.wechat-login-app {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wechat-app-logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #293d2e, #15251a);
  box-shadow: 0 10px 26px rgba(24, 47, 31, 0.2);
  font-family: "Songti SC", STSong, serif;
  font-size: 24px;
  font-weight: 700;
}

.wechat-login-app h1 {
  margin: 11px 0 0;
  font-size: 17px;
  line-height: 24px;
}

.wechat-login-app p {
  margin: 18px 0 0;
  color: #73767c;
  font-size: 13px;
  line-height: 19px;
}

.wechat-login-permission {
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding: 14px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  text-align: left;
}

.wechat-user-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin-right: 12px;
  place-items: center;
  border-radius: 50%;
  color: #9da1a7;
  background: #eff0f1;
}

.wechat-user-avatar svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wechat-login-permission div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.wechat-login-permission strong {
  font-size: 14px;
  line-height: 20px;
}

.wechat-login-permission small {
  margin-top: 3px;
  color: #92959a;
  font-size: 10.5px;
  line-height: 16px;
}

.wechat-login-button {
  display: flex;
  width: 100%;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 6px;
  color: #fff;
  background: #07c160;
  font-size: 15px;
  font-weight: 600;
}

.wechat-login-button svg {
  width: 26px;
  height: 23px;
  margin-right: 8px;
  fill: currentColor;
}

.wechat-login-cancel {
  margin-top: 13px;
  color: #777a80;
  font-size: 13px;
}

.wechat-login-terms {
  margin: 16px 0 0;
  color: #a0a3a8;
  font-size: 9.5px;
  line-height: 15px;
}

.wechat-gift-view {
  position: absolute;
  inset: 88px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(121, 176, 128, 0.36), transparent 28%),
    linear-gradient(180deg, #173b24 0%, #315d3b 31%, #dbe9dc 68%, #f3f5f2 100%);
}

.wechat-gift-scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 14px 36px;
  scrollbar-width: none;
}

.wechat-gift-scroll::-webkit-scrollbar {
  display: none;
}

.wechat-gift-hero {
  margin: 0 -14px;
  padding: 31px 28px 34px;
  color: #fff;
  background: transparent;
}

.wechat-gift-hero > span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  overflow: hidden;
  color: #d7f3de;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wechat-gift-hero > span b {
  font-size: 12px;
  font-weight: 750;
}

.wechat-gift-hero h1 {
  margin: 17px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.15px;
}

.wechat-gift-hero h1 > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wechat-gift-hero h1 > span + span {
  margin-top: 1px;
}

.wechat-gift-hero > strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.65px;
  white-space: nowrap;
}

.wechat-gift-hero h1 b {
  color: #f3d792;
  font-weight: 750;
}

.wechat-gift-hero + .wechat-service-team {
  margin-top: 0;
}

.wechat-trip-cover {
  position: relative;
  height: 132px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe5df;
  box-shadow: 0 7px 18px rgba(35, 43, 37, 0.09);
}

.wechat-trip-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 14, 0.7), rgba(12, 18, 14, 0.08));
  content: "";
}

.wechat-trip-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wechat-trip-cover div {
  position: absolute;
  z-index: 1;
  top: 20px;
  bottom: 18px;
  left: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.wechat-trip-cover span {
  padding: 3px 6px;
  border-radius: 5px;
  color: #21442d;
  background: #dff4e4;
  font-size: 9px;
  font-weight: 700;
}

.wechat-trip-cover strong {
  margin-top: 13px;
  font-size: 18px;
  line-height: 24px;
}

.wechat-trip-cover small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10.5px;
}

.wechat-service-team,
.wechat-friend-coupons {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(45, 53, 47, 0.06);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(38, 47, 40, 0.06);
}

.wechat-service-team > h2,
.wechat-friend-coupons > h2 {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}

.wechat-service-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.wechat-service-people article {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: #f6f7f5;
}

.wechat-person-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.wechat-person-avatar.guide {
  background: linear-gradient(145deg, #6488a9, #365d80);
}

.wechat-person-avatar.consultant {
  background: linear-gradient(145deg, #e7ad67, #b87530);
}

.wechat-service-people article > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin-left: 8px;
}

.wechat-service-people strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wechat-service-people small {
  margin-top: 2px;
  color: #92959a;
  font-size: 9px;
  line-height: 13px;
}

.wechat-add-consultant {
  width: 100%;
  height: 38px;
  margin-top: 11px;
  border: 1px solid rgba(7, 193, 96, 0.28);
  border-radius: 10px;
  color: #07a951;
  background: #f2fbf5;
  font-size: 12px;
  font-weight: 650;
}

.wechat-coupon-eyebrow {
  color: #db7d2c;
  font-size: 9.5px;
  font-weight: 700;
}

.wechat-friend-coupons > h2 {
  margin-top: 4px;
}

.wechat-friend-coupons > p {
  margin: 3px 0 0;
  color: #96999e;
  font-size: 10px;
  line-height: 15px;
}

.wechat-friend-coupons ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.wechat-friend-coupons li {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-top: 1px solid #f0f1ef;
}

.wechat-friend-coupons li > span {
  display: grid;
  width: 40px;
  height: 28px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 8px;
  color: #e87325;
  background: #fff0e5;
  font-size: 11px;
  font-weight: 750;
}

.wechat-friend-coupons li > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  margin-left: 9px;
}

.wechat-friend-coupons li strong {
  font-size: 11px;
  line-height: 16px;
}

.wechat-friend-coupons li small {
  color: #9a9da2;
  font-size: 8.5px;
  line-height: 13px;
}

.wechat-friend-coupons li em {
  margin-left: 6px;
  color: #f05a38;
  font-size: 9px;
  font-style: normal;
  font-weight: 650;
}

.wechat-claim-coupons {
  width: 100%;
  height: 42px;
  margin-top: 12px;
  border-radius: 11px;
  color: #fff;
  background: #07c160;
  box-shadow: 0 7px 16px rgba(7, 193, 96, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.wechat-claim-coupons:disabled,
.wechat-add-consultant:disabled {
  color: #6f8f79;
  background: #dcebe0;
  box-shadow: none;
}

.wechat-login-button:active,
.wechat-add-consultant:active,
.wechat-claim-coupons:active,
.wechat-consultant-sheet > button:active {
  filter: brightness(0.96);
  transform: scale(0.985);
}

.wechat-consultant-panel {
  position: absolute;
  z-index: 20;
  inset: 0;
}

.wechat-consultant-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.wechat-consultant-sheet {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 18px 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(20, 24, 21, 0.28);
  text-align: center;
}

.wechat-consultant-sheet > .wechat-person-avatar {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  font-size: 17px;
}

.wechat-consultant-sheet h2 {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 23px;
}

.wechat-consultant-sheet p {
  margin: 3px 0 0;
  color: #84878c;
  font-size: 11px;
}

.wechat-qr {
  width: 116px;
  height: 116px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid #eceeeb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(30, 34, 31, 0.08);
}

.wechat-qr svg {
  width: 100%;
  height: 100%;
}

.wechat-consultant-sheet > small {
  margin-top: 9px;
  color: #92959a;
  font-size: 9.5px;
  line-height: 15px;
}

.wechat-consultant-sheet > button:not(.wechat-consultant-cancel) {
  width: 100%;
  height: 42px;
  margin-top: 14px;
  border-radius: 10px;
  color: #fff;
  background: #07c160;
  font-size: 13px;
  font-weight: 700;
}

.wechat-consultant-cancel {
  height: 34px;
  margin-top: 5px;
  color: #777a7f;
  font-size: 12px;
}

.wechat-home-indicator {
  position: absolute;
  z-index: 30;
  bottom: 7px;
  left: 50%;
  width: 134px;
  height: 5px;
  border-radius: 3px;
  background: #000;
  pointer-events: none;
  transform: translateX(-50%);
}

.trip-preview {
  position: absolute;
  inset: 0;
  padding: 46px 16px 0;
  color: #23262a;
  background: linear-gradient(180deg, #d9f2ff 0%, #edf7f8 34%, #f3f4f7 100%);
}

.trip-preview > header {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
}

.trip-preview > header span {
  font-size: 32px;
  font-weight: 300;
}

.trip-preview > header strong {
  font-size: 17px;
  font-weight: 600;
}

.trip-preview > header i {
  font-size: 18px;
  font-style: normal;
  letter-spacing: 1px;
}

.trip-preview-cover {
  height: 142px;
  margin-top: 12px;
  padding: 24px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 255, 0.7));
  box-shadow: 0 14px 30px rgba(66, 94, 110, 0.12);
}

.trip-preview-cover small {
  color: #2d9567;
  font-size: 12px;
  font-weight: 600;
}

.trip-preview-cover h2 {
  margin: 13px 0 5px;
  font-size: 20px;
  line-height: 28px;
}

.trip-preview-cover p {
  margin: 0;
  color: #747b82;
  font-size: 13px;
}

.trip-preview-card {
  height: 210px;
  margin-top: 14px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.trip-preview-card span {
  display: block;
  height: 14px;
  margin-bottom: 22px;
  border-radius: 7px;
  background: #e5e9ed;
}

.trip-preview-card span:nth-child(1) {
  width: 56%;
}

.trip-preview-card span:nth-child(2) {
  width: 87%;
}

.trip-preview-card span:nth-child(3) {
  width: 72%;
}

.modal-scrim {
  position: absolute;
  z-index: 25;
  inset: 0;
  background: rgba(19, 25, 31, 0.36);
  backdrop-filter: blur(2px) saturate(0.86);
}

.result-sheet {
  position: absolute;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 690px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px 30px 0 0;
  background: rgba(246, 247, 249, 0.965);
  box-shadow: 0 -18px 54px rgba(20, 28, 35, 0.24);
  backdrop-filter: blur(28px) saturate(1.45);
}

.sheet-grabber {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 36px;
  height: 5px;
  border-radius: 3px;
  background: rgba(77, 77, 82, 0.26);
  transform: translateX(-50%);
}

.result-scroll {
  min-height: 0;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 28px 16px 18px;
  scrollbar-width: none;
}

.result-scroll::-webkit-scrollbar {
  display: none;
}

.success-hero {
  display: flex;
  min-height: 67px;
  align-items: center;
  padding: 0 4px;
}

.success-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin-right: 13px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #54d886, #28b965);
  box-shadow: 0 8px 18px rgba(52, 199, 89, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.success-icon svg {
  width: 34px;
  height: 34px;
}

.success-hero h1 {
  margin: 0;
  color: #17181a;
  font-size: 23px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.45px;
}

.review-card {
  border: 1px solid rgba(40, 43, 48, 0.055);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 20px rgba(40, 47, 56, 0.065);
}

.review-card {
  margin-top: 12px;
  padding: 13px 14px 12px;
}

.review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card h2 {
  margin: 0;
  color: #676a70;
  font-size: 12px;
  font-weight: 500;
}

.review-stars {
  color: #ffb323;
  font-size: 15px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(255, 170, 24, 0.16);
}

.review-card blockquote {
  margin: 8px 0 9px;
  color: #242529;
  font-size: 13px;
  font-weight: 450;
  line-height: 20px;
}

.review-card footer {
  display: flex;
  color: #8b8e93;
  font-size: 10.5px;
  line-height: 15px;
  justify-content: space-between;
}

.review-share-reward-hint {
  display: flex;
  min-height: 31px;
  align-items: center;
  margin: 9px 0 0;
  padding: 6px 9px;
  border: 1px solid rgba(231, 166, 57, 0.18);
  border-radius: 9px;
  color: #8a5a16;
  background: #fff8e9;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 16px;
}

.review-share-reward-hint > span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 6px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #e3a438;
  font-size: 9px;
  font-weight: 750;
}

.review-card .primary-action {
  height: 42px;
  margin-top: 8px;
  border-radius: 12px;
  font-size: 13px;
}

.coupon-package-card {
  margin-top: 11px;
  padding: 15px 14px 12px;
  border: 1px solid rgba(40, 43, 48, 0.055);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 20px rgba(40, 47, 56, 0.065);
}

.coupon-package-card > header {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
}

.coupon-package-card > header > div > span {
  display: inline-flex;
  height: 18px;
  align-items: center;
  padding: 0 6px;
  border-radius: 6px;
  color: #fff;
  background: #ff4b5e;
  font-size: 8.5px;
  font-weight: 650;
}

.coupon-package-card h2 {
  margin: 2px 0 0;
  color: #24262a;
  font-size: 15px;
  line-height: 20px;
  white-space: nowrap;
}

.coupon-package-card > header > button {
  width: 82px;
  height: 32px;
  flex: 0 0 82px;
  border: 1px solid rgba(255, 55, 78, 0.25);
  border-radius: 16px;
  color: #ff3850;
  background: #fff4f5;
  font-size: 10.5px;
  font-weight: 650;
}

.coupon-referral-reward {
  display: flex;
  min-height: 34px;
  align-items: center;
  margin: 8px 0 0;
  padding: 7px 9px;
  border: 1px solid rgba(222, 165, 61, 0.22);
  border-radius: 11px;
  color: #704f25;
  background: #fffbf1;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 16px;
}

.coupon-referral-reward span {
  display: inline-flex;
  height: 19px;
  flex: 0 0 auto;
  align-items: center;
  margin-right: 7px;
  padding: 0 6px;
  border-radius: 6px;
  color: #fff;
  background: #d69b32;
  font-size: 8.5px;
  font-weight: 700;
}

.coupon-list {
  margin: 9px 0 0;
  padding: 0;
  border-top: 1px solid #f0f1f3;
  list-style: none;
}

.coupon-list li {
  display: flex;
  height: 43px;
  align-items: center;
  border-bottom: 1px solid #f2f3f4;
}

.coupon-badge {
  display: grid;
  width: 36px;
  height: 30px;
  flex: 0 0 36px;
  margin-right: 9px;
  place-items: center;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 750;
}

.coupon-badge.discount {
  color: #ff4156;
  background: #fff0f2;
}

.coupon-badge.half {
  color: #8550d4;
  background: #f3edff;
}

.coupon-badge.cash {
  color: #2380d5;
  background: #eaf5ff;
}

.coupon-list li > div {
  min-width: 0;
  flex: 1;
}

.coupon-list strong,
.coupon-list small {
  display: block;
}

.coupon-list strong {
  overflow: hidden;
  color: #303237;
  font-size: 11.5px;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupon-list small {
  color: #93969c;
  font-size: 9px;
  line-height: 13px;
}

.coupon-list em {
  margin-left: 6px;
  color: #ff4055;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
}

.result-actions {
  position: relative;
  height: 25px;
  flex: 0 0 25px;
}

.negative-result-sheet {
  background: rgba(247, 247, 249, 0.975);
}

.negative-hero {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 0 4px;
}

.negative-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin-right: 13px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff5e9, #ffe2ca);
  box-shadow: 0 8px 18px rgba(214, 139, 68, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 26px;
  line-height: 1;
}

.negative-hero h1 {
  margin: 0;
  color: #17181a;
  font-size: 23px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.45px;
}

.negative-review-card,
.negative-improvement-card {
  margin-top: 13px;
  padding: 15px 14px 14px;
  border: 1px solid rgba(40, 43, 48, 0.055);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 20px rgba(40, 47, 56, 0.065);
}

.negative-review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.negative-review-card h2 {
  margin: 0;
  color: #676a70;
  font-size: 12px;
  font-weight: 500;
}

.negative-stars {
  display: flex;
  font-size: 15px;
  letter-spacing: 1px;
}

.negative-stars i {
  color: #ff9f0a;
  font-style: normal;
}

.negative-stars i:last-child {
  color: #d7d8db;
}

.negative-review-card blockquote {
  margin: 10px 0 11px;
  color: #292a2e;
  font-size: 13px;
  font-weight: 450;
  line-height: 20px;
}

.negative-review-card footer {
  display: flex;
  color: #8b8e93;
  font-size: 10.5px;
  line-height: 15px;
  justify-content: space-between;
}

.negative-improvement-card {
  padding: 16px;
  border-color: rgba(255, 149, 53, 0.12);
  background: linear-gradient(135deg, #fff8ee, #fff);
}

.negative-improvement-intro {
  margin: 0;
  color: #4a2f20;
  font-size: 13px;
  font-weight: 650;
  line-height: 20px;
}

.negative-improvement-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.negative-improvement-list li {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid rgba(176, 112, 51, 0.12);
}

.negative-improvement-list li:last-child {
  padding-bottom: 0;
}

.negative-improvement-list li > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: #ff9636;
  font-size: 11px;
  font-weight: 750;
  place-items: center;
}

.negative-improvement-list li > div {
  min-width: 0;
  flex: 1;
}

.negative-improvement-list h2 {
  margin: 1px 0 0;
  color: #4a2f20;
  font-size: 14px;
  line-height: 20px;
}

.negative-improvement-list p {
  margin: 4px 0 0;
  color: #77797e;
  font-size: 11.5px;
  line-height: 18px;
}

.negative-coupon {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 8px 9px 8px 11px;
  border: 1px solid rgba(255, 150, 54, 0.24);
  border-radius: 12px;
  background: linear-gradient(100deg, #fff0dc, #fff8ef);
}

.negative-coupon-value {
  display: flex;
  min-width: 0;
  align-items: baseline;
}

.negative-coupon-value strong {
  color: #f47d19;
  font-size: 23px;
  line-height: 27px;
  letter-spacing: -0.5px;
}

.negative-coupon-value small {
  margin-right: 1px;
  font-size: 12px;
}

.negative-coupon-value span {
  margin-left: 7px;
  color: #704a2b;
  font-size: 10.5px;
  font-weight: 650;
  white-space: nowrap;
}

.negative-coupon > button {
  height: 31px;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: #ff8b2d;
  font-size: 11px;
  font-weight: 700;
}

.negative-coupon > button:active {
  transform: scale(0.97);
}

.negative-coupon > button:disabled {
  color: #9a6f4e;
  background: #f1d4b9;
  transform: none;
}

.negative-actions {
  position: relative;
  height: 92px;
  flex: 0 0 92px;
  padding: 10px 16px 0;
  border-top: 1px solid rgba(80, 82, 88, 0.08);
  background: rgba(250, 250, 251, 0.94);
  box-shadow: 0 -9px 24px rgba(50, 56, 64, 0.045);
}

.negative-actions > button {
  width: 100%;
  height: 47px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(100deg, #ff9f36, #ff8334);
  box-shadow: 0 7px 16px rgba(255, 139, 52, 0.2);
  font-size: 15px;
  font-weight: 700;
}

.negative-actions > button:active {
  filter: brightness(0.96);
  transform: scale(0.985);
}

.primary-action {
  display: flex;
  width: 100%;
  height: 47px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(100deg, #ff3350, #ff2442);
  box-shadow: 0 7px 16px rgba(255, 36, 66, 0.22);
  font-size: 14px;
  font-weight: 650;
  transition: filter 100ms ease, transform 100ms ease;
}

.primary-action:active,
.coupon-package-card > header > button:active,
.share-options button:active,
.share-cancel:active {
  filter: brightness(0.95);
  transform: scale(0.985);
}

.primary-rednote {
  display: grid;
  width: 49px;
  height: 24px;
  flex: 0 0 49px;
  margin-right: 8px;
  place-items: center;
  border-radius: 7px;
  color: #ff2442;
  background: #fff;
  box-shadow: 0 2px 6px rgba(120, 14, 34, 0.1);
}

.primary-rednote svg {
  width: 42px;
  height: 20px;
  fill: currentColor;
}

.result-sheet[data-state="published"] .primary-action {
  background: linear-gradient(100deg, #314b35, #263c2a);
  box-shadow: 0 7px 16px rgba(38, 60, 42, 0.2);
}

.result-sheet[data-state="claimed"] .primary-action {
  background: #34c759;
  box-shadow: 0 7px 16px rgba(52, 199, 89, 0.2);
}

.result-sheet[data-state="published"] .primary-rednote,
.result-sheet[data-state="claimed"] .primary-rednote {
  display: none;
}

.home-indicator {
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 134px;
  height: 5px;
  border-radius: 3px;
  background: #000;
  transform: translateX(-50%);
}

.ios-share-panel {
  position: absolute;
  z-index: 60;
  inset: 0;
}

.share-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
}

.share-sheet {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding: 20px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(244, 244, 246, 0.965);
  box-shadow: 0 16px 48px rgba(12, 16, 22, 0.3);
  backdrop-filter: blur(28px) saturate(1.5);
}

.share-grabber {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: rgba(60, 60, 67, 0.24);
  transform: translateX(-50%);
}

.share-sheet header {
  text-align: center;
}

.share-sheet header h2 {
  margin: 3px 0 0;
  font-size: 15px;
  line-height: 21px;
}

.share-sheet header p {
  margin: 2px 0 0;
  color: #85878d;
  font-size: 10.5px;
  line-height: 16px;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}

.share-options button {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.share-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.share-icon.wechat,
.share-icon.moments {
  background: #2ecb61;
}

.share-icon.link {
  color: #1877f2;
  background: #fff;
}

.share-icon.more {
  color: #55575d;
  background: #fff;
  font-size: 28px;
  font-weight: 500;
}

.share-options small {
  margin-top: 6px;
  color: #53555a;
  font-size: 10px;
}

.share-cancel {
  width: 100%;
  height: 44px;
  margin-top: 14px;
  border-radius: 13px;
  color: #1877f2;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ios-toast {
  position: absolute;
  z-index: 70;
  top: 70px;
  left: 50%;
  max-width: 290px;
  padding: 9px 13px;
  border-radius: 14px;
  color: #fff;
  background: rgba(30, 31, 35, 0.88);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  line-height: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -8px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.ios-toast.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 700px) and (min-height: 900px) {
  body {
    background: radial-gradient(circle at 50% 42%, #fff 0%, #eef1f5 52%, #dce1e7 100%);
  }

  .ios-device {
    width: 405px;
    height: 842px;
    padding: 14px;
    border: 1px solid #4b4e52;
    border-radius: 59px;
    background: linear-gradient(145deg, #292b2e 0%, #08090a 46%, #202225 100%);
    box-shadow:
      0 35px 75px rgba(35, 42, 50, 0.28),
      0 8px 22px rgba(35, 42, 50, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  }

  .app-screen {
    border-radius: 45px;
    box-shadow: 0 0 0 1px #000;
  }

  .device-button {
    position: absolute;
    display: block;
    width: 4px;
    border-radius: 2px 0 0 2px;
    background: linear-gradient(90deg, #1a1b1d, #4a4d51);
  }

  .device-button.mute {
    top: 116px;
    left: -5px;
    height: 31px;
  }

  .device-button.volume-up {
    top: 167px;
    left: -5px;
    height: 58px;
  }

  .device-button.volume-down {
    top: 238px;
    left: -5px;
    height: 58px;
  }

  .device-button.power {
    top: 184px;
    right: -5px;
    height: 91px;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(90deg, #4a4d51, #1a1b1d);
  }
}

@media (min-width: 900px) {
  .preview-hub-return {
    position: fixed;
    z-index: 210;
    top: 24px;
    left: 24px;
    display: inline-flex;
    height: 38px;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border: 1px solid rgba(78, 86, 97, 0.1);
    border-radius: 19px;
    color: #555960;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 28px rgba(45, 54, 65, 0.12);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(20px) saturate(1.2);
  }

  .preview-hub-return:hover {
    color: #202226;
    background: #fff;
  }

  .preview-state-nav {
    position: fixed;
    z-index: 200;
    top: 50%;
    left: max(24px, calc(50% - 382px));
    display: grid;
    width: 148px;
    gap: 8px;
    padding: 13px;
    border: 1px solid rgba(78, 86, 97, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(45, 54, 65, 0.14);
    backdrop-filter: blur(24px) saturate(1.25);
    transform: translateY(-50%);
  }

  .preview-state-label {
    padding: 1px 4px 3px;
    color: #81868d;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.2px;
  }

  .preview-state-button {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    padding: 8px 9px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #555960;
    background: #f5f6f8;
    text-align: left;
    transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease, transform 100ms ease;
  }

  .preview-state-button.is-active {
    border-color: rgba(255, 54, 80, 0.24);
    color: #202226;
    background: #fff;
    box-shadow: 0 7px 18px rgba(55, 62, 72, 0.09);
  }

  .preview-state-button:active {
    transform: scale(0.98);
  }

  .preview-state-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-right: 9px;
    border-radius: 50%;
  }

  .preview-state-dot.positive {
    background: #34c759;
    box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.1);
  }

  .preview-state-dot.negative {
    background: #ff9500;
    box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.1);
  }

  .preview-state-button > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .preview-state-button strong {
    font-size: 14px;
    line-height: 18px;
  }

  .preview-state-button small {
    margin-top: 1px;
    color: #969aa1;
    font-size: 9px;
    line-height: 13px;
  }
}

@media (min-width: 1640px) and (min-height: 900px) {
  .rednote-process-note {
    position: fixed;
    z-index: 200;
    top: calc(50% + 74px);
    left: calc(50% + 280px);
    display: block;
    width: 325px;
    height: 342px;
    padding: 23px 22px;
    border: 1px solid rgba(78, 86, 97, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(45, 54, 65, 0.14);
    backdrop-filter: blur(24px) saturate(1.25);
  }

  .rednote-process-note header {
    position: relative;
    padding-left: 48px;
  }

  .rednote-process-badge {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: #ff2f4f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: -0.3px;
  }

  .rednote-process-note header p {
    margin: 0 0 2px;
    color: #8c9198;
    font-size: 11px;
    line-height: 16px;
  }

  .rednote-process-note h2 {
    margin: 0;
    color: #202226;
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.3px;
  }

  .rednote-process-note ol {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
  }

  .rednote-process-note li {
    display: grid;
    min-height: 62px;
    grid-template-columns: 31px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    border: 1px solid #eceef1;
    border-radius: 14px;
    background: #f7f8fa;
  }

  .rednote-process-note li > span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    color: #ff2f4f;
    background: rgba(255, 47, 79, 0.09);
    font-size: 12px;
    font-weight: 700;
  }

  .rednote-process-note li div {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .rednote-process-note li strong {
    color: #2a2d31;
    font-size: 13px;
    line-height: 18px;
  }

  .rednote-process-note li small {
    margin-top: 2px;
    color: #92979e;
    font-size: 10px;
    line-height: 14px;
  }
}

@media (max-height: 353px) {
  .result-sheet {
    position: relative;
  }
}
