* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #111;
    box-sizing: border-box;
    transition: 1s ease;
}

*::after,
*::before {
    transition: 1s ease;
}

body {
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 30px #444;
    container-type: inline-size;
    background-color: var(--bg-color);
    position: relative;
}

html.welcome-open,
body.welcome-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
    height: 100%;
}

html.regist-open,
body.regist-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.welcome-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

input {
    border: none;
    background: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    font: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'FZZY';
    src: url(/font/方正综艺简体.ttf);
}

@font-face {
    font-family: 'FREESCPT';
    src: url(/font/FREESCPT.TTF);
}

@font-face {
    font-family: 'simsun';
    src: url(/font/simsun.ttc);
}

@font-face {
    font-family: 'FZYTK';
    src: url(/font/FZYTK.TTF);
}

:root {
    --primary-color: #ae0000;
    --top-text-color: #fff;
    --primary-text-color: #111;
    --secondary-text-color: #6d6d6d;
    --tertiary-text-color: #fff;
    --border-color: #e7e7e7;
    --bg-color: #fffbf5;

    --btn-hover-color: #8b0000;
    --btn-function-hover-color: #d0d0d0;
    --card-bg-color: #fff8ee;

    --accent: #b67a56;
    --accent-deep: #8f5c3d;
    --panel: rgba(255, 255, 255, 0.88);
    --shadow: 0 24px 60px rgba(86, 56, 42, 0.14);
}

p a {
  text-decoration: underline;
  color: var(--accent-deep);
}

button {
  appearance: none;       /* 消除系统默认外观（主要针对移动端） */
  background: transparent; /* 背景透明 */
  border: none;           /* 去除边框 */
  padding: 0;             /* 清除内边距 */
  margin: 0;              /* 清除外边距 */
  outline: none;          /* 去除点击时的轮廓线（建议后续自定义 focus 状态） */
  cursor: pointer;        /* 鼠标悬停显示手型（符合按钮交互习惯） */
  font: inherit;          /* 继承父元素的字体属性 */
  color: inherit;         /* 继承颜色 */
}

select {
    /* 核心：消除标准浏览器默认样式（包括下拉箭头） */
    appearance: none;
    -webkit-appearance: none; /* Chrome, Safari, Edge, 新版 Opera */
    -moz-appearance: none;    /* Firefox */
    
    /* 辅助：移除其他可能干扰样式的属性 */
    outline: none;            /* 移除点击时的蓝色轮廓 */
    border: 1px solid #ccc;   /* appearance: none 后边框通常会变淡，需重新定义 */
    background: transparent;  /* 设为透明以便后续自定义背景 */
    padding: 0 10px;          /* 调整内边距防止文字紧贴边缘 */
}

/* 针对 IE 10/11 的特殊处理：隐藏默认下拉箭头 */
select::-ms-expand {
    display: none;
}

textarea {
  resize: none; /* 禁止用户拖动右下角改变大小 */
  outline: none;
}

.flex-container {
    display: flex;
    align-items: center;
}

.flex-container-between {
    justify-content: space-between;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.ani-container {
    position: relative;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 2.8cqw 0;
}

.main-separator {
    width: 100%;
    height: 1px;
    background-color: var(--primary-text-color);
}

.separator-ani {
  width: 18cqw;
  height: 6.01cqw;
  position: relative;
  z-index: 1;
}

.circle {
  width: 2cqw;
  height: 2cqw;
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary-text-color);
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 6.01cqw;
    height: 0.5cqw;
    border-radius: 5.01cqw 5.01cqw 2.51cqw 2.51cqw;
    transform: scaleX(1.7);
  }

  40% {
    height: 2cqw;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: .2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.shadow {
  width: 2cqw;
  height: 0.4cqw;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.9);
  position: absolute;
  top: 6.21cqw;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: .2s
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.absolute {
  position: absolute;
}

.inline-block {
  display: inline-block;
}

.margin-top-2 {
  margin-top: 2cqw;
}

.margin-top-4 {
  margin-top: 2cqw;
}

.fade-in {
    opacity: 0;
}

.fade-in.show {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-down {
  opacity: 0;
  transform: translateY(-60px);
}

.fade-down.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-80%);
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(80%);
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0);
}

