/* Public quiz k7m2qx */
:root {
  --paper: #141414;
  --card: #1c1c1c;
  --ink: #ededed;
  --ink-strong: #f5f5f5;
  --soft: rgba(237, 237, 237, .90);
  --softer: rgba(237, 237, 237, .45);
  --surface: rgba(237, 237, 237, .06);
  --surface-2: rgba(237, 237, 237, .09);
  --line: rgba(237, 237, 237, .14);
  --line-strong: rgba(237, 237, 237, .28);
}

:root[data-theme="light"] {
  --paper: #ffffff;
  --card: #ffffff;
  --ink: #141414;
  --ink-strong: #0a0a0a;
  --soft: rgba(20, 20, 20, .90);
  --softer: rgba(20, 20, 20, .45);
  --surface: rgba(20, 20, 20, .035);
  --surface-2: rgba(20, 20, 20, .055);
  --line: rgba(20, 20, 20, .10);
  --line-strong: rgba(20, 20, 20, .22);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--soft);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Noto Sans SC", "PingFang SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }

#scene {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(100% - 40px, 920px);
  height: calc(76px + env(safe-area-inset-top));
  margin: 0 auto;
  padding-top: env(safe-area-inset-top);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

/* 顶栏返回：贴左，标题仍居中——和 App 内页顶栏一个语义。 */
.header-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: calc(env(safe-area-inset-top) / 2);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: none;
  color: inherit;
  font-size: 20px;
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.brand {
  display: block;
  width: 122px;
  height: 32px;
  margin-right: -18px;
}

.logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.logo-light { display: none; }
:root[data-theme="light"] .logo-dark { display: none; }
:root[data-theme="light"] .logo-light { display: block; }

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding-left: 9px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  white-space: nowrap;
}

.app-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: 36px 24px calc(44px + env(safe-area-inset-bottom));
}

.screen {
  display: none;
  min-height: calc(100svh - 156px - env(safe-area-inset-top));
}

.screen.is-active {
  display: block;
  animation: screenIn .42s ease;
}

@keyframes screenIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.start-screen {
  padding-top: clamp(12px, 3vh, 28px);
  text-align: center;
}

.start-heading {
  text-align: left;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--softer);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(30px, 8.5vw, 50px);
  line-height: 1.08;
  letter-spacing: -3px;
  white-space: nowrap;
}

.start-copy {
  margin: 18px 0 30px;
  color: var(--softer);
  font-size: 15px;
  line-height: 1.65;
}

/* 介绍页的信息不再装在一个框里——那跟清单页那张卡长得一样，点进来像什么都没发生。
   题数、参与人数和 16 个结果一律拍成胶囊，在「开始鉴定」上方轻轻漂着（同首页胶囊的气质，
   但幅度更小：这是气氛，不该抢按钮的注意力）。 */
.start-card {
  margin: 26px 0 20px;
  text-align: left;
}

/* 弹幕：5 行胶囊各自从右往左匀速飘，循环不断。行速度错开，整片才不像一块板在平移。
   JS（setupDriftingTags）把胶囊分行、每行复制三遍并写入 --dm-dur。 */
.result-catalog {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 4px 0;
  overflow: hidden;
  /* 两侧淡出，胶囊是「飘进来/飘出去」而不是被硬切断 */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.dm-row {
  overflow: hidden;
  white-space: nowrap;
}

.dm-track {
  display: inline-flex;
  gap: 18px;
  animation: dmScroll var(--dm-dur, 22s) linear infinite;
  will-change: transform;
}

.result-catalog span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  color: var(--soft);
  font-size: 12px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

@keyframes dmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 3)); }
}

/* 省电模式 / 系统「减弱动态效果」下不飘 */
@media (prefers-reduced-motion: reduce) {
  .dm-track { animation: none; }
}

:root[data-motion="off"] .dm-track {
  animation: none;
}

