/* 玻璃效果关闭按钮：参考 DefaultActivityHeroModule 的 liquid-glass-icon 样式 */
.glass-close-btn[data-v-21cf18c4] {
  background-color: rgb(255 255 255 / 16%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
}
.glass-close-btn[data-v-21cf18c4]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    rgb(255 255 255 / 25%) 15%,
    rgb(255 255 255 / 3%) 30%,
    rgb(255 255 255 / 3%) 70%,
    rgb(255 255 255 / 25%) 85%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
