:root {
  color-scheme: light;
  --navy: #153552;
  --gold: #b78b35;
  --paper: #f7f4ed;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

.approved-page,
.artwork {
  width: 100%;
}

.artwork {
  position: relative;
  overflow: hidden;
}

.artwork picture,
.artwork picture img {
  display: block;
  width: 100%;
  height: auto;
}

.artwork picture img {
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot,
.payment-anchor {
  position: absolute;
  z-index: 3;
  display: block;
}

.hotspot {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 3px;
  color: transparent;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: rgb(255 255 255 / 15%);
}

.hotspot:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.desktop-hotspot { display: block; }
.mobile-hotspot { display: none; }

/* 电脑版定稿图上的顶部菜单 */
.desktop-hotspot.nav-payment { left: 60.1%; top: .10%; width: 17%; height: .58%; }
.desktop-hotspot.nav-service { left: 76.1%; top: .10%; width: 15.3%; height: .58%; }

/* 电脑版定稿图上的预约区 */
.desktop-hotspot.payment-anchor { left: 0; top: 89.2%; width: 1px; height: 1px; }
.desktop-hotspot.pay-taobao { left: 56.2%; top: 93.45%; width: 34.1%; height: .75%; }
.desktop-hotspot.pay-wechat { left: 56.2%; top: 94.27%; width: 34.1%; height: .75%; }

.manual-toast {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  width: max-content;
  max-width: calc(100% - 32px);
  transform: translateX(-50%);
  padding: 12px 18px;
  border: 1px solid rgb(183 139 53 / 60%);
  border-radius: 4px;
  color: #fff;
  background: rgb(21 53 82 / 96%);
  font: 600 15px/1.5 system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  text-align: center;
  box-shadow: 0 12px 32px rgb(0 0 0 / 22%);
}

@media (max-width: 899px) {
  .desktop-hotspot { display: none; }
  .mobile-hotspot { display: block; }

  /* 手机版定稿图上的顶部菜单 */
  .mobile-hotspot.nav-payment { left: 58.5%; top: .08%; width: 15.7%; height: .47%; }
  .mobile-hotspot.nav-service { left: 74.7%; top: .08%; width: 15.8%; height: .47%; }

  /* 手机版定稿图上的预约区 */
  .mobile-hotspot.payment-anchor { left: 0; top: 89.55%; width: 1px; height: 1px; }
  .mobile-hotspot.pay-taobao { left: 7.8%; top: 96.77%; width: 40.9%; height: .66%; }
  .mobile-hotspot.pay-wechat { left: 50.8%; top: 96.77%; width: 41.5%; height: .66%; }
}

@media (prefers-reduced-motion: no-preference) {
  .manual-toast { animation: toast-in 180ms ease-out; }
}

@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 8px); }
}