.primary-btn,
.secondary-btn,
.popnota-btn,
.text-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.primary-btn {
  position: relative;
  min-height: 58px;
  /* 文字**居中**，箭头绝对贴右——按钮里那行字是主角，别被箭头挤成左对齐。 */
  padding: 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 17px;
  color: var(--paper);
  background: var(--ink);
  font-size: 16px;
  font-weight: 700;
  transition: opacity .16s ease, transform .16s ease;
}

.primary-btn:active {
  opacity: .78;
  transform: scale(.99);
}

.btn-arrow {
  position: absolute;
  right: 18px;
  font-size: 18px;
  font-weight: 400;
}

.fine-print,
.keyboard-tip {
  margin: 13px 0 0;
  color: var(--softer);
  text-align: center;
  font-size: 10px;
}

.quiz-screen,
.country-screen { padding-top: 12px; }

.quiz-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.back-btn {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  font-size: 18px;
}

/* 「上一题」放在选项下面（跟 App 对齐）：顶部那行只剩进度，返回不再占导航位。 */
.step-back-btn {
  width: auto;
  height: 38px;
  margin: 14px auto 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--softer);
  font-size: 13px;
}

.step-back-btn:active {
  opacity: .6;
}

.progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-track {
  flex: 1;
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.progress-track span {
  display: block;
  width: 8.333%;
  height: 100%;
  background: var(--ink);
  transition: width .35s ease;
}

.progress-count {
  min-width: 42px;
  color: var(--softer);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.progress-count b {
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
}

.question-wrap {
  padding-top: clamp(52px, 10vh, 94px);
}

.question-wrap.is-leaving { animation: questionOut .16s ease forwards; }
.question-wrap.is-entering { animation: questionIn .30s ease; }

@keyframes questionOut {
  to { opacity: 0; transform: translateX(-8px); }
}

@keyframes questionIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.question-kicker {
  margin: 0 0 11px;
  color: var(--softer);
  font-size: 11px;
}

.question-wrap h2 {
  min-height: 100px;
  margin: 0 0 28px;
  color: var(--ink-strong);
  font-size: clamp(26px, 7.4vw, 34px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -1px;
}

.answers {
  display: grid;
  gap: 10px;
}

.answer-btn {
  position: relative;
  width: 100%;
  min-height: 59px;
  padding: 14px 49px 14px 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--soft);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  backdrop-filter: blur(10px);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.answer-btn::after {
  content: attr(data-key);
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--softer);
  transform: translateY(-50%);
  font-size: 10px;
}

.answer-btn:hover {
  border-color: var(--line-strong);
  background: var(--surface);
}

.answer-btn.is-selected {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.answer-btn.is-selected::after {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.country-option {
  display: flex;
  align-items: center;
}

.country-option > span {
  margin-left: auto;
  padding-right: 37px;
  color: var(--softer);
  font-size: 10px;
}

.country-option.is-unavailable {
  cursor: default;
  opacity: .48;
}

.result-screen {
  padding-top: 5px;
  padding-bottom: 34px;
}

.result-card {
  position: relative;
  overflow: hidden;
  padding: 23px 21px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .06);
  backdrop-filter: blur(16px);
}

.result-overline {
  margin: 0 0 7px;
  color: var(--softer);
  font-size: 11px;
}

.result-card h2 {
  max-width: 95%;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(35px, 10vw, 48px);
  line-height: 1.08;
  letter-spacing: -2.3px;
}

.result-one-liner {
  margin: 14px 0 18px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.55;
}

.trait-list {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trait-list span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--soft);
  background: var(--surface);
  font-size: 10px;
}

.analysis-copy { padding: 17px 0 2px; }

.analysis-copy p {
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.75;
}

.analysis-copy p:last-child { margin-bottom: 0; }

.result-footer {
  margin-top: 23px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--softer);
  font-size: 9px;
}

.mini-brand {
  position: relative;
  width: 79px;
  height: 20px;
}

.mini-logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 79px;
  height: auto;
  transform: translateY(-50%);
}

