.fit-guide-launch {
  position: fixed;
  z-index: 150000;
  top: 76px;
  right: 336px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #111;
  border-radius: 7px;
  background: #111;
  color: #fff;
  font: 650 12px/1 "Segoe UI", "Microsoft YaHei", sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

html:not(.fit-guide-route) .fit-guide-launch,
html:not(.fit-guide-route) .fit-guide-card,
html:not(.fit-guide-route) .fit-guide-highlight,
html:not(.fit-guide-route) .fit-guide-toast {
  display: none !important;
}

.fit-guide-launch:hover {
  background: #303030;
}

.fit-guide-launch-mark {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 800;
}

.fit-guide-preview-badge {
  position: fixed;
  z-index: 149999;
  top: 78px;
  right: 456px;
  padding: 8px 11px;
  border: 1px solid #dfe2dd;
  border-radius: 7px;
  background: rgba(255, 255, 255, .96);
  color: #697168;
  font: 600 11px/1 "Segoe UI", "Microsoft YaHei", sans-serif;
}

html.fit-guide-active #sct-order-dock {
  visibility: hidden !important;
  opacity: 0 !important;
  transform: translateX(100%) !important;
  pointer-events: none !important;
}

.fit-guide-highlight {
  position: fixed;
  z-index: 300000;
  display: none;
  border: 2px solid #fff;
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(10, 12, 10, .72), 0 14px 44px rgba(0, 0, 0, .28);
  pointer-events: none;
  transition: top .22s ease, left .22s ease, width .22s ease, height .22s ease;
}

.fit-guide-highlight::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 16px;
  content: "";
}

.fit-guide-card {
  position: fixed;
  z-index: 300002;
  display: none;
  width: min(380px, calc(100vw - 28px));
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 12px;
  background: #fff;
  color: #171717;
  box-shadow: 0 24px 68px rgba(0, 0, 0, .28);
  font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
}

.fit-guide-card.is-open,
.fit-guide-highlight.is-open {
  display: block;
}

.fit-guide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fit-guide-progress-label {
  color: #6b7280;
  font-size: 12px;
  font-weight: 650;
}

.fit-guide-close {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: #f1f2ef;
  color: #4b5563;
  font-size: 19px;
  cursor: pointer;
}

.fit-guide-progress {
  height: 4px;
  margin: 13px 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eae6;
}

.fit-guide-progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: #171717;
  transition: width .22s ease;
}

.fit-guide-kicker {
  display: block;
  margin-bottom: 7px;
  color: #71776f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
}

.fit-guide-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.fit-guide-description {
  margin: 10px 0 0;
  color: #555d54;
  font-size: 13px;
  line-height: 1.7;
}

.fit-guide-note {
  display: flex;
  gap: 8px;
  margin-top: 13px;
  padding: 10px 11px;
  border-radius: 8px;
  background: #f3f4f1;
  color: #4c544b;
  font-size: 12px;
  line-height: 1.55;
}

.fit-guide-note::before {
  flex: none;
  color: #171717;
  font-weight: 800;
  content: "提示";
}

.fit-guide-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.fit-guide-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  background: #fff;
  color: #171717;
  font: 650 12px/1 "Segoe UI", "Microsoft YaHei", sans-serif;
  cursor: pointer;
}

.fit-guide-button.primary {
  margin-left: auto;
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.fit-guide-button[hidden] {
  display: none;
}

.fit-guide-toast {
  position: fixed;
  z-index: 300003;
  right: 24px;
  bottom: 24px;
  display: none;
  padding: 11px 15px;
  border-radius: 8px;
  background: #171717;
  color: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  font: 600 12px/1.4 "Segoe UI", "Microsoft YaHei", sans-serif;
}

.fit-guide-toast.is-open {
  display: block;
}

@media (max-width: 720px) {
  .fit-guide-preview-badge {
    display: none;
  }

  .fit-guide-launch {
    top: 68px;
    right: 14px;
  }

  .fit-guide-card {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    top: auto !important;
    width: auto;
    padding: 17px;
  }

  .fit-guide-title {
    font-size: 18px;
  }

  .fit-guide-highlight {
    border-radius: 9px;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .fit-guide-preview-badge {
    display: none;
  }

  .fit-guide-launch {
    right: 18px;
  }
}
