
/* ---------------- 基础容器与 CSS 滚动捕捉 ---------------- */
.xl-fullpage-container[data-v-411565d5] {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background-color: #050810;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: relative;
}
.xl-fullpage-container[data-v-411565d5]::-webkit-scrollbar {
  display: none;
}
.xl-fullpage-container[data-v-411565d5] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---------------- 动态背景 ---------------- */
.ambient-background[data-v-411565d5] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.glow-orb[data-v-411565d5] {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(100px);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.red-orb[data-v-411565d5] {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(184, 56, 56, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}
.blue-orb[data-v-411565d5] {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(14, 115, 230, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

/* ---------------- 顶部导航 (核心重构：整体绝对居中布局) ---------------- */
.xl-header[data-v-411565d5] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(5, 8, 16, 0.9) 0%, rgba(5, 8, 16, 0) 100%);
}
.header-center-wrapper[data-v-411565d5] {
  display: flex;
  align-items: center;
  gap: 50px;
}
.logo[data-v-411565d5] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon-img[data-v-411565d5] {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}
.logo-text[data-v-411565d5] {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.main-nav[data-v-411565d5] {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav > a[data-v-411565d5], .nav-dropdown-container > a[data-v-411565d5] {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.main-nav > a[data-v-411565d5]:hover, .nav-dropdown-container > a[data-v-411565d5]:hover {
  opacity: 1;
  color: #0e73e6;
}
.nav-item-active[data-v-411565d5] {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: bold;
}
.nav-exp-btn[data-v-411565d5] {
  padding: 6px 20px !important;
  font-size: 14px !important;
  border-radius: 20px !important;
  margin-left: 10px;
}
.caret[data-v-411565d5] {
  font-size: 10px;
  margin-left: 2px;
}
.nav-dropdown-container[data-v-411565d5] {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.dropdown-menu[data-v-411565d5] {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 15, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 0;
  width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.nav-dropdown-container:hover .dropdown-menu[data-v-411565d5] {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item[data-v-411565d5] {
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.dropdown-item[data-v-411565d5]:hover {
  background: rgba(14, 115, 230, 0.15);
  color: #fff;
}
.header-actions[data-v-411565d5] {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.btn-primary-outline[data-v-411565d5] {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary-outline[data-v-411565d5]:hover {
  background: #fff;
  color: #000;
}

/* ---------------- 右侧滚动指示器 ---------------- */
.scroll-indicators[data-v-411565d5] {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}
.dot[data-v-411565d5] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot[data-v-411565d5]:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}
.dot.active[data-v-411565d5] {
  background: #0e73e6;
  box-shadow: 0 0 10px #0e73e6;
  transform: scale(1.4);
}

/* ---------------- 全屏页面结构 ---------------- */
.fullscreen-section[data-v-411565d5] {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.section-content[data-v-411565d5] {
  width: 85%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(60px, 8vw, 180px);
}

/* ================= 第一页全屏视频背景 ================= */
.hero-video-bg[data-v-411565d5] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-video-bg video[data-v-411565d5] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-video-bg video.active-video[data-v-411565d5] {
  opacity: 1;
}
.video-overlay[data-v-411565d5] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 16, 0.6);
  z-index: 1;
}
.hero-content-wrapper[data-v-411565d5] {
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}
.hero-layout[data-v-411565d5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title[data-v-411565d5] {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  letter-spacing: 2px;
  white-space: pre-wrap;
}
.hero-desc[data-v-411565d5] {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 750px;
}
.hero-actions[data-v-411565d5] {
  display: flex;
  align-items: center;
  gap: 24px;
}
.rounded-btn[data-v-411565d5] {
  border-radius: 30px !important;
  padding: 12px 32px !important;
}
.btn-text-blue[data-v-411565d5] {
  background: transparent;
  color: #0e73e6;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.btn-text-blue[data-v-411565d5]:hover {
  color: #1281ff;
}
.btn-text-blue .arrow[data-v-411565d5] {
  transition: transform 0.3s;
}
.btn-text-blue:hover .arrow[data-v-411565d5] {
  transform: translateX(5px);
}
@keyframes pptFadeIn-411565d5 {
0% {
    opacity: 0;
    transform: translateY(50px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
.hero-layout[data-v-411565d5] > * {
  opacity: 0;
}
.is-visible .hero-layout .hero-title[data-v-411565d5] {
  animation: pptFadeIn-411565d5 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}
.is-visible .hero-layout .hero-desc[data-v-411565d5] {
  animation: pptFadeIn-411565d5 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
}
.is-visible .hero-layout .hero-actions[data-v-411565d5] {
  animation: pptFadeIn-411565d5 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

/* ================= 场景优势 专项布局 ================= */
.scenarios-layout[data-v-411565d5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.promise-banner[data-v-411565d5] {
  background: rgba(255, 77, 79, 0.1);
  border: 1px solid rgba(255, 77, 79, 0.3);
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(255, 77, 79, 0.15);
}
.promise-icon[data-v-411565d5] {
  font-size: 20px;
}
.promise-label[data-v-411565d5] {
  color: #ff4d4f;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.promise-text[data-v-411565d5] {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
.scenarios-list-container[data-v-411565d5] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 15px;
}
.scenarios-list-container[data-v-411565d5]::-webkit-scrollbar {
  width: 6px;
}
.scenarios-list-container[data-v-411565d5]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
.scenarios-list-container[data-v-411565d5]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
.scenarios-list-container[data-v-411565d5]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
.scenario-row[data-v-411565d5] {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 28px;
  border-radius: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(20px);
}
.is-visible .scenario-row[data-v-411565d5] {
  opacity: 1;
  transform: translateY(0);
}
.scenario-row[data-v-411565d5]:hover {
  background: rgba(14, 115, 230, 0.12);
  border-color: rgba(14, 115, 230, 0.35);
  transform: translateX(8px);
}
.scen-icon[data-v-411565d5] {
  font-size: 26px;
  margin-right: 24px;
  width: 45px;
  text-align: center;
}
.scen-info[data-v-411565d5] {
  display: flex;
  align-items: center;
  flex: 1;
}
.scen-name[data-v-411565d5] {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  width: 140px;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.scen-desc[data-v-411565d5] {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.scenarios-layout > .promise-banner[data-v-411565d5] {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.is-visible .scenarios-layout .promise-banner[data-v-411565d5] {
  opacity: 1;
  transform: translateY(0);
}

/* ================= 强大AI能力 (Features - 卡片网格) ================= */
.features-layout[data-v-411565d5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.features-title[data-v-411565d5] {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #fff, #0e73e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.scenarios-layout > .features-title[data-v-411565d5] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.is-visible .scenarios-layout .features-title[data-v-411565d5] {
  opacity: 1;
  transform: translateY(0);
}
.features-grid[data-v-411565d5] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1300px;
}
.feature-card[data-v-411565d5] {
  width: calc(20% - 16px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.feature-card[data-v-411565d5]:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(14, 115, 230, 0.4);
  box-shadow: 0 15px 35px rgba(14, 115, 230, 0.15);
}
.feature-icon[data-v-411565d5] {
  font-size: 38px;
  margin-bottom: 15px;
}
.feature-card h3[data-v-411565d5] {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p[data-v-411565d5] {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.features-layout > .features-title[data-v-411565d5] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.is-visible .features-layout .features-title[data-v-411565d5] {
  opacity: 1;
  transform: translateY(0);
}
.features-grid .feature-card[data-v-411565d5] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.is-visible .features-grid .feature-card[data-v-411565d5] {
  opacity: 1;
  transform: translateY(0);
}

/* ================= 原有左右布局 (Text + Visual) ================= */
.text-layout[data-v-411565d5] {
  flex: 1;
  max-width: 500px;
}
.section-subtitle[data-v-411565d5] {
  color: #0e73e6;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.section-title[data-v-411565d5] {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}
.section-desc[data-v-411565d5] {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}
.highlights-grid[data-v-411565d5] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}
.highlight-item[data-v-411565d5] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.highlight-item[data-v-411565d5]:hover {
  background: rgba(14, 115, 230, 0.1);
  border-color: rgba(14, 115, 230, 0.3);
  transform: translateY(-2px);
}
.check-icon[data-v-411565d5] {
  width: 18px;
  height: 18px;
  color: #0e73e6;
  flex-shrink: 0;
}
.btn-primary[data-v-411565d5] {
  background: #0e73e6;
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.glow-btn[data-v-411565d5]:hover {
  background: #1281ff;
  box-shadow: 0 8px 25px rgba(14, 115, 230, 0.4);
  transform: translateY(-2px);
}
.btn-primary .arrow[data-v-411565d5] {
  transition: transform 0.3s;
}
.btn-primary:hover .arrow[data-v-411565d5] {
  transform: translateX(5px);
}
.visual-layout[data-v-411565d5] {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
}
.glass-card[data-v-411565d5] {
  width: 100%;
  max-width: 850px;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.mockup-placeholder[data-v-411565d5] {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}
.mockup-icon[data-v-411565d5] {
  font-size: 60px;
  margin-bottom: 10px;
  display: block;
}
.text-layout[data-v-411565d5] > *, .visual-layout[data-v-411565d5] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.is-visible .text-layout .section-subtitle[data-v-411565d5] {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}
.is-visible .text-layout .section-title[data-v-411565d5] {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.is-visible .text-layout .section-desc[data-v-411565d5] {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.is-visible .text-layout .highlights-grid[data-v-411565d5] {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
.is-visible .text-layout .btn-primary[data-v-411565d5] {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}
.is-visible .visual-layout .glass-card[data-v-411565d5] {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.visual-layout .glass-card[data-v-411565d5] {
  transform: translateY(40px) scale(0.95);
}

/* ---------------- 极简暗黑风备案底部栏 ---------------- */
.footer-wrapper[data-v-411565d5] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(5, 8, 16, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 20;
  display: flex;
  justify-content: center;
}
.footer-bottom-bar[data-v-411565d5] {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.visit-stats[data-v-411565d5] {
  display: flex;
  align-items: center;
}
.highlight-num[data-v-411565d5] {
  color: #0e73e6;
  font-weight: 600;
  margin: 0 4px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}
.vertical-divider[data-v-411565d5] {
  color: rgba(255, 255, 255, 0.2);
}
.record-link[data-v-411565d5] {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.record-link[data-v-411565d5]:hover {
  color: #0e73e6;
}
.glass-card.has-image[data-v-411565d5] {
  aspect-ratio: auto;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}
.showcase-img[data-v-411565d5] {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.zoom-overlay[data-v-411565d5] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.glass-card.has-image:hover .zoom-overlay[data-v-411565d5] {
  opacity: 1;
}
.image-zoom-wrapper:hover .zoom-overlay[data-v-411565d5] {
  opacity: 1;
}
.zoom-icon[data-v-411565d5] {
  width: 50px;
  height: 50px;
  color: #fff;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card.has-image:hover .zoom-icon[data-v-411565d5] {
  transform: scale(1);
}
.image-zoom-wrapper:hover .zoom-icon[data-v-411565d5] {
  transform: scale(1);
}
.image-zoom-modal[data-v-411565d5] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.zoomed-img[data-v-411565d5] {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.close-zoom-btn[data-v-411565d5] {
  position: absolute;
  top: 30px;
  right: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-zoom-btn[data-v-411565d5]:hover {
  color: #0e73e6;
}
.fade-enter-active[data-v-411565d5], .fade-leave-active[data-v-411565d5] {
  transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-411565d5], .fade-leave-to[data-v-411565d5] {
  opacity: 0;
}

/* ================= 主页右上角已登录用户信息样式 ================= */
.user-greeting-box[data-v-411565d5] {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.greeting-text[data-v-411565d5] {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.action-divider[data-v-411565d5] {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}
.logout-link[data-v-411565d5] {
  color: #0e73e6;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.logout-link[data-v-411565d5]:hover {
  color: #40a9ff;
  text-shadow: 0 0 8px rgba(14, 115, 230, 0.5);
}

