/* ============================================================
   门户首页样式
   来源：prototype/photo.html 的内联 <style>，拆成独立文件。

   拆出来有两个实际好处：
     1. nginx 对 .css 配了 7 天缓存，内联在 HTML 里享受不到
        （HTML 本身是 no-cache 的）
     2. 首页和文章页可以各自演进，不用互相复制粘贴
   ============================================================ */

:root {
  --accent-rgb: 139, 92, 246;
  --accent: rgb(139, 92, 246);
  --text: #F2F4FB;
  --muted: #A8B2CC;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.05);
  --node: 96px;

  --horizon: 71.1%;
  --far:   #1E2240;
  --mid:   #13162E;
  --near:  #080916;
  --water-top: #141A34;
  --water-bot: #05070F;
  --glitter: rgba(226, 235, 255, .55);
  --scrim: .18;
}

* { box-sizing: border-box; }

/* overflow:hidden 必须写在 html 上，不能只写 body。
   转盘外圈的刻度环直径是 (radius+82)*2，窄屏上 radius 由视口宽度决定，
   环一定比视口宽 —— 那部分溢出会撑大初始包含块。
   只在 body 上设 overflow:hidden 拦不住这件事：溢出只有设在根元素上
   才会传递给视口。结果就是手机上整页被浏览器缩小以容纳溢出，
   position:fixed 的面板跟着变宽（390 → 443），卡片文字被推出屏幕。
   写在 html 上，视口直接不可滚动，溢出的环被裁掉，布局就正常了。 */
html, body { height: 100%; overflow: hidden; }

body {
  margin: 0;
  background: #05060E;
  color: var(--text);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei",
               -apple-system, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button { font: inherit; color: inherit; }

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

:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), .95);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===================== 场景 ===================== */
.scene-wrap { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

/* 兜底矢量天空：照片没载入时它就是背景 */
.sky { position: absolute; inset: 0; }

.nebula { position: absolute; inset: -20%; opacity: 0; mix-blend-mode: screen; }
.nebula::before, .nebula::after {
  content: ""; position: absolute;
  width: 58vw; height: 58vw; border-radius: 50%;
  filter: blur(90px);
}
.nebula::before {
  left: 3%; top: 2%;
  background: radial-gradient(circle, rgba(124, 88, 255, .40), transparent 68%);
  animation: drift-a 34s ease-in-out infinite alternate;
}
.nebula::after {
  right: 1%; top: 20%;
  background: radial-gradient(circle, rgba(34, 211, 238, .24), transparent 68%);
  animation: drift-b 46s ease-in-out infinite alternate;
}
@keyframes drift-a { from { transform: none; } to { transform: translate3d(8vw, 5vh, 0) scale(1.16); } }
@keyframes drift-b { from { transform: scale(1.1); } to { transform: translate3d(-10vw, -4vh, 0) scale(.92); } }

/* 兜底矢量山湖 */
.fallback { position: absolute; inset: 0; transition: opacity .6s ease; }
body.has-photo .fallback { opacity: 0; }
.water {
  position: absolute; left: 0; right: 0; bottom: 0; top: var(--horizon);
  background: linear-gradient(180deg, var(--water-top) 0%, var(--water-bot) 100%);
}
.vscene { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- 照片层 ---------- */
.photo-stack {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  will-change: filter;
}
body.has-photo .photo-stack { opacity: 1; }
.photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  /* 极缓慢的呼吸推移，让静态照片有生气 */
  animation: kenburns 72s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.075) translate3d(-1.2%, 0.8%, 0); }
}

/* 调色叠层 */
.tint { position: absolute; inset: 0; opacity: 0; }
/* 把暮色底图推向白天：天空压蓝最重，水面次之，前景基本不动。
   用 multiply 而不是 overlay —— overlay 会保住高光，
   发白的天空压不下去，只会变成阴天。multiply 才能压出蓝色。
   配合 photoStack 上的 brightness 提亮，结果是明亮的中蓝天。 */