.scale-up.show {
    opacity: 1;
    transform: scale(1);
}

.expand-center {
    opacity: 0;
}

.expand-center.show {
    opacity: 1;
}

/* --- IGNORE --- */

.text,
.paragraph {
    font-family: 'FZYTK';
    font-size: 3cqw;
    line-height: 1.5;
}

.bigger-text {
    font-size: 4cqw;
}

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

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.icon {
    fill: var(--primary-color);
    width: 12cqw;
}

.main-img {
    width: 100%;
    border-radius: 4cqw;
}

.main-img-fullwidth {
  border-radius: 0;
}

.main-img-margin {
    margin: 10cqw 0;
}

.main-img-margin-top {
    margin: 10cqw 0 2cqw 0;
}

.page-title-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title-main-text {
  text-align: center;
  font-family: 'FZYTK';
  font-size: 4.5cqw;
  line-height: 1.8;
}

/* --- IGNORE --- */

.menu {
  position: fixed;
  bottom: 4cqw;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 9999;
  transition: bottom .55s ease;
  will-change: bottom;
}

.menu.menu-hidden {
  bottom: -24cqw;
  pointer-events: none;
}

.menu-inner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 4cqw 6cqw;
  gap: 6cqw;
  border: .28cqw solid #fff;
  /* fallback for browsers that don't support using cqw inside blur() */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  /* prefer cqw when supported */
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1cqw;
}

.menu-item-icon {
  fill: none;
  width: auto;
  height: 6cqw;
}

.menu-item-title {
  font-size: 3cqw;
  font-weight: 400;
}

.menu-item-title-active {
  font-size: 3cqw;
  font-weight: 500;
  color: var(--accent);
}

.secondary-menu {
    position: fixed;
    bottom: 25cqw;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9999;
    transition: bottom .55s ease;
    will-change: bottom;
}

.secondary-menu.hidden {
  bottom: -24cqw;
  pointer-events: none;
}

.menu.menu-hidden ~ .secondary-menu.hidden {
    bottom: -24cqw;
}

.menu.menu-hidden ~ .secondary-menu {
    bottom: 4vw; /* fallback for browsers without container units */
}
@supports (bottom: 4cqw) {
    .menu.menu-hidden ~ .secondary-menu {
        bottom: 4cqw;
    }

    .menu.menu-hidden ~ .secondary-menu.hidden {
        bottom: -24cqw;
    }
}

.secondary-menu-inner {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 4cqw 6cqw;
    gap: 6cqw;
    border: .28cqw solid #fff;
    /* fallback for browsers that don't support using cqw inside blur() */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    /* prefer cqw when supported */
    backdrop-filter: blur(1.42cqw) saturate(180%);
    -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
    box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

/* --- IGNORE --- */

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url('media/FJ4A5651.jpg');
    background-size: cover;
    background-position: center;
}

.top-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.top-head {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: 'FZYTK';
    color: var(--top-text-color);
    padding: 3cqw 0;
    font-size: 3cqw;
    opacity: 0;
}

.top-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1cqw;
    transform: translateY(-30cqw);
}

.top-title-describe {
    font-family: 'Times New Roman';
    font-size: 8cqw;
    color: var(--top-text-color);
}

.top-title-zh {
    font-family: 'FZYTK';
    font-size: 12cqw;
    color: var(--top-text-color);
}

.top-title-en {
    font-family: 'FREESCPT';
    font-size: 6cqw;
    color: var(--top-text-color);
}

.top-data  {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: max-content;
    padding-bottom: 8cqw;
    z-index: 1;
}

.top-data::after {
    content: "";
    position: absolute;
    top: -14cqw;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 14cqw);
    background: linear-gradient(to top, #111, transparent);
    z-index: -1;
}

.top-name-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2cqw;
}

.top-name-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-name {
    color: var(--top-text-color);
}

