
.nav-link[data-v-848e5744] {
  position: relative;
}
.nav-link.active[data-v-848e5744]::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4f46e5;
  border-radius: 3px;
}

/* 添加页面内容的上边距，防止被固定导航栏遮挡 */
[data-v-848e5744] body {
  padding-top: 4rem;
}


#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
#app::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* 解决 el-dialog 移动端宽度问题，强制全局覆盖 */
@media (max-width: 600px) {
.success-dialog {
    --el-dialog-width: 90vw !important;
}
.success-dialog .el-dialog {
    width: 90vw !important;
    min-width: 0 !important;
    max-width: 90vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0 !important;
}
}