/* 结果卡右上角的分享（App 同款图标）。卡片本身有 position: relative。 */
/* 卡片内顶部那行「测试结果」——居中的小字，卡片其余内容仍左对齐。 */
/* 卡片外那行「测试结果」——居中的小字。 */
.result-intro {
  margin: 0 2px 13px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.result-intro p {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

/* 分享按钮：卡片下方、「再测一次」下面的一颗大按钮。 */
.share-result-btn {
  margin-top: 4px;
}

.share-result-btn.is-busy {
  opacity: .45;
  pointer-events: none;
}

html.wechat-share-open,
html.wechat-share-open body {
  overflow: hidden;
}

.wechat-share-overlay[hidden] {
  display: none !important;
}

.wechat-share-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  background: #f3f3f3;
  color: #151515;
}

.wechat-share-toolbar {
  flex: none;
  min-height: 74px;
  padding: max(12px, env(safe-area-inset-top)) 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  background: rgba(255, 255, 255, .98);
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
}

.wechat-share-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.wechat-share-copy strong {
  font-size: 17px;
  line-height: 1.25;
}

.wechat-share-copy span {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 1.35;
}

.wechat-share-close {
  width: 38px;
  height: 38px;
  flex: none;
  border: 0;
  border-radius: 50%;
  background: #e8e8e8;
  color: #222;
  font: 300 30px/34px system-ui, sans-serif;
  cursor: pointer;
}

.wechat-share-image-wrap {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 16px 12px calc(28px + env(safe-area-inset-bottom));
}

.wechat-share-image {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
  -webkit-touch-callout: default;
  user-select: none;
}

.share-hint {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--softer);
  font-size: 10px;
}

.restart-result-btn {
  margin-top: 8px;
}

.share-hint i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}

.result-actions {
  display: grid;
  gap: 10px;
}

.related-section {
  margin: 15px 0 5px;
}

.related-section h3 {
  margin: 0 2px 14px;
  color: var(--softer);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
}

.related-list {
  display: grid;
  gap: 10px;
}