.top-name-zh {
    font-family: 'FZYTK';
    font-size: 7cqw;
}

.top-name-en {
    font-family: 'FREESCPT';
    font-size: 4cqw;
}

.top-name-symble {
    font-family: 'FZYTK';
    font-size: 5cqw;
}

.top-separator {
    width: 50cqw;
    height: 1px;
    background-color: var(--border-color);
    margin: 1cqw 0;
}

.top-date {
    font-family: 'FZYTK';
    font-size: 6cqw;
    color: var(--top-text-color);
}

.top-dec-text {
    font-family: 'FREESCPT';
    font-size: 7cqw;
    color: var(--top-text-color);
    margin-top: 5cqw;
}

.arrow-ani {
  width: 6cqw;
  height: 14cqw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  align-self: center;
}

.top-arrow {
  margin-top: 5cqw;
}

.top-arrow span {
  border-bottom: .7cqw solid rgba(255, 255, 255, 0.88);
  border-right: .7cqw solid rgba(255, 255, 255, 0.88);
}

.arrow-ani span {
  display: block;
  width: 2cqw;
  height: 2cqw;
  margin: -1.2cqw 0;
  transform: rotate(45deg);
  animation: animate28797 2s infinite;
}


.arrow-ani span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow-ani span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate28797 {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-4cqw, -4cqw);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(4cqw, 4cqw);
  }
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.main-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-head-text {
    font-family: 'FZYTK';
    color: var(--primary-text-color);
    font-size: 3cqw;
    padding: 2cqw 8cqw;
}

.main-inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.main-invitation-text {
    text-align: center;
    margin-top: 12cqw;
    font-family: 'FZYTK';
    font-size: 4.5cqw;
    line-height: 1.8;
}

.separator-ani  {
    align-self: center;
    margin-top: 12cqw;
}

.first-img {
    margin: 12cqw 0 10cqw 0;
}

.main-gallery {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    width: 100%;
    column-gap: 5cqw;
}

.main-gallery-left {
    display: flex;
    flex-direction: column;
    gap: 10cqw;
}

.main-gallery-right {
    display: flex;
    flex-direction: column;
    gap: 4cqw;
}

.you-amination {
    width: 20cqw;
    display: flex;
    align-self: center;
    margin: 10cqw 0;
}

.you-amination svg {
    width: 100%;
    height: auto;
}

.dash {
  animation: dashArray 4s ease-in-out infinite,
    dashOffset 4s linear infinite;
}

.spin {
  animation: spinDashArray 4s ease-in-out infinite,
    spin 16s ease-in-out infinite,
    dashOffset 4s linear infinite;
  transform-origin: center;
}

@keyframes dashArray {
  0% {
    stroke-dasharray: 0 1 359 0;
  }

  50% {
    stroke-dasharray: 0 359 1 0;
  }

  100% {
    stroke-dasharray: 359 1 0 0;
  }
}

@keyframes spinDashArray {
  0% {
    stroke-dasharray: 270 90;
  }

  50% {
    stroke-dasharray: 0 360;
  }

  100% {
    stroke-dasharray: 270 90;
  }
}

@keyframes dashOffset {
  0% {
    stroke-dashoffset: 365;
  }

  100% {
    stroke-dashoffset: 5;
  }
}

@keyframes spin {
  0% {
    rotate: 0deg;
  }

  12.5%,
  25% {
    rotate: 270deg;
  }

  37.5%,
  50% {
    rotate: 540deg;
  }

  62.5%,
  75% {
    rotate: 810deg;
  }

  87.5%,
  100% {
    rotate: 1080deg;
  }
}

.section-title-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10cqw 0;
    gap: 2cqw;
}

.section-title-left {
    font-family: 'FZYTK';
    font-size: 4.5cqw;
    align-self: flex-start;
}

.section-title-right {
    font-family: 'FZYTK';
    font-size: 4.5cqw;
    align-self: flex-end;
}

.stair-ani {
  position: relative;
  width: 12cqw;
  height: 9cqw;
  margin: 0 auto;
}