.tint--day {
  background: linear-gradient(180deg,
    rgb(110, 165, 236)  0%,
    rgb(148, 189, 238) 16%,
    rgb(184, 207, 236) 28%,
    rgb(168, 195, 232) 40%,
    rgb(214, 224, 240) 100%);
  mix-blend-mode: multiply;
}
.tint--warm  { background: rgb(255, 150, 78);  mix-blend-mode: soft-light; }
.tint--night { background: rgb(20, 36, 92); }
.tint--moon  { background: rgb(150, 180, 255); mix-blend-mode: soft-light; }

/* ---------- 天空裁剪组：星空 / 日月 / 余晖 都只在天空里 ---------- */
.sky-clip { position: absolute; inset: 0; }

#stars { position: absolute; inset: 0; width: 100%; height: 100%; }

.orb { position: absolute; left: 0; top: 0; border-radius: 50%; will-change: transform, opacity; }
.orb--sun {
  width: 92px; height: 92px;
  background: radial-gradient(circle at 50% 50%,
    #FFFEF6 0%, #FFF3C8 28%, #FDCB5C 52%, rgba(246, 165, 40, .5) 66%, rgba(246, 165, 40, 0) 76%);
  box-shadow: 0 0 76px 24px rgba(253, 203, 92, .42), 0 0 200px 76px rgba(251, 146, 60, .20);
}
.orb--moon {
  width: 78px; height: 78px;
  background: radial-gradient(circle at 38% 33%,
    #FFFFFF 0%, #EFF3FA 40%, #C9D1E0 62%, rgba(201, 209, 224, .32) 72%, rgba(201, 209, 224, 0) 80%);
  box-shadow: 0 0 58px 18px rgba(226, 235, 255, .26), 0 0 170px 64px rgba(148, 170, 210, .14);
}
.orb--moon::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 63% 30%, rgba(120, 133, 158, .30) 0 12%, transparent 13%),
    radial-gradient(circle at 40% 62%, rgba(120, 133, 158, .24) 0 9%,  transparent 10%),
    radial-gradient(circle at 70% 66%, rgba(120, 133, 158, .18) 0 6%,  transparent 7%),
    radial-gradient(circle at 28% 38%, rgba(120, 133, 158, .16) 0 5%,  transparent 6%);
}

.afterglow {
  position: absolute; left: 0; top: 0;
  width: 118vw; height: 70vh;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%,
    rgba(255, 186, 112, .70) 0%, rgba(244, 114, 122, .32) 34%,
    rgba(168, 85, 190, .15) 58%, transparent 74%);
  filter: blur(4px);
}

/* ---------- 水面波光（在水里，不受天空裁剪） ---------- */
/* 水面上的日月倒影。实景水面比矢量图平滑得多，
   只有横条纹会像贴上去的 UI 元素，所以再交集一层纵向淡出，
   让波纹随深度散开，同时加大模糊把条纹硬边揉掉。 */
.glitter {
  position: absolute; top: var(--horizon); bottom: 0;
  width: 190px; transform: translateX(-50%);
  opacity: 0;
  background: radial-gradient(ellipse 40% 76% at 50% 0%, var(--glitter) 0%, transparent 72%);
  filter: blur(10px);
  mix-blend-mode: screen;
  mask-image:
    repeating-linear-gradient(180deg, #000 0 1.5px, transparent 3px 8px),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .5) 32%, transparent 76%);
  mask-composite: intersect;
  -webkit-mask-image:
    repeating-linear-gradient(180deg, #000 0 1.5px, transparent 3px 8px),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .5) 32%, transparent 76%);
  -webkit-mask-composite: source-in;
}

.scrim {
  position: absolute; left: 50%; top: 50%;
  width: 1180px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at 50% 50%,
    rgba(4, 7, 16, .92) 0%, rgba(4, 7, 16, .55) 38%, transparent 68%);
  opacity: var(--scrim);
}
.core-glow {
  position: absolute; left: 50%; top: 50%;
  width: 940px; height: 940px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(var(--accent-rgb), .14) 0%, rgba(var(--accent-rgb), .045) 34%, transparent 66%);
  transition: opacity .5s ease;
}
.vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,4,10,.62) 0%, transparent 22%),
    linear-gradient(0deg,   rgba(3,4,10,.58) 0%, transparent 18%);
}

