/* /Components/Components/Banner.razor.rz.scp.css */
.banner[b-qtmkvw3uzq] {
  /* animation tuning variables: adjust these to change amplitude and speed */
  --bg-scale-max: 1.005; /* larger -> more zoomed at peaks */
  --bg-scale-min: 1.0; /* closer to 1 -> smaller change */
  --bg-anim-duration: 3s; /* change to speed up/slow down */
  background-color: #2562A8;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  height: 640px;
  display: flex;
  padding-top: var(--header-height, 120px); /* adjust this value to ensure banner content clears header */
  /*    align-items: center;
      justify-content: center;
      text-align: center;*/
}

/* Use a pseudo-element to host the background image so we can animate transform (GPU-accelerated). */
.banner[b-qtmkvw3uzq]::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-image: url("/images/gsbanner.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  transform-origin: left center;
  will-change: transform;
  z-index: 0;
  /* use variables for duration and make animation smoother */
  animation: bg-pulse-b-qtmkvw3uzq var(--bg-anim-duration) ease-in-out infinite;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
}

/* Ensure content inside banner sits above the animated background */
.banner > *[b-qtmkvw3uzq] {
  position: relative;
  z-index: 1;
}

@keyframes bg-pulse-b-qtmkvw3uzq {
  0% {
    transform: scale(var(--bg-scale-max)) translateZ(0);
  }
  50% {
    transform: scale(var(--bg-scale-min)) translateZ(0);
  }
  100% {
    transform: scale(var(--bg-scale-max)) translateZ(0);
  }
}
/* Respect user preference to reduce motion */
@media (prefers-reduced-motion: reduce) {
  .banner[b-qtmkvw3uzq]::before {
    animation: none !important;
  }
}
/* Responsive tweak */
@media (max-width: 768px) {
  .banner[b-qtmkvw3uzq] {
    height: 360px;
  }
}
/* /Components/Components/Content.razor.rz.scp.css */
@charset "UTF-8";
/* LeadershipSpeech.razor.css - 领导致辞组件样式 */
.leadership-speech-container[b-gyads8mbrg] {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  overflow: hidden;
  min-height: 100vh;
}

/* 波浪装饰背景 */
.leadership-speech-container[b-gyads8mbrg]::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #e6f7ff 0%, #b3e0ff 100%);
  border-radius: 0 0 0 100%;
  z-index: 1;
  opacity: 0.8;
}

/* 标题区域 */
.speech-header[b-gyads8mbrg] {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid #1890ff;
}