.stair-ani:before {
  content: "";
  position: absolute;
  bottom: 3cqw;
  left: 5cqw;
  height: 3cqw;
  width: 3cqw;
  border-radius: 50%;
  background: var(--primary-text-color);
  animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.stair-ani:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: .7cqw;
  width: 4.5cqw;
  border-radius: .4cqw;
  box-shadow: 0 .5cqw 0 var(--border-color), -3.5cqw 5cqw 0 var(--border-color), -7cqw 9.5cqw 0 var(--border-color);
  animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
  0% {
    transform: scale(1, 0.7);
  }

  40% {
    transform: scale(0.8, 1.2);
  }

  60% {
    transform: scale(1, 1);
  }

  100% {
    bottom: 14cqw;
  }
}

@keyframes loading-step {
  0% {
    box-shadow: 0 1cqw 0 rgba(0, 0, 0, 0),
            0 1cqw 0 var(--border-color),
            -3.5cqw 5cqw 0 var(--border-color),
            -7cqw 9cqw 0 var(--border-color);
  }

  100% {
    box-shadow: 0 1cqw 0 var(--border-color),
            -3.5cqw 5cqw 0 var(--border-color),
            -7cqw 9cqw 0 var(--border-color),
            -7cqw 9cqw 0 rgba(0, 0, 0, 0);
  }
}


.img-container {
    width: 100%;
    display: flex;
    background-image: url(/media/FJ4A5037\ 拷贝.jpg);
    background-size: cover;
    background-position: center;
    margin: 10cqw 0;
}

.img-frame {
    width: 90%;
    margin: 16cqw auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8cqw;
    background: rgba(255, 255, 255, 0.88);
    padding: 8cqw 5cqw;
    overflow: hidden;
    border-radius: 4cqw;
}

.img-frame-title {
    width: 100%;
    font-family: 'Times New Roman';
    font-size: 7cqw;
    color: var(--primary-text-color);
    text-align: center;
}

.img-group {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5cqw;
}

.icon-container {
    display: flex;
    gap: 1cqw;
    align-items: center;
    justify-content: flex-end;
}

.icon-container-center {
    justify-content: center;
}

.icon-symble {
    font-size: 10cqw;
    font-weight: 100;
    color: var(--primary-color)
}

.img-frame-icon {
    width: 9cqw;
}

.section-title {
    font-family: 'FZYTK';
    font-size: 4.5cqw;
    text-align: center;
}

.shape-ani-container {
    display: flex;
    justify-content: center;
}

.shape-ani {
  --duration: 3s;
  width: 6.29cqw;
  height: 6.29cqw;
  position: relative;
}

.shape-ani:before {
  content: "";
  width: 0.86cqw;
  height: 0.86cqw;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--primary-color);
  top: 5.29cqw;
  left: 2.71cqw;
  transform: translate(-2.57cqw, -2.57cqw);
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

.shape-ani svg {
  display: block;
  width: 100%;
  height: 100%;
}

.shape-ani svg rect,
.shape-ani svg polygon,
.shape-ani svg circle {
  fill: none;
  stroke: var(--primary-text-color);
  stroke-width: 1.43cqw;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.shape-ani svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

.shape-ani svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.shape-ani svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

.shape-ani.triangle {
  width: 6.86cqw;
}

.shape-ani.triangle:before {
  left: 3cqw;
  transform: translate(-1.43cqw, -2.57cqw);
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86)
    infinite;
}

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }

  66% {
    stroke-dashoffset: 147;
  }

  100% {
    stroke-dashoffset: 221;
  }
}

@keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }

  66% {
    transform: translate(1.43cqw, -2.57cqw);
  }

  100% {
    transform: translate(-1.43cqw, -2.57cqw);
  }
}

@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }

  50% {
    stroke-dashoffset: 128;
  }

  75% {
    stroke-dashoffset: 192;
  }

  100% {
    stroke-dashoffset: 256;
  }
}

@keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(2.57cqw, -2.57cqw);
  }

  75% {
    transform: translate(0, -5.14cqw);
  }

  100% {
    transform: translate(-2.57cqw, -2.57cqw);
  }
}