/* ===================== 框架 ===================== */
.brand {
  position: fixed; top: 26px; left: 30px; z-index: 30;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .16em; color: var(--muted);
  text-transform: uppercase; text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.brand__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 2px rgba(var(--accent-rgb), .85);
}

.clock {
  position: fixed; top: 24px; right: 28px; z-index: 30;
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(8, 11, 20, .58);
  backdrop-filter: blur(12px);
  font-size: 12px; color: var(--muted);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  letter-spacing: .06em;
}
.clock__ico { display: grid; place-items: center; color: var(--accent); }

/* 图片署名。CC BY 要求署名，别删。 */
.credit {
  position: fixed; bottom: 22px; left: 30px; z-index: 30;
  max-width: 44vw;
  font-size: 10.5px; line-height: 1.5; color: rgba(210, 218, 235, .55);
  text-shadow: 0 1px 4px rgba(0,0,0,.85);
  transition: opacity .5s ease;
}
.credit a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }

.hint {
  position: fixed; bottom: 24px; left: 50%; z-index: 30;
  transform: translateX(-50%);
  display: flex; gap: 20px; align-items: center;
  font-size: 12px; color: var(--muted);
  text-shadow: 0 1px 4px rgba(0,0,0,.75);
}
.hint kbd {
  display: inline-block;
  min-width: 22px; padding: 3px 7px; margin-right: 6px;
  border: 1px solid var(--line); border-radius: 5px;
  background: rgba(255,255,255,.06);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 11px; text-align: center; color: #D2D9EA;
}

/* 拖入自己的照片时的提示层 */
.drop {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  background: rgba(4, 7, 16, .82);
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
  font-size: 15px; color: var(--text);
}
.drop.is-on { opacity: 1; }
.drop span {
  padding: 22px 34px;
  border: 1.5px dashed rgba(var(--accent-rgb), .8); border-radius: 18px;
}

/* ===================== 舞台 ===================== */
.stage { position: relative; z-index: 10; height: 100%; display: grid; place-items: center; }
.stage.is-searching .wheel { opacity: .16; filter: blur(3px); pointer-events: none; }
.stage.is-searching .detail { opacity: 0; transform: translateX(-50%) translateY(14px); pointer-events: none; }
.stage.is-entered .core { opacity: 0; transform: scale(.9); pointer-events: none; }
.stage.is-entered .wheel { opacity: 0; transform: scale(1.35); pointer-events: none; }
.stage.is-entered .detail { opacity: 0; pointer-events: none; }

.wheel {
  position: absolute; left: 50%; top: 50%;
  width: 0; height: 0;
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1), filter .4s ease;
}
.ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.ring--dashed { border: 1px dashed rgba(255,255,255,.16); animation: spin 68s linear infinite; }
.ring--solid  { border: 1px solid rgba(var(--accent-rgb), .18); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.ticks { position: absolute; left: 50%; top: 50%; pointer-events: none; }
.tick {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 7px;
  background: rgba(255,255,255,.24);
  transform-origin: 50% 0;
}
.tick--major { height: 13px; width: 1.5px; background: rgba(var(--accent-rgb), .75); }

.pointer { position: absolute; left: 50%; top: 50%; pointer-events: none; transform: translate(-50%, -50%); }
.pointer__caret {
  position: absolute; left: 50%; top: 0;
  width: 0; height: 0;
  transform: translate(-50%, -50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 13px solid var(--accent);
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 1));
}