.related-post {
  min-width: 0;
  padding: 16px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 19px;
  color: var(--soft);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  text-decoration: none;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.related-post:hover {
  border-color: var(--line-strong);
  background: var(--surface);
  transform: translateY(-1px);
}

.related-post:active { transform: scale(.992); }

.related-text {
  display: -webkit-box;
  overflow: hidden;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.related-author {
  min-width: 0;
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--softer);
  font-size: 11px;
}

.related-author img {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.related-author span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-author i {
  margin-left: auto;
  font-style: normal;
  font-size: 13px;
}

.related-loading {
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background:
    linear-gradient(90deg, transparent, var(--surface-2), transparent) -180px 0 / 180px 100% no-repeat,
    var(--surface);
  animation: relatedShimmer 1.1s ease-in-out infinite;
}

.share-primary-btn {
  justify-content: center;
}

.start-back-btn {
  margin-top: 10px;
}

@keyframes relatedShimmer {
  to { background-position: calc(100% + 180px) 0, 0 0; }
}

.secondary-btn,
.popnota-btn {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  color: var(--soft);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.popnota-btn {
  gap: 8px;
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.text-btn {
  padding: 14px;
  color: var(--softer);
  background: none;
  font-size: 11px;
}

.progress-reset {
  margin-top: 4px;
}

.progress-reset[hidden] {
  display: none;
}

/* 「继续上次答题 / 重新开始」的底部弹层。做成 sheet 而不是一整页，
   是因为它只是个岔路口，不该再变成一个要读的页面。 */
.resume-sheet {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, .38);
  animation: resumeFade .18s ease;
}

.resume-sheet[hidden] {
  display: none;
}

.resume-card {
  width: min(100%, 420px);
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  animation: resumeRise .22s ease;
}

.resume-title {
  margin: 0 0 16px;
  text-align: center;
  color: var(--soft);
  font-size: 14px;
}

.resume-card .secondary-btn {
  margin-top: 10px;
}

@keyframes resumeFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes resumeRise {
  from { transform: translateY(14px); }
  to { transform: translateY(0); }
}

.toast {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  max-width: calc(100% - 42px);
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: .22s ease;
  font-size: 11px;
  white-space: nowrap;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 600px) {
  .site-header {
    width: min(100% - 28px, 920px);
    height: calc(68px + env(safe-area-inset-top));
  }
  .brand {
    width: 112px;
    height: 29px;
    margin-right: -17px;
  }
  .product-badge {
    min-height: 16px;
    padding-left: 8px;
    font-size: 12px;
  }
  .app-shell {
    min-height: calc(100svh - 68px);
    padding-top: 32px;
  }
}

@media (min-width: 700px) {
  .app-shell {
    padding-top: 44px;
    }
}

@media (max-height: 720px) {
  .start-screen { padding-top: 10px; }
  h1 { font-size: 43px; }
  .start-copy { margin: 13px 0 18px; }
  .question-wrap { padding-top: 30px; }
  .question-wrap h2 { min-height: 78px; margin-bottom: 19px; font-size: 26px; }
  .answer-btn { min-height: 52px; padding-top: 11px; padding-bottom: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ── 在 App 的 WebView 里（?embed=app）──────────────────────────────────────
   App 自己已经有导航栏和返回手势，网页这边再放一遍 logo 页头、"返回全部测试"、
   "去 Popnota 看看" 就是重复入口（而且会把人踢出 App 去开浏览器）。全部收起来，
   只留测试本身。见 popnota-server/src/explore.ts 发的 ?embed=app。 */
:root[data-embed="app"] .site-header,
:root[data-embed="app"] .site-footer,
:root[data-embed="app"] .start-back-btn,
:root[data-embed="app"] .popnota-btn {
  display: none !important;
}
:root[data-embed="app"] .app-shell {
  min-height: 100svh;
  padding-top: calc(28px + env(safe-area-inset-top));
}

/* 能直接调系统分享面板的设备（手机/平板/App 内 WebView）不显示「保存测试结果」：
   面板里就有「存储图像」，而 <a download> 在 WKWebView 里根本不工作。PC 走另一支，
   两个按钮都留（那边没有系统分享面板，没有保存就只能截图）。见 app.js applyShareCapability。 */
:root[data-share="native"] #saveBtn {
  display: none;
}

/* ── 微信内的「下载 App」横幅（appbanner.js）──────────────────────────────────
   Safari 有自己的 smart banner（见 <head> 的 apple-itunes-app），微信里那个不出现，
   所以补这一条。小测试主要靠微信/小红书传播，这条不补，最该看到入口的人恰恰看不到。 */
#openApp {
  position: fixed;
  z-index: 8000;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: calc(env(safe-area-inset-top, 0px) + 9px) 14px 9px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .16);
  transform: translateY(-100%);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}

#openApp.show {
  transform: translateY(0);
}

#openApp .oa-x {
  flex: none;
  width: 24px;
  height: 24px;
  margin-right: -2px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  opacity: .4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#openApp .oa-x svg {
  width: 16px;
  height: 16px;
}

#openApp .oa-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

#openApp .oa-txt {
  flex: 1 1 auto;
  min-width: 0;
}

#openApp .oa-name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

#openApp .oa-sub {
  margin-top: 2px;
  color: var(--softer);
  font-size: 11px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#openApp .oa-open {
  flex: none;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

/* 通栏 = 压住页面顶部 → 把内容整体往下让 var(--oa-h)（appbanner.js 实测写入）。 */
html.has-appbar body {
  padding-top: var(--oa-h, 0px);
  transition: padding-top .32s cubic-bezier(.2, .8, .2, 1);
}