@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }

  50% {
    stroke-dashoffset: 175;
  }

  75% {
    stroke-dashoffset: 225;
  }

  100% {
    stroke-dashoffset: 275;
  }
}

.shape-ani {
  display: inline-block;
  margin: 0 2.29cqw;
}

.secondary-gallary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 10cqw 0;
    gap: 3cqw;
}

.secondary-gallary-left {
    display: flex;
    flex-direction: column;
    gap: 3cqw;
    align-items: center;
    padding-top: 5cqw;
}

.secondary-gallary-right {
    display: flex;
    flex-direction: column;
    gap: 2cqw;
    align-items: center;
}

.section-title-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.section-title-grid .section-title {
    text-align: left;
}

.multi-info {
  background: linear-gradient(160deg, #f8f0e7 0%, #efe1d3 42%, #e7d2c0 100%);
  margin: 12cqw 0;
}

.multi-info-container {
    display: flex;
    flex-direction: column;
    gap: 10cqw;
    justify-content: center;
    margin: 10cqw 0;
}

.multi-info-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.multi-info-title {
    width: 100%;
    font-family: 'Times New Roman';
    font-size: 7cqw;
    color: var(--primary-text-color);
    text-align: center;
}

.text-icon {
    font-size: 6cqw;
    text-align: center;
    color: var(--primary-color);
    align-items: center;
}

.date-function-container {
    position: relative;
    width: 70%;
    /* height: calc(5cqw + 11.14cqw + 3cqw + 18.78cqw + 3cqw + 8.21cqw + 1.5cqw + 8.21cqw + 3cqw + 2.3cqw + 4cqw); */
    height: 68.14cqw;
    display: flex;
    flex-direction: column;
    gap: 2cqw;
    align-items: center;
    margin: 0 auto;
    padding: 5cqw 3cqw 3cqw 3cqw;
    background: var(--panel);
    border-radius: 4cqw;
    box-shadow: var(--shadow);
}

.info-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1cqw;
}

.date-info-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-title {
    font-size: 4cqw;
    font-weight: 600;
}

.info-text {
    font-size: 4cqw;
    font-weight: 200;
}

.date-info-counter-container {
    position: absolute;
    top: calc(5cqw + 11.14cqw + 3cqw);
    left: -13.5cqw;
    width: 90cqw;
    display: flex;
    flex-direction: column;
    padding: 2cqw 3cqw;
    background-color: #fff;
    box-shadow: 0 0 2cqw .5cqw #ededed;
    z-index: 99;
    border-radius: 4cqw;
}

.date-info-counter {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    justify-content: space-between;
}

.date-info-counter-data .date-info-counter-item {
    text-align: center;
    font-size: 8cqw;
}

.date-info-counter-describe .date-info-counter-item {
    text-align: center;
    font-size: 4cqw;
}

.date-btn-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5cqw;
}

.function-btn-invite {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 24px rgba(143, 92, 61, 0.26);
    padding: 2cqw;
    border-radius: 2.5cqw;
    gap: 1cqw;
    background: linear-gradient(135deg, #d9b61c 0%, #e8c21f 100%);
}

.date-tips-info-text-container {
  margin-top: 1.5cqw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-tips-info-text {
  font-size: 2.3cqw;
  text-align: center;
}

.add-function-container {
  width: 100%;
  display: flex;
}

.add-info-container {
  width: 70%;
  margin: 0 auto;
  padding: 5cqw 3cqw 3cqw 3cqw;
  background-color: var(--panel);
  border-radius: 4cqw;
  box-shadow: var(--shadow);
}

.add-info-text-container {
  display: flex;
  flex-direction: column;
}

.add-info-text-add {
  font-size: 3cqw;
  color: var(--primary-text-color);
}

.add-info-map {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

#amap-container {
    width: 100%;
    height: 30cqw;
    overflow: hidden;
    margin-top: 2cqw;
    border-radius: 2.5cqw;
}

.add-map {
    width: 100%;
    height: 100%;
    border-radius: 2.5cqw;
}

.add-btn-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5cqw;
  margin-top: 2cqw;
}

.contact-function-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3cqw;
  padding: 3cqw;
  background-color: var(--panel);
  border-radius: 4cqw;
  box-shadow: var(--shadow);
}