.english-title[b-gyads8mbrg] {
  font-size: 1.2rem;
  color: #1890ff;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.chinese-title[b-gyads8mbrg] {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

/* 内容区域 */
.speech-content[b-gyads8mbrg] {
  position: relative;
  z-index: 2;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  margin: 0 20px 40px 20px;
}

.speech-content p[b-gyads8mbrg] {
  margin-bottom: 24px;
  text-align: justify;
  text-indent: 2em;
}

.speech-content p:first-child[b-gyads8mbrg] {
  margin-top: 0;
}

.speech-content p:last-child[b-gyads8mbrg] {
  margin-bottom: 0;
}

/* 签名区域 */
.speech-signature[b-gyads8mbrg] {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-top: 60px;
  padding-right: 40px;
  font-size: 1.2rem;
  color: #000;
  font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .leadership-speech-container[b-gyads8mbrg] {
    padding: 20px 15px;
  }
  .chinese-title[b-gyads8mbrg] {
    font-size: 2rem;
  }
  .speech-content[b-gyads8mbrg] {
    font-size: 1rem;
    margin: 0 10px 30px 10px;
  }
  .leadership-speech-container[b-gyads8mbrg]::before {
    width: 200px;
    height: 200px;
  }
  .speech-signature[b-gyads8mbrg] {
    padding-right: 20px;
    /*font-size: 1.1rem;*/
  }
}
/* 动画效果 */
.leadership-speech-container[b-gyads8mbrg] {
  animation: fadeIn-b-gyads8mbrg 0.5s ease-in;
}

@keyframes fadeIn-b-gyads8mbrg {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=Content.razor.css.map */
/* /Components/Components/Footer.razor.rz.scp.css */
@charset "UTF-8";
/* Footer.razor.css - 页脚组件样式 */
.bi-ecc-footer[b-b5dqbqxy7s] {
  background-color: #2c2c2c; /* 深灰色背景 */
  color: #e0e0e0; /* 浅灰色文字 */
  font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  padding-top: 2rem;
  border-top: 3px solid #0d6efd; /* 蓝色顶部边框，可根据需要调整颜色 */
}

/* 公司信息部分 */
.company-info .company-name[b-b5dqbqxy7s] {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.company-info .company-en-name[b-b5dqbqxy7s] {
  color: #b0b0b0;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.company-logo .logo-circle[b-b5dqbqxy7s] {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.company-info address[b-b5dqbqxy7s],
.company-info .contact[b-b5dqbqxy7s] {
  color: #cccccc;
  font-style: normal;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.company-info .copyright[b-b5dqbqxy7s] {
  color: #aaaaaa;
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

.company-info .record-number[b-b5dqbqxy7s] {
  color: #888888;
  font-size: 0.75rem;
}

/* 二维码部分 */
.qr-codes-section .section-title[b-b5dqbqxy7s] {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-left: 3px solid #0d6efd;
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}

.qr-code-container[b-b5dqbqxy7s] {
  transition: transform 0.2s;
}

.qr-code-container:hover[b-b5dqbqxy7s] {
  transform: translateY(-5px);
}

.qr-placeholder[b-b5dqbqxy7s] {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.qr-grid[b-b5dqbqxy7s] {
  width: 80%;
  height: 80%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2px;
  background-color: #f8f8f8;
  padding: 5px;
  border-radius: 4px;
}

.qr-pattern[b-b5dqbqxy7s] {
  grid-column: 2/7;
  grid-row: 2/7;
  background: linear-gradient(45deg, transparent 45%, #333 45%, #333 55%, transparent 55%), linear-gradient(-45deg, transparent 45%, #333 45%, #333 55%, transparent 55%), radial-gradient(circle at center, #333 20%, transparent 20%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}

.qr-label[b-b5dqbqxy7s] {
  color: #cccccc;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

/* 页脚分割线 */
.footer-divider[b-b5dqbqxy7s] {
  height: 1px;
  background-color: #444;
  margin: 1.5rem 0;
  width: 100%;
}

/* 底部导航栏 */
.footer-nav[b-b5dqbqxy7s] {
  border-top: 1px solid #444;
  margin-top: 0.5rem;
}

.footer-nav .nav-links[b-b5dqbqxy7s] {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav .nav-link[b-b5dqbqxy7s] {
  color: #cccccc !important;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.2s;
}

.footer-nav .nav-link:hover[b-b5dqbqxy7s] {
  color: #ffffff !important;
}

.footer-nav .nav-link[b-b5dqbqxy7s]::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0d6efd;
  transition: width 0.3s;
}

.footer-nav .nav-link:hover[b-b5dqbqxy7s]::after {
  width: 100%;
}

/* 法律链接 */
a.legal-links[b-b5dqbqxy7s] {
  display: flex;
  align-items: center;
  color: #aaa !important;
  font-size: 0.85rem;
}

a.legal-links .legal-link[b-b5dqbqxy7s] {
  color: #aaa !important;
  text-decoration: none;
  transition: color 0.2s;
}

a.legal-links .legal-link:hover[b-b5dqbqxy7s] {
  color: #ffffff;
  text-decoration: underline;
}

a.legal-links .separator[b-b5dqbqxy7s] {
  color: #666;
}

/*# sourceMappingURL=Footer.razor.css.map */
/* /Components/Components/Header.razor.rz.scp.css */
/* Ensure header is fixed to viewport and above other elements */
#site-header[b-foylryp3w4] {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050 !important; /* higher than banner */
  background-color: transparent !important;
}

/* Make header background change on hover (apply to fixed element) */
#site-header:hover[b-foylryp3w4] {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Header styling: background transparent, text white by default, on hover background becomes white and text turns black */
.app-header[b-foylryp3w4] {
  height: 120px;
  /* position handled by #site-header to ensure it's fixed */
  z-index: 50; /* fallback, overridden by #site-header */
  background-color: transparent;
  backdrop-filter: blur(4px);
  transition: background-color 500ms ease, color 200ms ease;
  color: #fff;
}

/* Ensure brand keeps its default color when header is hovered */
.app-header .navbar-brand[b-foylryp3w4] {
  color: #fff;
  font-size: 18px;
  transition: color 500ms ease;
}

.app-header:hover .navbar-brand[b-foylryp3w4] {
  color: #0026ff !important; /* do not change brand color on hover */
}

/* Normalize nav-link color transition so all links animate equally */
.app-header .nav-link[b-foylryp3w4] {
  color: inherit;
  transition: color 500ms ease;
}

/* Hover: show white background and black text (desktop) */
.app-header:hover[b-foylryp3w4] {
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
}

/* Ensure collapsed menu items respect colors */
.app-header .navbar-nav .nav-link[b-foylryp3w4] {
  color: #fff;
  font-size: 22px;
}

.app-header:hover .navbar-nav .nav-link[b-foylryp3w4] {
  color: #000;
}

/* Focus/active states */
.app-header .nav-link:focus[b-foylryp3w4],
.app-header .nav-link.active[b-foylryp3w4] {
  color: inherit;
}

/* Keep header height variable for banner spacing */
:root[b-foylryp3w4] {
  --header-height: vars.$header-height;
}

.banner[b-foylryp3w4] {
  padding-top: var(--header-height);
}

/* Touch devices: no hover - show header by default */
@media (hover: none) and (pointer: coarse) {
  .app-header[b-foylryp3w4] {
    /* show same appearance as hover state on touch devices */
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
  }
  .app-header .navbar-nav .nav-link[b-foylryp3w4] {
    color: #000;
  }
}

/*# sourceMappingURL=Header.razor.css.map */
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-aootrzhtuj] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-aootrzhtuj] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-504qn0gwgi],
.components-reconnect-repeated-attempt-visible[b-504qn0gwgi],
.components-reconnect-failed-visible[b-504qn0gwgi],
.components-pause-visible[b-504qn0gwgi],
.components-resume-failed-visible[b-504qn0gwgi],
.components-rejoining-animation[b-504qn0gwgi] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-retrying[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-failed[b-504qn0gwgi],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-504qn0gwgi] {
    display: block;
}


#components-reconnect-modal[b-504qn0gwgi] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-504qn0gwgi 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-504qn0gwgi 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-504qn0gwgi 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-504qn0gwgi]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-504qn0gwgi 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-504qn0gwgi {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-504qn0gwgi {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-504qn0gwgi {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-504qn0gwgi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-504qn0gwgi] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-504qn0gwgi] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-504qn0gwgi] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-504qn0gwgi] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-504qn0gwgi] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-504qn0gwgi] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-504qn0gwgi 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-504qn0gwgi] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-504qn0gwgi {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