.node {
  position: absolute; left: 0; top: 0;
  width: var(--node); height: var(--node);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 11, 20, .58);
  backdrop-filter: blur(12px);
  cursor: pointer;
  will-change: transform;
  transition: border-color .3s ease, background .3s ease, box-shadow .35s ease;
}
.node__icon { display: grid; place-items: center; color: #C2CBE2; transition: color .3s ease; }
.node__label { margin-top: 5px; font-size: 12.5px; letter-spacing: .06em; color: #B4BDD4; transition: color .3s ease; }
.node:hover { border-color: rgba(255,255,255,.3); background: rgba(14, 18, 32, .74); }
.node.is-active {
  border-color: rgba(var(--accent-rgb), .88);
  background: rgba(12, 15, 30, .8);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), .32),
    0 0 30px 6px rgba(var(--accent-rgb), .28),
    inset 0 0 22px rgba(var(--accent-rgb), .14);
}
.node.is-active .node__icon,
.node.is-active .node__label { color: #FFFFFF; }

/* 有实际内容可读的栏目，节点上挂一个小亮点做提示 */
.node__live {
  position: absolute; top: 8px; right: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(var(--accent-rgb), .95);
  box-shadow: 0 0 8px 2px rgba(var(--accent-rgb), .7);
}

.core { position: relative; z-index: 20; width: min(440px, 82vw); transition: opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1); }
.search {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  height: 60px; padding: 0 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(6, 9, 18, .68);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px -12px rgba(0,0,0,.9);
  transition: border-color .3s ease, box-shadow .35s ease;
}
.search:focus-within {
  border-color: rgba(var(--accent-rgb), .72);
  box-shadow:
    0 0 0 4px rgba(var(--accent-rgb), .12),
    0 0 34px -4px rgba(var(--accent-rgb), .5),
    0 18px 50px -12px rgba(0,0,0,.9);
}
.search__icon { flex: none; color: var(--muted); display: grid; place-items: center; }
.search input { flex: 1; height: 100%; border: 0; background: transparent; outline: none; color: var(--text); font-size: 15.5px; }
.search input::placeholder { color: #7C86A4; }
.search__key {
  flex: none; padding: 4px 8px;
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(255,255,255,.06);
  font-family: ui-monospace, Consolas, monospace; font-size: 11px; color: #939CB8;
}

.results {
  position: absolute; left: 0; right: 0; top: calc(100% + 10px);
  max-height: 320px; overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(6, 8, 16, .95);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 60px -16px rgba(0,0,0,.92);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.results.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.result {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 11px 12px;
  border: 0; border-radius: 10px;
  background: transparent; text-align: left; cursor: pointer;
  transition: background .18s ease;
}
.result:hover, .result.is-cursor { background: rgba(var(--accent-rgb), .18); }
.result__icon { flex: none; display: grid; place-items: center; color: rgba(var(--accent-rgb), .95); }
.result__title { flex: 1; font-size: 14px; }
.result__go { flex: none; color: rgba(var(--accent-rgb), .9); display: grid; place-items: center; }
.result__tag { flex: none; padding: 2px 8px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; color: var(--muted); }
.results__empty { padding: 18px 14px; font-size: 13px; color: var(--muted); text-align: center; }

.detail {
  position: absolute; left: 50%; top: calc(100% + 26px); z-index: 20;
  width: min(430px, 86vw);
  text-align: center;
  transform: translateX(-50%);
  transition: opacity .35s ease, transform .35s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}
.detail__head { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 7px; }
.detail__name { margin: 0; font-size: 20px; font-weight: 700; letter-spacing: .04em; }
.detail__count { font-family: ui-monospace, Consolas, monospace; font-size: 11px; color: #8E98B4; letter-spacing: .08em; }
.detail__desc { margin: 0 0 14px; font-size: 12.5px; line-height: 1.6; color: #B6BFD6; }
.detail__btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 22px;
  border: 1px solid rgba(var(--accent-rgb), .55); border-radius: 999px;
  background: rgba(var(--accent-rgb), .16);
  backdrop-filter: blur(8px);
  font-size: 13.5px; cursor: pointer; text-shadow: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.detail__btn:hover {
  background: rgba(var(--accent-rgb), .3);
  border-color: rgba(var(--accent-rgb), .95);
  transform: translateY(-2px);
}

.panel {
  position: fixed; inset: 0; z-index: 40;
  display: flex; flex-direction: column;
  padding: 76px 6vw 48px;
  background: rgba(4, 6, 13, .84);
  backdrop-filter: blur(28px);
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
}
.panel.is-open { opacity: 1; pointer-events: auto; }
.panel__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.panel__title { margin: 0; font-size: 34px; font-weight: 700; letter-spacing: .02em; }
.panel__meta { font-size: 13px; color: var(--muted); font-family: ui-monospace, Consolas, monospace; }
.panel__desc { margin: 0; font-size: 13px; color: var(--muted); }
.panel__back {
  position: fixed; top: 26px; right: 30px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--card); cursor: pointer;
  font-size: 12.5px; color: var(--muted);
  transition: border-color .25s ease, color .25s ease;
}
.panel__back:hover { border-color: rgba(255,255,255,.34); color: var(--text); }

/* 两个约束缺一不可，各管一种情况：
     align-content: start     卡片装不满一屏时，别把行拉高填满剩余空间
     grid-auto-rows: max-content
                              卡片超过一屏时，别把行压缩到塞进容器。
                              默认的 auto 行会这么做 —— .item 上有 overflow:hidden，
                              它的自动最小尺寸是 0，于是行可以被压到比内容还矮，
                              卡片标题直接被裁掉看不见。窄屏一列时最明显。 */
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  grid-auto-rows: max-content;
  align-content: start;
  overflow-y: auto;
  padding-bottom: 20px;
}

/* ---------- 卡片 ----------
   有 href 的条目渲染成 <a>，没有的渲染成 <article>。
   同一套视觉，差别只在能不能点进去 —— 所以样式写在 .item 上，
   状态差异用 .item--soon 表达，避免两份重复的规则。 */
.item {
  position: relative;
  display: block;
  border: 1px solid var(--line); border-radius: 16px;
  background: var(--card);
  overflow: hidden;
  color: inherit; text-decoration: none;
  opacity: 0; transform: translateY(18px);
  transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease;
}
.panel.is-open .item { animation: rise .5s cubic-bezier(.22,.61,.36,1) forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

a.item { cursor: pointer; }
a.item:hover {
  border-color: rgba(var(--accent-rgb), .55);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px -18px rgba(var(--accent-rgb), .5);
}
a.item:hover .item__arrow { opacity: 1; transform: none; }

/* 还没写完的条目：不给 hover 抬升，避免暗示可点击 */
.item--soon { cursor: default; }
.item--soon .item__thumb { filter: saturate(.35) brightness(.7); }
.item--soon .item__title { color: #C6CDDE; }

.item__thumb { position: relative; height: 128px; display: grid; place-items: center; color: rgba(255,255,255,.85); }
.item__thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 6, 13, .55) 100%);
}
.item__body { padding: 14px 16px 17px; }
.item__title { font-size: 14.5px; margin: 0 0 5px; }
.item__sub { font-size: 12px; color: var(--muted); margin: 0; }

.item__flag {
  position: absolute; top: 10px; left: 12px; z-index: 1;
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,.34); border-radius: 999px;
  background: rgba(4, 6, 13, .58);
  backdrop-filter: blur(6px);
  font-size: 10.5px; letter-spacing: .08em; color: #EEF1F9;
}
.item__flag--soon { color: #AEB7CC; border-color: rgba(255,255,255,.16); }

.item__arrow {
  position: absolute; top: 12px; right: 14px; z-index: 1;
  display: grid; place-items: center;
  color: #FFFFFF;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
}

@media (max-width: 640px) {
  :root { --node: 74px; }
  .hint, .credit { display: none; }
  .panel__title { font-size: 25px; }
  .orb--sun { width: 72px; height: 72px; }
  .orb--moon { width: 60px; height: 60px; }
  .glitter { width: 88px; }
}

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