.contact-title-container {
  display: flex;
  flex-direction: column;
  gap: 1cqw;
}

.contact-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3cqw;
}

.botton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10cqw;
  overflow: hidden;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3cqw;
  /* padding: 3cqw;
  background-color: var(--panel);
  border-radius: 4cqw;
  box-shadow: var(--shadow); */
}

.contact-img {
  width: 100%;
  border-radius: 2.5cqw;
}

.default-function-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 12px 24px rgba(143, 92, 61, 0.26);
  padding: 2cqw;
  border-radius: 2.5cqw;
  gap: 1cqw;
}

.secondary-function-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 24px rgba(143, 92, 61, 0.26);
  padding: 2cqw;
  border-radius: 2.5cqw;
  gap: 1cqw;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 92, 61, 0.16);
}

.btn-icon {
  width: 3cqw;
}

.btn-text {
  font-size: 3cqw;  
  color: var(--top-text-color);
}

.secondary-btn-text {
  font-size: 3cqw;  
  color: var(--accent-deep);
}

.tips-function-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tips-info-container {
  width: 100%;
  padding: 5cqw 3cqw 3cqw 3cqw;
  background-color: var(--panel);
  border-radius: 4cqw;
  box-shadow: var(--shadow);
}

.tips-info-text {
  font-size: 3cqw;
  color: var(--primary-text-color);
  text-align: left;
}

.tips-info-text-container {
  display: flex;
  flex-direction: column;
  gap: 2cqw;
  align-items: flex-start;
}

.botton-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10cqw;
}

.botton-text-container {
  display: flex;
  flex-direction: column;
}

.thanks-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rings {
  width: 30cqw;
}

.hjbj {
  margin-top: 2cqw;
  width: 50cqw;
}

.botton-info-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  justify-content: center;
}

.botton-text {
  font-family: 'FREESCPT';
  font-size: 6cqw;
  text-align: center;
  font-weight: 100;
}

.botton-info-date-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.botton-info-date-separator {
  width: 100%;
  height: .28cqw;
  border-radius: 99px;
  background-color: #111;
}

.thanks {
  font-size: 15cqw;
  font-family: 'FREESCPT';
  color: var(--primary-color);
  align-self: center;
}

.botton-arrow span {
  border-bottom: .7cqw solid var(--primary-text-color);
  border-right: .7cqw solid var(--primary-text-color);
}


.confirmation .privacy-inner {
  overflow: visible;
}

.confirmation {
  width: 100%;
  margin-top: 12cqw;
  background: linear-gradient(160deg, #f8f0e7 0%, #efe1d3 42%, #e7d2c0 100%);
  padding: 10cqw 0;
}

.confirmation-inner {
  width: 90%;
  margin: 0 auto 10cqw auto;
  display: flex;
  flex-direction: column;
  gap: 10cqw;
  align-items: center;
}

.confirmation-form,
.seat-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3cqw;
  align-items: center;
}

.form-title-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-tip-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2cqw;
  gap: 2cqw;
}

.form-title-en {
  margin-top: 2cqw;
  color: var(--primary-color);
}

.form-tip {
  font-size: 2.5cqw;
  color: var(--primary-color);
}

.fomr-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4cqw;
  box-shadow: var(--shadow);
  border-radius: 4cqw;
  background: var(--panel);
  backdrop-filter: blur(10px);
  padding: 5cqw 4cqw;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 2cqw;
}

.form-text {
  font-size: 3cqw;
}

.form-input {
  padding: 2cqw;
  border-radius: 2cqw;
  border: 1px solid rgba(143, 92, 61, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(143, 92, 61, 1);
  transition: .25s ease;
}

.form-input::placeholder {
  color: rgba(143, 92, 61, 0.5);
}

.form-input:focus {
  border: 1px solid rgba(143, 92, 61, 0.5);
}

.form-select {
  padding: 2cqw;
  border-radius: 2cqw;
  border: 1px solid rgba(143, 92, 61, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(143, 92, 61, 0.5);
  transition: .25s ease;
}

.form-select.has-value {
  color: rgba(143, 92, 61, 1);
  font-weight: 400;
}

.question {
  position: relative;
  width: max-content;
}

.question::after {
  content: '*';
  position: absolute;
  right: -2cqw;
  top: 0;
  font-size: 3cqw;
  color: var(--primary-color);
}

.form-submite {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 12px 24px rgba(143, 92, 61, 0.26);
    padding: 2cqw;
    color: var(--top-text-color);
    border-radius: 2.5cqw;
    font-size: 3cqw;
}

.form-submite:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  min-height: 4.5cqw;
  font-size: 3cqw;
  line-height: 1.5;
  text-align: center;
  color: var(--accent-deep);
}

.form-message.is-error {
  color: var(--primary-color);
}

.form-message.is-success {
  color: var(--accent-deep);
}

.seat-form .question::after {
  content: '';
}

.footer {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.footer-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10cqw 4cqw;
  gap: 4cqw;
}

.footer-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3cqw;
}

.footer-item {
  color: #fff;
  font-size: 3cqw;
  padding: 0 2cqw;
}

.copy-right {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 3cqw;
}

.check-container {
  display: flex;
  flex-direction: column;
  gap: 2cqw;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 2cqw;
}

/* .checkbox:hover .check {
  stroke-dashoffset: 0;
} */

.checkbox {
  position: relative;
  display: inline-block;
  width: 5.8cqw;
  height: 5.8cqw;
}

.checkbox svg {
  width: 98%;
  height: 98%;
}

.checkbox .background {
  fill: var(--accent);
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox .stroke {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 0.28cqw;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox .check {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.28cqw;
  stroke-dashoffset: 22;
  stroke-dasharray: 22;
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  opacity: 0;
  -appearance: none;
}

.checkbox input[type=checkbox]:hover {
  cursor: pointer;
}

.checkbox input[type=checkbox]:checked + svg .background {
  fill: var(--accent-deep);
}

.checkbox input[type=checkbox]:checked + svg .stroke {
  stroke-dashoffset: 0;
}

.checkbox input[type=checkbox]:checked + svg .check {
  stroke-dashoffset: 0;
}

.check-label {
  font-size: 2.5cqw;
  color: var(--accent-deep);
}

.check-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.music-unlock {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18cqw;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.music-unlock[hidden] {
  display: none; 
}

.music-unlock-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5cqw;
  padding: 3.5cqw 8cqw;
  border: .28cqw solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw rgba(255, 255, 255, 0.6);
  animation: music-unlock-pulse 2.4s ease-in-out infinite;
}

.music-unlock-icon {
  font-size: 6cqw;
  line-height: 1;
}

.music-unlock-text {
  font-size: 3.4cqw;
  letter-spacing: 0.12em;
  color: #111;
}

@keyframes music-unlock-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.92; }
}

.music-btn {
  position: fixed;
  top: 4cqw;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 9999;
  isolation: isolate;
  transition: top .55s ease;
  will-change: top;
}

.music-btn.music-hidden {
  top: -24cqw;
  pointer-events: none;
}

.music-btn-inner {
  width: 45.5cqw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2cqw;
  padding: 2cqw 4cqw 2cqw 2cqw;
  border: .28cqw solid #fff;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.music-btn.show .music-btn-inner {
  transform: translateY(0);
}

.music {
  height: 11.5cqw;
  width: 11.5cqw;
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border: .28cqw solid #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  position: relative;
}

.music svg {
  fill: #111;
  width: 6cqw;
  animation: spin 6s linear infinite;
}

.music.paused svg {
  animation-play-state: paused;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.music-info {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1cqw;
}

.music-name {
  font-size: 3cqw;
  display: inline-block;
  max-width: 25.8cqw;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.music-name-text {
  display: inline-block;
  padding-left: 1cqw;
  white-space: nowrap;
  position: relative;
}

.music-name.marquee .music-name-text::after {
  content: attr(data-text);
  display: inline-block;
  padding-left: 5cqw;
}

.music-name.marquee .music-name-text {
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--marquee-duration, 8s);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-length, 0px))); }
}

.music-controls {
  display: grid;
  grid-template-columns: auto 3cqw auto;
  justify-content: center;
  gap: 3cqw;
}

.music-controls-btn {
  width: 100%;
  min-width: 6cqw;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.music-controls-btn[data-action="toggle"] {
  min-width: 3cqw;
}

.music-controls-icon {
  height: 2.5cqw;
}

.music-controls-btn-toggle {
  width: 2.5cqw;
}

.regist-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity .25s ease, visibility .25s ease;
}

.regist-container.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* .regist-container.hidden {
  opacity: 1;
  pointer-events: none;
  visibility: visible;
} */

.regist-inner {
  width: calc(100cqw - 10cqw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 4cqw;
  padding: 6cqw 8cqw 10cqw 8cqw;
  border: .28cqw solid #fff;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border-radius: 4cqw;
  background: rgba(255, 255, 255, 0.5);
  overflow-x: hidden;
  overflow-y: auto;
}

.regist-content {
  font-size: 2.5cqw;
}

.register-name {
  font-family: 'FZYTK';
  font-size: 5cqw;
}

.reg-img-container {
  width: 100%;
  height: 50cqw;
  min-height: 50cqw;
  overflow: hidden;
  border-radius: 2cqw;
}

.reg-img {
  width: 100%;
}

.welcome-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.welcome-container.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.welcome-inner {
  width: calc(100cqw - 10cqw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6cqw;
  padding: 6cqw 8cqw 10cqw 8cqw;
  border: .28cqw solid #fff;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border-radius: 4cqw;
  background: rgba(255, 255, 255, 0.5);
  overflow-x: hidden;
  overflow-y: auto;
}

.welcome-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1cqw;
}

.welcome-text {
  color: #111;
  user-select: none;
}

.welcome-text-zh {
  font-family: 'FZYTK';
  font-size: 5cqw;
}

.welcome-text-en {
  font-family: 'FREESCPT';
  font-size: 5.5cqw;
}

.welcome-btn {
  padding: 2cqw 4cqw;
  border: .28cqw solid #fff;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 3cqw;
  color: #111;
  margin-top: 4cqw;
}

.welcome-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3cqw;
}

.welcome-img {
  width: 80cqw;
  border-radius: 2cqw;
}

.pen {
  width: 12cqw;
}

.pen .cls-1 {
  fill: none;
}

.help-notice-content {
  align-items: center;
}

.help-btn,
.help-home-btn {
  color: #fff;
}

.help-container {
  width: 90%;
  margin: 0 auto;
}

.help-home-inner {
  width: 100%;
  box-shadow: var(--shadow);
  border-radius: 4cqw;
  background: var(--panel);
  backdrop-filter: blur(10px);
  padding: 5cqw 4cqw;
  font-size: 3cqw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4cqw;
}

.sign-container {
  height: 14cqw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-shao {
  height: 100%;
}

.sign-huang {
  height: 80%;
}

.info-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
}

.info-box-inner {
  width: calc(100cqw - 10cqw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6cqw;
  padding: 8cqw 5cqw 10cqw 5cqw;
  border: .28cqw solid #fff;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border-radius: 4cqw;
  background: rgba(255, 255, 255, 0.5);
  overflow-x: hidden;
  overflow-y: auto;
}

.info-box-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-box-btn {
  padding: 2cqw 4cqw;
  border: .28cqw solid #fff;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(1.42cqw) saturate(180%);
  -webkit-backdrop-filter: blur(1.42cqw) saturate(180%);
  box-shadow: .28cqw .28cqw 2.85cqw .28cqw #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 3cqw;
  color: #111;
}

.close-btn {
  padding: 2cqw;
}

.close-btn img {
  width: 80%;
}

.cola-small-img {
  width: 30%;
}