
.el-aside[data-v-3184ec7a] {
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: relative;
  font-family: 'Inter', sans-serif;
  transition: width 0.3s ease;
}

/* Loading container */
.loading-container[data-v-3184ec7a] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 14px;
  height: 100%;
  flex-direction: column;
  gap: 10px;
}
.loading-icon[data-v-3184ec7a] {
  animation: spin-3184ec7a 1s linear infinite;
}
@keyframes spin-3184ec7a {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* 顶部用户信息区域 */
.user-header[data-v-3184ec7a] {
  padding: 16px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: inherit;
  position: sticky;
  top: 0;
  z-index: 10;
}
.sidebar.collapsed .user-header[data-v-3184ec7a] {
  padding: 16px 0;
  justify-content: center;
}
.logo-container[data-v-3184ec7a] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 15px;
}
.user-info[data-v-3184ec7a] {
  display: flex;
  flex-direction: column;
}
.user-name[data-v-3184ec7a] {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sidebar-light);
}
.user-email[data-v-3184ec7a] {
  font-size: 12px;
  opacity: 0.8;
  color: var(--text-sidebar-light);
}

/* 折叠按钮 */
.collapse-btn[data-v-3184ec7a] {
  padding: 12px;
  cursor: pointer;
  text-align: center;
  background: transparent;
  border-bottom: none;
  z-index: 20;
}
.sidebar.collapsed .collapse-btn[data-v-3184ec7a] {
  margin: 0;
  padding: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 当侧边栏收起时隐藏用户信息 */
.sidebar.collapsed .user-info[data-v-3184ec7a] {
  display: none;
}

/* 主菜单容器 */
.menu-wrapper[data-v-3184ec7a] {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 20px;
  background: transparent;
}
.menu-wrapper[data-v-3184ec7a]::-webkit-scrollbar {
  width: 4px;
}
.menu-wrapper[data-v-3184ec7a]::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
.menu-wrapper[data-v-3184ec7a]::-webkit-scrollbar-track {
  background-color: transparent;
}
.el-menu[data-v-3184ec7a] {
  border: none;
}

/* 收起状态时的弹出菜单样式 */
[data-v-3184ec7a] .el-menu--popup {
  min-width: 160px;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  /* 增加过渡延迟，防止鼠标移动时菜单消失 */
  transition: opacity 0.3s 0.1s, visibility 0.3s 0.1s !important;
}
[data-v-3184ec7a] .el-menu--vertical .el-menu--popup {
  padding: 8px 0;
}
[data-v-3184ec7a] .el-menu--popup .el-menu-item {
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  font-size: 14px;
  background-color: transparent;
}
[data-v-3184ec7a] .el-menu--popup .el-menu-item:hover {
  background-color: rgba(var(--primary-red-rgb), 0.2);
  box-shadow: none;
}
[data-v-3184ec7a] .el-menu--popup .el-menu-item.is-active {
  background-color: var(--active-color-light2) !important;
  color: var(--active-color-light1) !important;
  font-weight: 600;
  position: relative;
}

/* 折叠状态下弹出菜单中的激活项样式 */
.sidebar.collapsed[data-v-3184ec7a] .el-menu--popup .el-menu-item.is-active {
  color: #ffcc00 !important;
  font-weight: 600;
}

/* 黑暗模式下折叠状态的子菜单激活项样式 */
.dark-mode.sidebar.collapsed[data-v-3184ec7a] .el-menu--popup .el-menu-item.is-active {
  color: #ffcc00 !important;
}
[data-v-3184ec7a] .el-menu--popup .el-menu-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--active-color-light1) !important;
  border-radius: 0 4px 4px 0;
}

/* 黑暗模式下的弹出菜单样式 */
[data-v-3184ec7a] .dark .el-menu--popup {
  background-color: var(--bg-sidebar-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
[data-v-3184ec7a] .dark .el-menu--popup .el-menu-item {
  color: var(--text-sidebar-dark);
}
[data-v-3184ec7a] .dark .el-menu--popup .el-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
[data-v-3184ec7a] .dark .el-menu--popup .el-menu-item.is-active {
  background-color: rgba(var(--text-light-rgb), 0.3) !important;
  color: var(--text-light) !important;
}
[data-v-3184ec7a] .dark .el-menu--popup .el-menu-item.is-active::before {
  background-color: var(--text-light);
}
[data-v-3184ec7a] .el-sub-menu__title {
  position: relative;
}
[data-v-3184ec7a] .el-sub-menu__title::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  z-index: 2000;
}
[data-v-3184ec7a] .el-popper.is-light {
  border: none !important;
}
[data-v-3184ec7a] .el-menu--popup-container {
  z-index: 3000 !important;
}
[data-v-3184ec7a] .el-sub-menu.is-active {
  position: relative;
}
[data-v-3184ec7a] .el-sub-menu.is-active::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  z-index: 10;
}

/* 菜单项和子菜单标题样式 */
.el-sub-menu__title[data-v-3184ec7a], .el-menu-item[data-v-3184ec7a] {
  background-color: rgba(var(--primary-red-rgb), 0.08);
  height: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

/* 鼠标在上面 */
.el-sub-menu__title[data-v-3184ec7a]:hover, .el-menu-item[data-v-3184ec7a]:hover {
  background-color: rgba(var(--primary-red-rgb), 0.5);
  box-shadow: none;
}
.el-sub-menu__title .el-icon[data-v-3184ec7a], .el-menu-item .el-icon[data-v-3184ec7a] {
  margin-right: 12px;
  font-size: 20px;
}
.sidebar.collapsed .el-sub-menu__title .el-icon[data-v-3184ec7a],
.sidebar.collapsed .el-menu-item .el-icon[data-v-3184ec7a] {
  margin: 0 auto;
  font-size: 24px;
}

/* 系统首页特殊处理 */
.home-menu-item[data-v-3184ec7a] {
  transition: none;
}

/* 收起状态下的菜单项样式 */
.sidebar.collapsed .el-menu--collapse[data-v-3184ec7a] {
  width: 60px;
}
.sidebar.collapsed .el-menu-item span[data-v-3184ec7a],
.sidebar.collapsed .el-sub-menu__title span[data-v-3184ec7a] {
  display: none;
}
.sidebar.collapsed .el-menu-item[data-v-3184ec7a],
.sidebar.collapsed .el-sub-menu__title[data-v-3184ec7a] {
  padding: 0;
  text-align: center;
  justify-content: center;
}

/* 子菜单箭头样式 */
[data-v-3184ec7a] .el-sub-menu__icon-arrow {
  margin-right: 8px;
}

/* 收起状态下隐藏子菜单箭头 */
.sidebar.collapsed[data-v-3184ec7a] .el-sub-menu__icon-arrow {
  display: none;
}

/* 通用激活状态样式 */
.sidebar-menu .el-menu-item.is-active[data-v-3184ec7a],
.sidebar-menu .el-sub-menu.is-active .el-sub-menu__title[data-v-3184ec7a],
.sidebar-menu .el-sub-menu.is-opened > .el-sub-menu__title[data-v-3184ec7a],
.sidebar-bottom .router-link-active[data-v-3184ec7a] {
  background-color: var(--active-color-light2) !important;
  color: var(--active-color-light1) !important;
  font-weight: 600;
  position: relative;
  border-radius: 0;
}
.sidebar-menu .el-menu-item.is-active[data-v-3184ec7a]::before,
.sidebar-menu .el-sub-menu.is-active .el-sub-menu__title[data-v-3184ec7a]::before,
.sidebar-menu .el-sub-menu.is-opened > .el-sub-menu__title[data-v-3184ec7a]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: var(--active-color-light1) !important;
  border-radius: 0 4px 4px 0;
}

/* 暗黑模式下的激活状态 */
.dark-mode .sidebar-menu .el-menu-item.is-active[data-v-3184ec7a],
.dark-mode .sidebar-menu .el-sub-menu.is-active .el-sub-menu__title[data-v-3184ec7a],
.dark-mode .sidebar-menu .el-sub-menu.is-opened > .el-sub-menu__title[data-v-3184ec7a],
.dark-mode .sidebar-bottom .router-link-active[data-v-3184ec7a] {
  background-color: rgba(var(--text-light-rgb), 0.3) !important;
  color: var(--text-light) !important;
}
.dark-mode .sidebar-menu .el-menu-item.is-active[data-v-3184ec7a]::before,
.dark-mode .sidebar-menu .el-sub-menu.is-active .el-sub-menu__title[data-v-3184ec7a]::before,
.dark-mode .sidebar-menu .el-sub-menu.is-opened > .el-sub-menu__title[data-v-3184ec7a]::before {
  background-color: var(--text-light);
}

/* 收起状态下的激活样式 */
.sidebar.collapsed .el-sub-menu.is-active .el-sub-menu__title[data-v-3184ec7a],
.sidebar.collapsed .el-menu-item.is-active[data-v-3184ec7a],
.sidebar.collapsed .el-sub-menu.is-opened > .el-sub-menu__title[data-v-3184ec7a] {
  background-color: transparent !important;
}
.sidebar.collapsed .el-sub-menu.is-active .el-sub-menu__title[data-v-3184ec7a]::before,
.sidebar.collapsed .el-menu-item.is-active[data-v-3184ec7a]::before,
.sidebar.collapsed .el-sub-menu.is-opened > .el-sub-menu__title[data-v-3184ec7a]::before {
  display: none !important;
}
.sidebar.collapsed .el-sub-menu.is-active .el-sub-menu__title .el-icon[data-v-3184ec7a],
.sidebar.collapsed .el-menu-item.is-active .el-icon[data-v-3184ec7a],
.sidebar.collapsed .el-sub-menu.is-opened > .el-sub-menu__title .el-icon[data-v-3184ec7a] {
  color: var(--active-color-light1) !important;
}
.el-menu-item.is-active[data-v-3184ec7a] {
  color: var(--active-color-light1) !important;
}
/* 折叠状态下底部菜单的激活样式 - 仅修改图标颜色 */
.sidebar.collapsed .sidebar-bottom .router-link-active[data-v-3184ec7a] {
  background-color: transparent !important;
}
.sidebar.collapsed .sidebar-bottom .router-link-active .el-icon[data-v-3184ec7a] {
  color: var(--active-color-light1) !important;
}
.dark-mode.sidebar.collapsed .el-sub-menu.is-active .el-sub-menu__title .el-icon[data-v-3184ec7a],
.dark-mode.sidebar.collapsed .el-menu-item.is-active .el-icon[data-v-3184ec7a],
.dark-mode.sidebar.collapsed .el-sub-menu.is-opened > .el-sub-menu__title .el-icon[data-v-3184ec7a],
.dark-mode.sidebar.collapsed .sidebar-bottom .router-link-active .el-icon[data-v-3184ec7a] {
  color: var(--text-light) !important;
}

/* 底部菜单区域 */
.sidebar-bottom[data-v-3184ec7a] {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}
.bottom-item[data-v-3184ec7a] {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: var(--text-sidebar-light);
  text-decoration: none;
  cursor: pointer;
}
.bottom-item span[data-v-3184ec7a] {
  margin-left: 8px;
  font-size: 14px;
}

/* 日/夜模式切换的容器 */
.switch-wrapper[data-v-3184ec7a] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: transparent;
}
.switch-content[data-v-3184ec7a] {
  display: flex;
  align-items: center;
}
.switch-label[data-v-3184ec7a] {
  color: var(--text-sidebar-light);
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  margin-right: 10px;
}

/* 自定义 el-switch 样式 */
[data-v-3184ec7a] .el-switch {
  --el-switch-on-color: #fff;
  --el-switch-off-color: #666;
  height: 24px;
  border-radius: 12px;
}
[data-v-3184ec7a] .el-switch__core {
  border-radius: 12px;
  height: 24px;
  width: 48px;
}
[data-v-3184ec7a] .el-switch__action {
  background-color: var(--active-color-light1) !important;
  border-radius: 50%;
}
[data-v-3184ec7a] .el-switch__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-v-3184ec7a] .el-switch__inner .el-icon {
  color: var(--active-color-light1) !important;
}

/* 收起状态下调整图标 */
.sidebar.collapsed .switch-wrapper .el-icon[data-v-3184ec7a] {
  margin: 0 auto;
}


.breadcrumb-container[data-v-b266408a] {
  padding: 12px 16px;
}
.dark-mode .breadcrumb-container[data-v-b266408a] {
  background-color: #1e1e1e;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
[data-v-b266408a] .el-breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
[data-v-b266408a] .el-breadcrumb__inner {
  color: #555;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none !important;
  font-weight: normal;
  cursor: default;
  opacity: 0.8;
}
.dark-mode[data-v-b266408a] .el-breadcrumb__inner {
  color: var(--text-light);
  opacity: 0.8;
}
[data-v-b266408a] .el-breadcrumb__item:last-child .el-breadcrumb__inner {
  color: var(--primary-red);
  font-size: 17px;
  font-weight: 500;
  opacity: 1;
}
.dark-mode[data-v-b266408a] .el-breadcrumb__item:last-child .el-breadcrumb__inner {
  color: var(--text-light);
  opacity: 1;
}
[data-v-b266408a] .el-icon {
  margin-right: 4px;
  color: #555;
}
.dark-mode[data-v-b266408a] .el-icon {
  color: var(--text-light);
}
[data-v-b266408a] .el-breadcrumb__separator {
  color: #555;
  font-size: 16px;
  opacity: 0.6;
}
.dark-mode[data-v-b266408a] .el-breadcrumb__separator {
  color: var(--text-light);
  opacity: 0.6;
}


:root {
  --color-primary-50: #fff23c56;  /* 半透明 */
  --color-primary-light: #ffef15;   /* 提亮 */

  --primary-red: #A32035; /* 酒红色，主色调 */
  --primary-red-rgb: 139, 0, 0; /* RGB 分量 */
  --accent-gold: #FFD700; /* 金色，按钮点击点亮 */
  --accent-gold-rgb: 255, 215, 0; /* RGB 分量 */
  --text-white: #FFFFFF; /* 白色文字 */
  --text-dark: #333333; /* 黑色文字，用于主内容 */
  --text-light: #ffeb3b; /* 明亮黄色，深夜模式 */
  --text-light-rgb: 255, 235, 59; /* RGB 分量 */
  --bg-light: #FFFFFF; /* 纯白色背景 */
  --bg-dark: #121212; /* 深夜模式背景 */
  --bg-sidebar-light: var(--primary-red); /* 酒红色渐变 */
  --bg-sidebar-dark: linear-gradient(to bottom, #000000, #1a1a1a); /* 深夜模式渐变 */
  --text-sidebar-light: var(--text-white); /* 酒红模式侧边栏文字 */
  --text-sidebar-dark: var(--text-white); /* 深夜模式侧边栏文字 */
  --active-color-light1: var(--color-primary-light);
  --active-color-light2: var(--color-primary-50);
  --active-color-dark: var(--text-light); /* 深夜模式激活色 */
}
body {
  background-color: var(--bg-light); /* 纯白色背景 */
  color: var(--text-dark); /* 黑色文字，主内容可读 */
  margin: 0;
  padding: 0;
  font-family: 'Inter', Roboto, 'Helvetica Neue', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.dark-mode body {
  background-color: var(--bg-dark); /* 深夜模式深沉背景 */
  color: var(--text-light); /* 明亮黄色文字 */
}
.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-sidebar-dark);
}
.app-container {
  height: 100vh;
  overflow: hidden;
}

/* 移除 header 样式，因为已不再使用 */
.header {
  display: none; /* 隐藏原有的 header */
}
.dark-mode .main {
  background: #1e1e1e;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* 主内容顶部区域样式，移动到 el-main 外侧 */
.main-header {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--bg-sidebar-light);
  border-radius: 12px;
  margin: 16px 16px 0 16px; /* 与侧边栏顶部对齐 */
}
.dark-mode .main-header {
  background: var(--bg-sidebar-dark); /* 暗黑模式下与侧边栏一致 */
}
.main-logo {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.main-title {
  font-size: 20px;
  color: var(--text-white);
  font-weight: bold;
}
.el-button--primary {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--text-white);
  transition: all 0.3s ease;
}
.el-button--primary:hover,
.el-button--primary:focus {
  background-color: #A52A2A;
  border-color: #A52A2A;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.el-button--primary:active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transform: scale(0.98);
}
.dark-mode .el-button--primary {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: var(--bg-dark);
}
.dark-mode .el-button--primary:hover,
.dark-mode .el-button--primary:focus {
  background-color: #fff176;
  border-color: #fff176;
}
.dark-mode .el-button--primary:active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.el-card {
  border-color: var(--primary-red);
  background-color: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.el-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background-color: rgba(var(--primary-red-rgb), 0.05);
}
.dark-mode .el-card {
  background-color: #1e1e1e;
  border-color: var(--text-light);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.dark-mode .el-card:hover {
  background-color: rgba(var(--text-light-rgb), 0.1);
}

/* Global loading styles */
.global-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 16px;
  color: #333;
}
.dark-mode .global-loading {
  color: #ffeb3b;
}
.loading-icon {
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}
@keyframes spin {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}


/* 主容器样式 */
.dashboard-container[data-v-69474eaa] {
  padding: 5px;
  background-color: var(--bg-200, #ffffff);
  min-height: 120vh;
}

/* 高度分配 */
.first-row[data-v-69474eaa] {
  height: 40vh;
  margin-bottom: 8px;
}
.second-row[data-v-69474eaa] {
  height: 40vh;
  margin-bottom: 8px;
}
.third-row[data-v-69474eaa] {
  height: 30vh;
}

/* -------------------- Card 样式 -------------------- */
.overview-card[data-v-69474eaa] {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 8px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0,0, 0.1);
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
.first-row-card[data-v-69474eaa] {
  height: calc(40vh - 15px);
  overflow: hidden;
}
.second-row-card[data-v-69474eaa] {
  height: calc(40vh - 15px);
  overflow: hidden;
}
.third-row-card[data-v-69474eaa] {
  height: calc(30vh - 15px);
  overflow: hidden;
}
.section-header[data-v-69474eaa] {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
}

/* -------------------- 标签页样式（统一） -------------------- */
[data-v-69474eaa] .clean-tabs .el-tabs__header { margin-bottom: 10px;
}
[data-v-69474eaa] .clean-tabs .el-tabs__item {
  font-size: 12px;
  height: 32px;
  line-height: 32px;
  color: #666666;
}
[data-v-69474eaa] .clean-tabs .el-tabs__item.is-active { color: #C0392B;
}
[data-v-69474eaa] .clean-tabs .el-tabs__active-bar { background-color: #C0392B;
}

/* -------------------- 活动列表样式（表格形式） -------------------- */
.event-list[data-v-69474eaa] {
  flex: 1;
  display: flex;
  flex-direction: column;
  animation: fadeIn-69474eaa 0.5s ease-in;
  overflow: hidden;
}
.event-table[data-v-69474eaa] {
  border: none;
}
[data-v-69474eaa] .event-table .el-table__header th {
  background-color: #FFFFFF;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border: none;
}
[data-v-69474eaa] .event-table .el-table__body td {
  color: #555555;
  font-size: 14px;
  border: none;
}
[data-v-69474eaa] .event-table .el-table__row .event-name {
  font-weight: bold;
}
[data-v-69474eaa] .event-table .el-table__body tr:hover > td {
  background-color: #F5F7FA;
}
.no-events[data-v-69474eaa] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999999;
}
.more-events[data-v-69474eaa] {
  font-size: 16px;
  color: #777777;
  text-align: center;
  margin-top: 5px;
}
.view-events-btn[data-v-69474eaa] {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  color: #C0392B;
  border: 1px solid #C0392B;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 10px;
}
.view-events-btn[data-v-69474eaa]:hover {
  background-color: #C0392B;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* 淡入动画 */
@keyframes fadeIn-69474eaa {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

/* -------------------- 指标样式 -------------------- */
.metrics-grid[data-v-69474eaa] {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  margin-bottom: 10px;
}
.metric-block[data-v-69474eaa] {
  flex: 1;
  text-align: center;
  padding: 0 5px;
}
.metric-label[data-v-69474eaa] {
  font-size: 12px;
  color: #666666;
  margin-bottom: 5px;
}
.metric-value[data-v-69474eaa] {
  font-size: 24px;
  font-weight: 600;
  color: #C0392B;
}

/* -------------------- Top3 子卡片样式 -------------------- */
.top-metrics-container[data-v-69474eaa] {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
}
.top-metric-card[data-v-69474eaa] {
  flex: 1;
  background-color: #F9F9F9;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.top-metric-title[data-v-69474eaa] {
  font-size: 12px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
}
.top-metric-list[data-v-69474eaa] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.top-metric-item[data-v-69474eaa] {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.top-metric-name[data-v-69474eaa] {
  color: #333333;
  width: 80px; /* 固定宽度 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分显示省略号 */
}
.top-metric-value[data-v-69474eaa] {
  color: #C0392B;
  font-weight: 500;
}

/* -------------------- 校区分布图样式 -------------------- */
.chart-legend-container[data-v-69474eaa] {
  display: flex;
  flex-direction: column; /* 图例放在下方 */
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}
.chart-wrapper[data-v-69474eaa] {
  position: relative;
  width: 120px;
  height: 120px;
}
.campus-chart[data-v-69474eaa] {
  width: 120px;
  height: 120px;
}
.empty-circle[data-v-69474eaa] {
  width: 90px;
  height: 90px;
  margin: 8px;
  background-color: #D3D3D3;
  border-radius: 50%;
}
.chart-legend[data-v-69474eaa] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legend-item[data-v-69474eaa] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-color[data-v-69474eaa] {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.legend-text[data-v-69474eaa] {
  font-size: 14px;
  color: #555555;
}

/* -------------------- 近30天报名趋势图样式 -------------------- */
.header-with-button[data-v-69474eaa] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.trend-chart[data-v-69474eaa] {
  width: 100%;
  flex: 1;
  min-height: 200px;
}
.export-button[data-v-69474eaa] {
  font-size: 12px;
  color: #C0392B;
}

/* -------------------- 周刊展示样式 -------------------- */
.weekly-preview[data-v-69474eaa] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 12px;
  flex: 1;
  overflow: hidden;
}
.weekly-cover[data-v-69474eaa] {
  width: 180px;
  height: 180px;
  margin-right: 15px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.weekly-info[data-v-69474eaa] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden; /* 超出部分隐藏 */
}
.weekly-title[data-v-69474eaa] {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
}
.weekly-author[data-v-69474eaa] {
  font-size: 14px;
  color: #999999;
}
.weekly-content[data-v-69474eaa] {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分显示省略号 */
}
.no-weekly[data-v-69474eaa] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999999;
}
.view-details-btn[data-v-69474eaa] {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  color: #C0392B;
  border: 1px solid #C0392B;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.view-details-btn[data-v-69474eaa]:hover {
  background-color: #C0392B;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* -------------------- 用户反馈列表样式 -------------------- */
.feedback-list[data-v-69474eaa] {
  flex: 1;
  display: flex;
  flex-direction: column;
  animation: fadeIn-69474eaa 0.5s ease-in;
  overflow: hidden;
}
.feedback-table[data-v-69474eaa] {
  border: none;
}
[data-v-69474eaa] .feedback-table .el-table__header th {
  background-color: #FFFFFF;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border: none;
}
[data-v-69474eaa] .feedback-table .el-table__body td {
  color: #555555;
  font-size: 14px;
  border: none;
}
[data-v-69474eaa] .feedback-table .el-table__body tr:hover > td {
  background-color: #F5F7FA;
}
.no-feedback[data-v-69474eaa] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999999;
}

/* -------------------- 操作日志列表样式 -------------------- */
.log-list[data-v-69474eaa] {
  flex: 1;
  display: flex;
  flex-direction: column;
  animation: fadeIn-69474eaa 0.5s ease-in;
  overflow: hidden;
}
.log-table[data-v-69474eaa] {
  border: none;
}
[data-v-69474eaa] .log-table .el-table__header th {
  background-color: #FFFFFF;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border: none;
}
[data-v-69474eaa] .log-table .el-table__body td {
  color: #555555;
  font-size: 14px;
  border: none;
}
[data-v-69474eaa] .log-table .el-table__body tr:hover > td {
  background-color: #F5F7FA;
}
.no-logs[data-v-69474eaa] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999999;
}

/* -------------------- 响应式调整 -------------------- */
@media screen and (max-width: 768px) {
.dashboard-container[data-v-69474eaa] { padding: 8px;
}
.first-row[data-v-69474eaa], .second-row[data-v-69474eaa], .third-row[data-v-69474eaa] { height: auto;
}
.first-row-card[data-v-69474eaa], .second-row-card[data-v-69474eaa], .third-row-card[data-v-69474eaa] { height: auto;
}
.metrics-grid[data-v-69474eaa] { flex-direction: column;
}
.metric-block[data-v-69474eaa] { margin-bottom: 8px;
}
.top-metrics-container[data-v-69474eaa] { flex-direction: column;
}
.chart-legend-container[data-v-69474eaa] { flex-direction: column; align-items: center;
}
.chart-wrapper[data-v-69474eaa] { width: 100%; height: 150px;
}
.campus-chart[data-v-69474eaa] { width: 100%; height: 150px;
}
.empty-circle[data-v-69474eaa] { width: 100%; height: 150px;
}
.trend-chart[data-v-69474eaa] { height: 160px;
}
.event-list[data-v-69474eaa], .feedback-list[data-v-69474eaa], .log-list[data-v-69474eaa] { overflow-x: auto;
}
}


/* Overall Page Styling */
.create-event-page[data-v-185ecd1e] {
  padding: 20px;
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Configuration Prompt */
.config-prompt[data-v-185ecd1e] {
  max-width: 960px;
  margin: 20px auto;
  padding: 15px;
  background: #fef2f2;
  border-radius: 10px;
  border: 1px solid #ef4444;
  text-align: center;
}
.config-prompt span[data-v-185ecd1e] {
  color: #b91c1c;
  font-size: 15px;
  line-height: 1.5;
}
.prompt-buttons[data-v-185ecd1e] {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.prompt-buttons .el-button--primary[data-v-185ecd1e] {
  background: var(--primary-red);
  border: none;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  height: 40px;
}
.prompt-buttons .el-button--primary[data-v-185ecd1e]:hover {
  background: #a52a2a;
}
.prompt-buttons .el-button--primary[data-v-185ecd1e]:active {
  background: #b91c1c;
}
.prompt-buttons .el-button--danger[data-v-185ecd1e] {
  background: #dc2626;
  border: none;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  height: 40px;
}
.prompt-buttons .el-button--danger[data-v-185ecd1e]:hover {
  background: #ef4444;
}
.prompt-buttons .el-button--danger[data-v-185ecd1e]:active {
  background: #f87171;
}

/* Main Content Container */
.content-container[data-v-185ecd1e] {
  max-width: 960px;
  margin: 24px auto;
  padding: 24px;
  background: #ffffff;
}

/* Title Section */
.title-section[data-v-185ecd1e] {
  text-align: center;
  margin-bottom: 40px;
}
.title-section h2[data-v-185ecd1e] {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}
.subtitle[data-v-185ecd1e] {
  color: #6b7280;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

/* Form Sections */
.form-section[data-v-185ecd1e] {
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 30px;
}
.form-section[data-v-185ecd1e]:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.section-title[data-v-185ecd1e] {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-red, #8b0000);
}
.section-content[data-v-185ecd1e] {
  padding-left: 0;
}

/* 栅格布局 */
.form-grid[data-v-185ecd1e] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.form-grid .col-2[data-v-185ecd1e] {
  grid-column: 1 / -1;
}
.el-form-item[data-v-185ecd1e] {
  margin-bottom: 20px;
}
.el-form-item__label[data-v-185ecd1e] {
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
}
[data-v-185ecd1e] .el-form-item__label::before {
  color: #ef4444;
  margin-right: 4px;
}
.el-input__inner[data-v-185ecd1e],
.el-select .el-input__inner[data-v-185ecd1e],
.el-textarea__inner[data-v-185ecd1e],
.el-input-number .el-input__inner[data-v-185ecd1e] {
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 16px;
  padding: 10px 14px;
  background: #ffffff;
  color: #111827;
}
.el-textarea__inner[data-v-185ecd1e] {
  height: 96px;
}
.el-input__inner[data-v-185ecd1e]:focus,
.el-select .el-input__inner[data-v-185ecd1e]:focus,
.el-textarea__inner[data-v-185ecd1e]:focus,
.el-input-number .el-input__inner[data-v-185ecd1e]:focus {
  border-color: var(--primary-red, #8b0000);
  box-shadow: 0 0 8px rgba(139, 0, 0, 0.15);
}

/* 下拉选项样式 */
.opt-line[data-v-185ecd1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.opt-main[data-v-185ecd1e] {
  font-weight: 600;
  color: #111827;
}
.opt-desc[data-v-185ecd1e] {
  font-size: 12px;
  color: #6b7280;
}

/* Image Upload */
.upload-container[data-v-185ecd1e] {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  max-width: 500px;
  background: #fafafa;
}
.upload-tip[data-v-185ecd1e] {
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}
.file-item[data-v-185ecd1e] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.remove-button[data-v-185ecd1e] {
  color: var(--primary-red, #8b0000) !important;
  font-size: 14px;
  margin-left: 8px;
}
.remove-button[data-v-185ecd1e]:hover {
  color: #a52a2a !important;
}
.el-button--primary[data-v-185ecd1e] {
  background: var(--primary-red, #8b0000);
  border: none;
  color: #ffffff;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 18px;
  height: 40px;
}
.el-button--primary[data-v-185ecd1e]:hover {
  background: #a52a2a;
}
.el-button--primary[data-v-185ecd1e]:active {
  background: #b91c1c;
}
.time-helper[data-v-185ecd1e] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f8fafc;
  border: 1px dashed #e5e7eb;
  border-radius: 6px;
  color: #64748b;
  font-size: 12px;
}

/* 图标更小更轻 */
.time-helper .helper-icon[data-v-185ecd1e] {
  font-size: 14px;
  color: #94a3b8;
}

/* Switch Styling */
.el-switch.is-checked .el-switch__core[data-v-185ecd1e] {
  border-color: var(--primary-red, #8b0000);
  background-color: var(--primary-red, #8b0000);
}
.el-switch:not(.is-checked) .el-switch__core[data-v-185ecd1e] {
  border-color: #d1d5db;
  background-color: #d1d5db;
}

/* Extra Info Container */
.extra-info-container[data-v-185ecd1e] {
  width: 100%;         /* 占满表单行宽 */
  max-width: none;     /* 不再受任何 max-width 限制 */
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 20px 24px;  /* 可以稍微增大左右 padding */
  background: #fafafa;
}
.extra-info-header[data-v-185ecd1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.extra-info-title[data-v-185ecd1e] {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.extra-info-actions[data-v-185ecd1e] {
  display: flex;
  gap: 8px;
}
.extra-info-actions .el-button[data-v-185ecd1e] {
  height: 36px;
}
.question-list[data-v-185ecd1e] {
  max-height: 600px;
  overflow-y: auto;
}
.question-item[data-v-185ecd1e] {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}
.question-header[data-v-185ecd1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.question-number[data-v-185ecd1e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.number[data-v-185ecd1e] {
  background: var(--primary-red, #8b0000);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.type-select[data-v-185ecd1e] {
  width: 100px;
}
.required-mark[data-v-185ecd1e] {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
}
.question-actions[data-v-185ecd1e] {
  display: flex;
  gap: 4px;
}
.action-btn[data-v-185ecd1e] {
  color: #6b7280;
  font-size: 16px;
  padding: 4px 8px;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-btn[data-v-185ecd1e]:hover {
  color: var(--primary-red, #8b0000);
}
.action-btn[data-v-185ecd1e]:disabled {
  color: #d1d5db;
}
.delete-btn[data-v-185ecd1e] {
  color: #ef4444;
  font-size: 16px;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delete-btn[data-v-185ecd1e]:hover {
  color: #dc2626;
}
.question-content[data-v-185ecd1e] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.question-input[data-v-185ecd1e] {
  width: 100%;
}
.question-options[data-v-185ecd1e] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.options-label[data-v-185ecd1e] {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
.choices-list[data-v-185ecd1e] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.choice-item[data-v-185ecd1e] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.choice-input[data-v-185ecd1e] {
  flex: 1;
}
.choice-delete-btn[data-v-185ecd1e] {
  color: #ef4444;
  font-size: 16px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.choice-delete-btn[data-v-185ecd1e]:hover {
  color: #dc2626;
}
.choice-delete-btn[data-v-185ecd1e]:disabled {
  color: #d1d5db;
}
.add-choice-btn[data-v-185ecd1e] {
  color: var(--primary-red, #8b0000);
  font-size: 14px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  align-self: flex-start;
}
.add-choice-btn[data-v-185ecd1e]:hover {
  color: #a52a2a;
}
.choice-validation-tip[data-v-185ecd1e] {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}
.question-required[data-v-185ecd1e] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.empty-state[data-v-185ecd1e] {
  text-align: center;
  color: #9ca3af;
  padding: 40px 20px;
}
.empty-state p[data-v-185ecd1e] {
  margin: 0;
  font-size: 14px;
}

/* Preview Dialog */
.preview-content[data-v-185ecd1e] {
  max-height: 500px;
  overflow-y: auto;
}
.preview-item[data-v-185ecd1e] {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f4f6;
}
.preview-item[data-v-185ecd1e]:last-child {
  border-bottom: none;
}
.preview-question[data-v-185ecd1e] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.preview-number[data-v-185ecd1e] {
  color: var(--primary-red, #8b0000);
  font-weight: 600;
}
.preview-text[data-v-185ecd1e] {
  color: #111827;
  font-weight: 500;
}
.preview-required[data-v-185ecd1e] {
  color: #ef4444;
  font-weight: 600;
}
.preview-type[data-v-185ecd1e] {
  color: #6b7280;
  font-size: 12px;
}
.preview-input[data-v-185ecd1e] {
  margin-left: 20px;
}

/* Form Actions */
.form-actions[data-v-185ecd1e] {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
.button-group[data-v-185ecd1e] {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.nav-button[data-v-185ecd1e] {
  width: 90px;
  height: 40px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit-button[data-v-185ecd1e] {
  background: var(--primary-red, #8b0000);
  border: none;
  color: #ffffff;
}
.submit-button[data-v-185ecd1e]:hover {
  background: #a52a2a;
}
.submit-button[data-v-185ecd1e]:active {
  background: #b91c1c;
}
.reset-button[data-v-185ecd1e] {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
}
.reset-button[data-v-185ecd1e]:hover {
  background: #f3f4f6;
}
.reset-button[data-v-185ecd1e]:active {
  background: #e5e7eb;
}

/* Message Box Styling */
[data-v-185ecd1e] .custom-message-box {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: none;
}

/* Mobile Adaptations */
@media (max-width: 768px) {
.create-event-page[data-v-185ecd1e] {
    padding: 15px;
}
.content-container[data-v-185ecd1e] {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
}
.config-prompt[data-v-185ecd1e] {
    max-width: 100%;
    margin: 15px auto;
    font-size: 14px;
}
.prompt-buttons[data-v-185ecd1e] {
    flex-direction: column;
    gap: 12px;
}
.prompt-buttons .el-button[data-v-185ecd1e] {
    width: 100%;
    padding: 10px 16px;
}
.title-section h2[data-v-185ecd1e] {
    font-size: 24px;
}

  /* 栅格布局在移动端变为单列 */
.form-grid[data-v-185ecd1e] {
    grid-template-columns: 1fr;
    gap: 16px;
}
.form-grid .col-2[data-v-185ecd1e] {
    grid-column: 1;
}
.upload-container[data-v-185ecd1e] {
    width: 100%;
    max-width: none;
}
.extra-info-header[data-v-185ecd1e] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.extra-info-actions[data-v-185ecd1e] {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.question-header[data-v-185ecd1e] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.question-number[data-v-185ecd1e] {
    width: 100%;
    justify-content: flex-start;
}
.question-actions[data-v-185ecd1e] {
    width: 100%;
    justify-content: flex-end;
}
.choice-item[data-v-185ecd1e] {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}
.choice-delete-btn[data-v-185ecd1e] {
    align-self: flex-end;
    width: auto;
    padding: 4px 8px;
}
.button-group[data-v-185ecd1e] {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}
.nav-button[data-v-185ecd1e] {
    width: 100%;
}
}

/* Small screen optimizations */
@media (max-width: 480px) {
.content-container[data-v-185ecd1e] {
    padding: 16px;
}
.section-title[data-v-185ecd1e] {
    font-size: 18px;
}
.el-form-item__label[data-v-185ecd1e] {
    font-size: 14px;
}
.question-item[data-v-185ecd1e] {
    padding: 12px;
}
.choices-list[data-v-185ecd1e] {
    gap: 6px;
}
}
/* 新增样式 */
.options-toolbar[data-v-185ecd1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.toolbar-actions[data-v-185ecd1e] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.options-toolbar .hint[data-v-185ecd1e] {
  font-size: 12px;
  color: #6b7280;
}
.choice-item .limit-input[data-v-185ecd1e] {
  width: 100px;
}
.hints-container[data-v-185ecd1e] {
  margin-top: 8px;
}
.limit-hint[data-v-185ecd1e] {
  font-size: 12px;
  color: #9ca3af;
}


/* ===== Base Styles ===== */
.manage-event-page[data-v-5a22d0d3] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
}

/* ===== Sticky Header ===== */
.sticky-header[data-v-5a22d0d3] {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-left[data-v-5a22d0d3] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-5a22d0d3] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.page-meta[data-v-5a22d0d3] {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
}
.meta-item[data-v-5a22d0d3] {
  line-height: 1.5;
}
.header-actions[data-v-5a22d0d3] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.search-input[data-v-5a22d0d3] .el-input__inner {
  height: 40px;
  border-radius: 8px;
}
.filter-toggle-btn[data-v-5a22d0d3] {
  height: 40px;
  border-radius: 8px;
}

/* ===== Filters Panel ===== */
.filters-panel[data-v-5a22d0d3] {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 24px;
}
.filter-row[data-v-5a22d0d3] {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.filter-row[data-v-5a22d0d3]:last-child {
  margin-bottom: 0;
}
.filter-group[data-v-5a22d0d3] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-label[data-v-5a22d0d3] {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
}
.chip-group[data-v-5a22d0d3] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-chip[data-v-5a22d0d3] {
  cursor: pointer;
  transition: all 0.2s ease;
}
.slide-down-enter-active[data-v-5a22d0d3],
.slide-down-leave-active[data-v-5a22d0d3] {
  transition: all 0.3s ease;
  max-height: 200px;
  overflow: hidden;
}
.slide-down-enter-from[data-v-5a22d0d3],
.slide-down-leave-to[data-v-5a22d0d3] {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* ===== Table Toolbar ===== */
.table-toolbar[data-v-5a22d0d3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.toolbar-left[data-v-5a22d0d3],
.toolbar-right[data-v-5a22d0d3] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.selection-info[data-v-5a22d0d3] {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
.column-selector[data-v-5a22d0d3] {
  margin-left: 8px;
}

/* 列显示下拉菜单样式 - 阻止点击关闭 */
.column-selector[data-v-5a22d0d3] .el-dropdown-menu__item {
  padding: 8px 16px;
}
.column-selector[data-v-5a22d0d3] .el-checkbox {
  width: 100%;
  margin-right: 0;
}

/* ===== Table Container ===== */
.list-view[data-v-5a22d0d3] {
  padding: 0 24px;
}
.table-container[data-v-5a22d0d3] {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.events-table[data-v-5a22d0d3] {
  width: 100%;
  min-width: 1200px;
  background: #ffffff;
}

/* 禁用表格 hover 效果 */
.events-table[data-v-5a22d0d3] .el-table__body-wrapper {
  background: #ffffff;
}
.events-table[data-v-5a22d0d3] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
  height: 48px;
}
.events-table[data-v-5a22d0d3] .el-table__cell {
  padding: 14px 12px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  height: 48px;
}

/* 完全禁用行 hover 背景色 */
.events-table[data-v-5a22d0d3] .el-table__row {
  transition: none;
  background: #ffffff !important;
}
.events-table[data-v-5a22d0d3] .el-table__row:hover {
  background: #ffffff !important;
}
.events-table[data-v-5a22d0d3] .el-table__row:hover > td {
  background: #ffffff !important;
}

/* ===== Cover Thumbnail ===== */
.cover-thumbnail[data-v-5a22d0d3],
.cover-placeholder[data-v-5a22d0d3] {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}
.cover-placeholder[data-v-5a22d0d3] {
  color: #9ca3af;
}

/* 禁用 hover 效果 */
.cover-thumbnail[data-v-5a22d0d3]:hover {
  transform: none;
  box-shadow: none;
}

/* ===== Event Name Cell ===== */
.event-name-cell[data-v-5a22d0d3] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.name-row[data-v-5a22d0d3] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-name[data-v-5a22d0d3] {
  font-weight: 500;
  color: #111827;
}
.event-name[data-v-5a22d0d3] mark.hl {
  background: #fef3c7;
  color: #92400e;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* 标签和眼睛按钮在同一行 */
.tags-row[data-v-5a22d0d3] {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.preview-btn-inline[data-v-5a22d0d3] {
  padding: 0;
  margin: 0;
  font-size: 16px;
  border: none;
  background: none;
  box-shadow: none;
  min-height: auto;
  height: auto;
}
.preview-btn-inline[data-v-5a22d0d3]:hover {
  background: none;
  box-shadow: none;
}
.event-tags[data-v-5a22d0d3] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ===== 禁止换行样式 ===== */
.no-wrap[data-v-5a22d0d3] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

/* ===== Text Display ===== */
.text-wrap[data-v-5a22d0d3] {
  white-space: normal;
  word-break: break-word;
  line-height: 1.6;
}
.text-ellipsis[data-v-5a22d0d3] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== 管理按钮样式 ===== */
.manage-btn[data-v-5a22d0d3] {
  background: #fff;
  border-color: #dc2626;
  color: #dc2626;
  font-weight: 500;
}
.manage-btn[data-v-5a22d0d3]:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.manage-btn[data-v-5a22d0d3]:active,
.manage-btn[data-v-5a22d0d3]:focus {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

/* ===== Skeleton Loading ===== */
.skeleton-wrapper[data-v-5a22d0d3] {
  padding: 20px;
}
.skeleton-row[data-v-5a22d0d3] {
  margin-bottom: 16px;
}

/* ===== Calendar View ===== */
.calendar-view[data-v-5a22d0d3] {
  padding: 24px;
}
.calendar-day[data-v-5a22d0d3] {
  height: 100%;
  padding: 4px;
}
.day-number[data-v-5a22d0d3] {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.day-events[data-v-5a22d0d3] {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calendar-event-item[data-v-5a22d0d3] {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.calendar-event-item[data-v-5a22d0d3]:hover {
  transform: translateX(2px);
}
.calendar-event-item .el-tag[data-v-5a22d0d3] {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== Drawer ===== */
.drawer-content[data-v-5a22d0d3] {
  padding: 16px;
}
.drawer-info[data-v-5a22d0d3] {
  margin-top: 24px;
}
.info-row[data-v-5a22d0d3] {
  display: flex;
  margin-bottom: 16px;
  font-size: 14px;
}
.info-row .info-label[data-v-5a22d0d3] {
  width: 100px;
  font-weight: 600;
  color: #111827;
  flex-shrink: 0;
}
.info-row p[data-v-5a22d0d3] {
  flex: 1;
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}
.drawer-actions[data-v-5a22d0d3] {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ===== Pagination ===== */
.bottom-pagination[data-v-5a22d0d3] {
  display: flex;
  justify-content: center;
  padding: 24px;
}
.bottom-pagination[data-v-5a22d0d3] .el-pager li.active {
  background-color: var(--primary-red, #8b0000);
  color: #ffffff;
}
.bottom-pagination[data-v-5a22d0d3] .el-pager li:hover,
.bottom-pagination[data-v-5a22d0d3] .el-pagination button:hover:not(:disabled) {
  color: var(--primary-red, #8b0000);
}

/* ===== Delete Dialog ===== */
.delete-item[data-v-5a22d0d3] {
  padding: 4px 0;
  color: #6b7280;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
.sticky-header[data-v-5a22d0d3] {
    flex-direction: column;
    align-items: flex-start;
}
.header-actions[data-v-5a22d0d3] {
    width: 100%;
    flex-wrap: wrap;
}
.search-input[data-v-5a22d0d3] {
    width: 100% !important;
}
}
@media (max-width: 768px) {
.sticky-header[data-v-5a22d0d3] {
    padding: 16px;
}
.page-title[data-v-5a22d0d3] {
    font-size: 18px;
}
.page-meta[data-v-5a22d0d3] {
    flex-direction: column;
    gap: 4px;
}
.filters-panel[data-v-5a22d0d3] {
    padding: 12px 16px;
}
.filter-row[data-v-5a22d0d3] {
    flex-direction: column;
    align-items: flex-start;
}
.table-toolbar[data-v-5a22d0d3] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
}
.toolbar-left[data-v-5a22d0d3],
  .toolbar-right[data-v-5a22d0d3] {
    width: 100%;
}
.list-view[data-v-5a22d0d3] {
    padding: 0 16px;
}
.table-container[data-v-5a22d0d3] {
    margin: 0 -16px 20px;
    padding: 0 16px;
}
.events-table[data-v-5a22d0d3] {
    min-width: 1400px;
}
.calendar-view[data-v-5a22d0d3] {
    padding: 16px;
}
}
@media (max-width: 480px) {
.page-title[data-v-5a22d0d3] {
    font-size: 16px;
}
.header-actions .el-button[data-v-5a22d0d3] {
    font-size: 13px;
    padding: 8px 12px;
}
.chip-group[data-v-5a22d0d3] {
    gap: 6px;
}
.filter-chip[data-v-5a22d0d3] {
    font-size: 12px;
}
}

/* ===== Print Styles ===== */
@media print {
.sticky-header .header-actions[data-v-5a22d0d3],
  .filters-panel[data-v-5a22d0d3],
  .table-toolbar[data-v-5a22d0d3],
  .bottom-pagination[data-v-5a22d0d3] {
    display: none;
}
.table-container[data-v-5a22d0d3] {
    overflow: visible;
}
.events-table[data-v-5a22d0d3] {
    min-width: auto;
}
}


.activity-center[data-v-b21247a8] {
    padding: 30px;
    background-color: #f5f7fa;
    min-height: calc(100vh - 60px);
}
.card-container[data-v-b21247a8] {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.el-tabs__header[data-v-b21247a8] {
    background-color: #ffffff;
    border-bottom: 1px solid #ebeef5;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.el-tab-pane[data-v-b21247a8] {
    background-color: #ffffff;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
  

.weekly-page[data-v-c28a087e] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-c28a087e] {
  background: #ffffff;
  padding: 20px 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.header-content[data-v-c28a087e] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-info[data-v-c28a087e] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-c28a087e] {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.title-icon[data-v-c28a087e] {
  font-size: 26px;
  color: #8b0000;
}
.page-meta[data-v-c28a087e] {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
}
.meta-item[data-v-c28a087e] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-item.selected[data-v-c28a087e] {
  color: #8b0000;
  font-weight: 600;
}
.header-actions[data-v-c28a087e] {
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-input[data-v-c28a087e] {
  width: 300px;
}
.search-input[data-v-c28a087e] .el-input__wrapper {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease;
}
.search-input[data-v-c28a087e] .el-input__wrapper:hover,
.search-input[data-v-c28a087e] .el-input__wrapper.is-focus {
  border-color: #8b0000;
}
.action-btn-icon[data-v-c28a087e] {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.2s;
}
.action-btn-icon[data-v-c28a087e]:hover {
  border-color: #8b0000;
  color: #8b0000;
}
.primary-btn[data-v-c28a087e] {
  height: 40px;
  background: #8b0000;
  border-color: #8b0000;
  border-radius: 12px;
  font-weight: 500;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-btn[data-v-c28a087e]:hover {
  background: #6b0000;
  border-color: #6b0000;
}

/* Content Container */
.content-container[data-v-c28a087e] {
  max-width: 1400px;
  margin: 24px auto;
  padding: 0 32px;
}

/* Table Card */
.table-card[data-v-c28a087e] {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}
.data-table[data-v-c28a087e] .el-table__header th {
  background: #f8f9fa;
  color: #374151;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.data-table[data-v-c28a087e] .el-table__body td {
  border: none;
}
.data-table[data-v-c28a087e] .el-table__row {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.data-table[data-v-c28a087e] .el-table__row:hover {
  background: #f9fafb !important;
}
.data-table[data-v-c28a087e] .el-table__row.selected-row {
  background: #fef2f2 !important;
}
.image-preview-cell[data-v-c28a087e] {
  position: relative;
  width: 90px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f3f4f6;
}
.table-image[data-v-c28a087e] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.image-preview-cell:hover .table-image[data-v-c28a087e] {
  transform: scale(1.1);
}
.image-placeholder[data-v-c28a087e] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 24px;
}
.time-cell[data-v-c28a087e] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
}

/* Pagination */
.main-pagination[data-v-c28a087e] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
  margin-bottom: 24px;
}
.main-pagination[data-v-c28a087e] .el-pager li.active {
  background-color: #8b0000;
}

/* Detail Card */
.detail-card[data-v-c28a087e] {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}
.detail-header[data-v-c28a087e] {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}
.detail-title-row[data-v-c28a087e] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.detail-status[data-v-c28a087e] {
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 14px;
}
.detail-title[data-v-c28a087e] {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}
.detail-meta[data-v-c28a087e] {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6b7280;
}
.detail-meta .meta-item[data-v-c28a087e] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-body[data-v-c28a087e] {
  margin-bottom: 32px;
}
.detail-content-section[data-v-c28a087e],
.detail-image-section[data-v-c28a087e] {
  margin-bottom: 24px;
}
.section-label[data-v-c28a087e] {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}
.detail-content-text[data-v-c28a087e] {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 90px;
  overflow: hidden;
  position: relative;
}
.detail-content-text.expanded[data-v-c28a087e] {
  max-height: none;
}
.expand-btn[data-v-c28a087e] {
  margin-top: 8px;
  font-size: 14px;
  color: #8b0000;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.expand-btn[data-v-c28a087e]:hover {
  color: #6b0000;
}
.image-preview-large[data-v-c28a087e] {
  position: relative;
  max-width: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f3f4f6;
}
.preview-img[data-v-c28a087e] {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.image-overlay[data-v-c28a087e] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
}
.image-preview-large:hover .image-overlay[data-v-c28a087e] {
  opacity: 1;
}
.image-preview-large:hover .preview-img[data-v-c28a087e] {
  transform: scale(1.05);
}
.zoom-icon[data-v-c28a087e] {
  font-size: 40px;
}
.detail-actions[data-v-c28a087e] {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.action-btn[data-v-c28a087e] {
  height: 40px;
  border-radius: 12px;
  font-weight: 500;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Detail Placeholder */
.detail-placeholder[data-v-c28a087e] {
  background: #ffffff;
  border-radius: 12px;
  padding: 60px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

/* Dialog Styles */
.confirm-dialog[data-v-c28a087e] .el-dialog__header,
.form-dialog[data-v-c28a087e] .el-dialog__header {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
}
.confirm-dialog[data-v-c28a087e] .el-dialog__body,
.form-dialog[data-v-c28a087e] .el-dialog__body {
  padding: 24px;
}
.dialog-content[data-v-c28a087e] {
  text-align: center;
}
.warning-icon[data-v-c28a087e] {
  color: #f59e0b;
  margin-bottom: 16px;
}
.dialog-text[data-v-c28a087e] {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* Form Dialog */
.form-dialog[data-v-c28a087e] .el-form-item__label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.form-dialog[data-v-c28a087e] .el-input__wrapper {
  border-radius: 8px;
}
.form-dialog[data-v-c28a087e] .el-textarea__inner {
  border-radius: 8px;
}
.image-uploader[data-v-c28a087e] {
  width: 100%;
}
.image-uploader[data-v-c28a087e] .el-upload,
.image-uploader[data-v-c28a087e] .el-upload-dragger {
  width: 100%;
  height: 180px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  transition: all 0.3s;
}
.image-uploader[data-v-c28a087e] .el-upload-dragger:hover {
  border-color: #8b0000;
}
.upload-preview[data-v-c28a087e] {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.upload-placeholder[data-v-c28a087e] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #9ca3af;
}
.upload-icon[data-v-c28a087e] {
  font-size: 48px;
  margin-bottom: 12px;
}
.upload-text[data-v-c28a087e] {
  font-size: 14px;
}
.autocomplete-item[data-v-c28a087e] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.autocomplete-item span[data-v-c28a087e]:first-child {
  font-weight: 600;
  color: #8b0000;
}

/* Image Preview Dialog */
.dialog-image[data-v-c28a087e] {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
.content-container[data-v-c28a087e] {
    padding: 0 24px;
}
}
@media (max-width: 992px) {
.sticky-header[data-v-c28a087e] {
    padding: 16px 24px;
}
.header-content[data-v-c28a087e] {
    flex-wrap: wrap;
}
.header-actions[data-v-c28a087e] {
    width: 100%;
    justify-content: flex-end;
}
.content-container[data-v-c28a087e] {
    padding: 0 16px;
}
.detail-card[data-v-c28a087e] {
    padding: 24px;
}
.detail-title[data-v-c28a087e] {
    font-size: 22px;
}
.detail-actions[data-v-c28a087e] {
    flex-direction: column;
}
.action-btn[data-v-c28a087e] {
    width: 100%;
    justify-content: center;
}
}
@media (max-width: 768px) {
.page-title[data-v-c28a087e] {
    font-size: 20px;
}
.search-input[data-v-c28a087e] {
    width: 100%;
}
.detail-meta[data-v-c28a087e] {
    flex-direction: column;
    gap: 12px;
}
.image-preview-large[data-v-c28a087e] {
    max-width: 100%;
}
}


.club-list-page[data-v-22ba1b0e] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-22ba1b0e] {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-info-section[data-v-22ba1b0e] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-22ba1b0e] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.page-meta[data-v-22ba1b0e] {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
}
.meta-item.selected[data-v-22ba1b0e] {
  color: #8b0000;
  font-weight: 500;
}
.header-actions[data-v-22ba1b0e] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.action-btn[data-v-22ba1b0e] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
}
.action-btn[data-v-22ba1b0e]:hover {
  border-color: #8b0000;
  color: #8b0000;
}
.primary-btn[data-v-22ba1b0e] {
  background: #8b0000;
  border-color: #8b0000;
  color: #ffffff;
}
.primary-btn[data-v-22ba1b0e]:hover {
  background: #6b0000;
  border-color: #6b0000;
}

/* Content Container */
.content-container[data-v-22ba1b0e] {
  max-width: 1440px;
  margin: 24px auto;
  padding: 0 24px;
}

/* Toolbar */
.table-toolbar[data-v-22ba1b0e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}
.toolbar-left[data-v-22ba1b0e] {
  display: flex;
  align-items: center;
  gap: 20px;
}
.toolbar-right[data-v-22ba1b0e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.selection-info[data-v-22ba1b0e] {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}
.danger-btn[data-v-22ba1b0e] {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}
.danger-btn[data-v-22ba1b0e]:hover {
  background: #dc2626;
  border-color: #dc2626;
}
.mini-pagination[data-v-22ba1b0e] .el-pager li.active {
  background-color: #8b0000;
}

/* Table */
.table-wrapper[data-v-22ba1b0e] {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}
.data-table[data-v-22ba1b0e] {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
}
.data-table[data-v-22ba1b0e] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
}
.data-table[data-v-22ba1b0e] .el-table__row {
  transition: background-color 0.2s ease;
}
.data-table[data-v-22ba1b0e] .el-table__row:hover {
  background: #f9fafb !important;
}
.club-cover[data-v-22ba1b0e] {
  width: 90px;
  height: 70px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-placeholder[data-v-22ba1b0e],
.preview-placeholder[data-v-22ba1b0e] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 24px;
}
.club-name-cell[data-v-22ba1b0e] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pin-btn[data-v-22ba1b0e] {
  color: #d1d5db;
  padding: 4px;
  font-size: 16px;
}
.pin-btn.pinned[data-v-22ba1b0e] {
  color: #f59e0b;
}
.pin-btn[data-v-22ba1b0e]:hover {
  color: #f59e0b;
}
.name-content[data-v-22ba1b0e] {
  flex: 1;
  min-width: 0;
}
.cn-name[data-v-22ba1b0e] {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
}
.en-name[data-v-22ba1b0e] {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}
.preview-btn[data-v-22ba1b0e] {
  color: #6b7280;
  padding: 4px;
  font-size: 16px;
}
.preview-btn[data-v-22ba1b0e]:hover {
  color: #8b0000;
}
.ellipsis-cell[data-v-22ba1b0e] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}
.wrap-cell[data-v-22ba1b0e] {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
mark.hl[data-v-22ba1b0e] {
  background: #ffe58f;
  padding: 0 2px;
  border-radius: 2px;
}
.action-buttons[data-v-22ba1b0e] {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.action-btn-table[data-v-22ba1b0e] {
  height: 28px;
  padding: 0 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 12px;
}

/* Pagination */
.main-pagination[data-v-22ba1b0e] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.main-pagination[data-v-22ba1b0e] .el-pager li.active {
  background-color: #8b0000;
  color: #ffffff;
}

/* Dialog */
.confirm-dialog[data-v-22ba1b0e] .el-dialog__header {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.dialog-warning[data-v-22ba1b0e] {
  font-size: 14px;
  color: #374151;
  margin-bottom: 16px;
}
.delete-list[data-v-22ba1b0e] {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}
.delete-list li[data-v-22ba1b0e] {
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}
.delete-list li.more-items[data-v-22ba1b0e] {
  color: #6b7280;
  font-style: italic;
}

/* Drawer */
.preview-content[data-v-22ba1b0e] {
  padding: 0;
}
.preview-cover[data-v-22ba1b0e] {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.preview-section[data-v-22ba1b0e] {
  margin-bottom: 24px;
}
.preview-section h3[data-v-22ba1b0e] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.en-subtitle[data-v-22ba1b0e] {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.preview-section label[data-v-22ba1b0e] {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.preview-section p[data-v-22ba1b0e] {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}
.preview-section p.description[data-v-22ba1b0e] {
  white-space: pre-wrap;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 992px) {
.sticky-header[data-v-22ba1b0e] {
    flex-wrap: wrap;
}
.header-actions[data-v-22ba1b0e] {
    width: 100%;
    margin-top: 12px;
}
}
@media (max-width: 768px) {
.content-container[data-v-22ba1b0e] {
    padding: 0 16px;
}
.table-toolbar[data-v-22ba1b0e] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.toolbar-left[data-v-22ba1b0e],
  .toolbar-right[data-v-22ba1b0e] {
    width: 100%;
    flex-wrap: wrap;
}
.action-btn[data-v-22ba1b0e] {
    flex: 1;
}
}


.chart-container[data-v-4cddb003] {
  width: 100%;
  height: 400px; /* 确保有高度 */
}



.user-management-page[data-v-398852c2] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ Sticky Header ============ */
.sticky-header[data-v-398852c2] {
  position: static;
  top: auto;
  z-index: auto;
  background: #ffffff;
  border-bottom: 1px solid #F2F4F7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.header-top[data-v-398852c2] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  gap: 16px;
}
.header-info[data-v-398852c2] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-398852c2] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.page-meta[data-v-398852c2] {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
}
.filter-summary[data-v-398852c2] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-label[data-v-398852c2] {
  font-weight: 500;
}
.header-actions[data-v-398852c2] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.search-input[data-v-398852c2] .el-input__wrapper {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease;
}
.search-input[data-v-398852c2] .el-input__wrapper:hover,
.search-input[data-v-398852c2] .el-input__wrapper.is-focus {
  border-color: #8b0000;
}
.action-btn[data-v-398852c2] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
}
.action-btn[data-v-398852c2]:hover {
  border-color: #8b0000;
  color: #8b0000;
}
.primary-btn[data-v-398852c2] {
  background: #8b0000;
  border-color: #8b0000;
  color: #ffffff;
}
.primary-btn[data-v-398852c2]:hover {
  background: #6b0000;
  border-color: #6b0000;
}

/* ============ Stats Bar ============ */
.stats-bar[data-v-398852c2] {
  display: flex;
  gap: 16px;
  padding: 12px 24px;
  background: #fafbfc;
  border-top: 1px solid #F2F4F7;
}
.stat-chip[data-v-398852c2] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: transform 0.15s ease;
}
.stat-chip[data-v-398852c2]:hover {
  transform: translateY(-1px);
}
.stat-chip.verified[data-v-398852c2] {
  border-color: #86efac;
  background: #f0fdf4;
}
.stat-chip.verified .el-icon[data-v-398852c2] {
  color: #16a34a;
}
.stat-chip.unverified[data-v-398852c2] {
  border-color: #fde047;
  background: #fefce8;
}
.stat-chip.unverified .el-icon[data-v-398852c2] {
  color: #ca8a04;
}
.stat-chip.total[data-v-398852c2] {
  border-color: #bfdbfe;
  background: #eff6ff;
}
.stat-chip.total .el-icon[data-v-398852c2] {
  color: #2563eb;
}
.stat-chip.current[data-v-398852c2] {
  border-color: #e9d5ff;
  background: #faf5ff;
}
.stat-chip.current .el-icon[data-v-398852c2] {
  color: #9333ea;
}
.stat-label[data-v-398852c2] {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}
.stat-value[data-v-398852c2] {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  animation: statUpdate-398852c2 0.3s ease;
}
@keyframes statUpdate-398852c2 {
0%, 100% { transform: scale(1); opacity: 1;
}
50% { transform: scale(1.1); opacity: 0.8;
}
}

/* ============ Content Container ============ */
.content-container[data-v-398852c2] {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

/* ============ Batch Actions Bar ============ */
.batch-actions-bar[data-v-398852c2] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  margin-bottom: 16px;
}
.batch-info[data-v-398852c2] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1e40af;
}
.batch-buttons[data-v-398852c2] {
  display: flex;
  gap: 8px;
}

/* ============ Table ============ */
.table-wrapper[data-v-398852c2] {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}
.data-table[data-v-398852c2] {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.data-table[data-v-398852c2] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
}
.data-table[data-v-398852c2] .el-table__row {
  transition: background-color 0.2s ease;
}
.data-table[data-v-398852c2] .el-table__row:hover {
  background: #f9fafb !important;
}

/* Row status indicator */
.data-table[data-v-398852c2] .row-verified {
  border-left: 2px solid #16a34a;
}
.data-table[data-v-398852c2] .row-unverified {
  border-left: 2px solid #d1d5db;
}
.index-number[data-v-398852c2] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 50%;
  font-weight: 600;
  color: #6b7280;
  font-size: 13px;
}
.user-info-cell[data-v-398852c2] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-avatar[data-v-398852c2] {
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}
.user-details[data-v-398852c2] {
  flex: 1;
  min-width: 0;
}
.user-name[data-v-398852c2] {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
  line-height: 1.4;
}
.user-id[data-v-398852c2] {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}
.status-tag[data-v-398852c2] {
  font-weight: 600;
  border: none;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.status-tag.el-tag--success[data-v-398852c2] {
  background: #dcfce7;
  color: #16a34a;
}
.status-tag.el-tag--warning[data-v-398852c2] {
  background: #fef9c3;
  color: #ca8a04;
}
.score-value[data-v-398852c2] {
  font-weight: 600;
  color: #111827;
}
.icon-btn[data-v-398852c2] {
  font-size: 18px;
  color: #6b7280;
  padding: 8px;
}
.icon-btn[data-v-398852c2]:hover {
  color: #8b0000;
  background: #fef2f2;
}

/* ============ Pagination ============ */
.main-pagination[data-v-398852c2] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.main-pagination[data-v-398852c2] .el-pager li.active {
  background-color: #8b0000;
  color: #ffffff;
}

/* ============ Edit Drawer ============ */
.edit-drawer-content[data-v-398852c2] {
  padding: 0;
}
.user-preview[data-v-398852c2] {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: #f9fafb;
  border-radius: 10px;
  margin-bottom: 24px;
}
.preview-info h3[data-v-398852c2] {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.preview-info p[data-v-398852c2] {
  font-size: 14px;
  color: #6b7280;
  margin: 4px 0;
  line-height: 1.6;
}
.info-section[data-v-398852c2] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.info-item label[data-v-398852c2] {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-item p[data-v-398852c2] {
  font-size: 14px;
  color: #111827;
  margin: 0;
}
.score-highlight[data-v-398852c2] {
  font-size: 20px;
  font-weight: 700;
  color: #8b0000;
}
.action-section h4[data-v-398852c2] {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.action-buttons-vertical[data-v-398852c2] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.action-btn-drawer[data-v-398852c2] {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.action-btn-drawer.unbind[data-v-398852c2] {
  background: #dbeafe;
  border-color: #60a5fa;
  color: #1e40af;
}
.action-btn-drawer.unbind[data-v-398852c2]:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
}
.action-btn-drawer.auth[data-v-398852c2] {
  background: #dcfce7;
  border-color: #86efac;
  color: #16a34a;
}
.action-btn-drawer.auth[data-v-398852c2]:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}
.action-btn-drawer.unauth[data-v-398852c2] {
  background: #fef9c3;
  border-color: #fde047;
  color: #ca8a04;
}
.action-btn-drawer.unauth[data-v-398852c2]:hover {
  background: #ca8a04;
  border-color: #ca8a04;
  color: #ffffff;
}

/* ============ Import Dialog ============ */
.import-steps[data-v-398852c2] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 10px;
}
.step-item[data-v-398852c2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.step-item.active[data-v-398852c2] {
  opacity: 1;
}
.step-icon[data-v-398852c2] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}
.step-item.active .step-icon[data-v-398852c2] {
  background: #8b0000;
  color: #ffffff;
}
.step-item span[data-v-398852c2] {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.step-line[data-v-398852c2] {
  width: 60px;
  height: 2px;
  background: #e5e7eb;
  margin: 0 16px;
}
.import-content[data-v-398852c2] {
  padding: 0 8px;
}
.import-section[data-v-398852c2] {
  margin-bottom: 32px;
}
.import-section h4[data-v-398852c2] {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.section-desc[data-v-398852c2] {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 16px 0;
  line-height: 1.6;
}
.upload-box[data-v-398852c2] {
  width: 100%;
}
.upload-box[data-v-398852c2] .el-upload-dragger {
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
  padding: 40px 20px;
}
.upload-box[data-v-398852c2] .el-upload-dragger:hover {
  border-color: #8b0000;
}
.upload-icon[data-v-398852c2] {
  font-size: 48px;
  color: #8b0000;
  margin-bottom: 16px;
}
.upload-text[data-v-398852c2] {
  font-size: 14px;
  color: #374151;
}
.upload-text em[data-v-398852c2] {
  color: #8b0000;
  font-style: normal;
}
.upload-tip[data-v-398852c2] {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
}
.upload-preview[data-v-398852c2] {
  margin-top: 16px;
}
.preview-title[data-v-398852c2] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.last-import-info[data-v-398852c2] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 13px;
  color: #1e40af;
}

/* ============ Responsive ============ */
@media (max-width: 1200px) {
.header-top[data-v-398852c2] {
    flex-wrap: wrap;
}
.header-actions[data-v-398852c2] {
    width: 100%;
}
}
@media (max-width: 768px) {
.content-container[data-v-398852c2] {
    padding: 16px;
}
.stats-bar[data-v-398852c2] {
    flex-wrap: wrap;
    gap: 8px;
}
.stat-chip[data-v-398852c2] {
    flex: 1 1 calc(50% - 4px);
    min-width: 140px;
}
.batch-actions-bar[data-v-398852c2] {
    flex-direction: column;
    gap: 12px;
}
.batch-buttons[data-v-398852c2] {
    width: 100%;
    flex-wrap: wrap;
}
.batch-buttons .el-button[data-v-398852c2] {
    flex: 1;
}
}

/* ============ Accessibility ============ */
.icon-btn[data-v-398852c2]:focus-visible,
.action-btn[data-v-398852c2]:focus-visible {
  outline: 2px solid #8b0000;
  outline-offset: 2px;
}

/* Keyboard navigation support */
.data-table[data-v-398852c2] .el-table__row:focus-within {
  background: #f9fafb !important;
  outline: 2px solid #8b0000;
  outline-offset: -2px;
}


/* 页面整体样式 */
.notification-management[data-v-19184f1e] {
  padding: 20px;
  background: #ffffff;
  min-height: 100vh;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 顶部工具栏 */
.top-bar[data-v-19184f1e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: #ffffff;
  border-bottom: 1px solid #E8ECEF;
  padding: 10px 20px;
  height: 60px;
}
.page-title[data-v-19184f1e] {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.right-buttons .el-button--primary[data-v-19184f1e] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.right-buttons .el-button--primary[data-v-19184f1e]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* 筛选与操作区域 */
.controls[data-v-19184f1e] {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  align-items: center;
}
.control-item[data-v-19184f1e] {
  width: 100%;
  max-width: 300px;
}
.controls .el-input[data-v-19184f1e] {
  width: 100%;
}
.controls .el-input .el-input__inner[data-v-19184f1e] {
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.controls .el-input .el-input__inner[data-v-19184f1e]:focus {
  border-color: #C0392B;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.2);
}
.secondary-button[data-v-19184f1e] {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 10px 20px;
  color: #606266;
  font-weight: 500;
  transition: all 0.3s ease;
}
.secondary-button[data-v-19184f1e]:hover {
  border-color: #BFBFBF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 表格样式 */
.table-wrapper[data-v-19184f1e] {
  width: 100%;
  overflow-x: auto;
}
.notification-table[data-v-19184f1e] {
  min-width: 900px;
  background: #ffffff;
  border: 1px solid #E8ECEF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.notification-table[data-v-19184f1e] .el-table__header th {
  background: #F5F5F5;
  font-weight: bold;
  color: #606266;
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
}
.notification-table[data-v-19184f1e] .el-table__row td {
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
  color: #606266;
}
.notification-table[data-v-19184f1e] .el-table__row:nth-child(odd) {
  background: #ffffff;
}
.notification-table[data-v-19184f1e] .el-table__row:nth-child(even) {
  background: #FAFAFA;
}
.notification-table[data-v-19184f1e] .el-table__row:hover {
  background: #F5F5F5;
}

/* 统一标签基础样式 */
.role-superadmin[data-v-19184f1e],
.role-admin[data-v-19184f1e],
.status-active[data-v-19184f1e],
.status-banned[data-v-19184f1e],
.permission-superadmin[data-v-19184f1e],
.permission-tag[data-v-19184f1e],
.permission-none[data-v-19184f1e] {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

/* 角色标签样式 */
.role-superadmin[data-v-19184f1e] {
  background: #FFF3CD;
  color: #856404;
  border: 1px solid #FFE69F;
}
.role-admin[data-v-19184f1e] {
  background: #E2E3E5;
  color: #5A6268;
  border: 1px solid #C6C8CA;
}

/* 状态标签样式 */
.status-active[data-v-19184f1e] {
  background: #D4EDDA;
  color: #155724;
  border: 1px solid #A7D6B2;
}
.status-banned[data-v-19184f1e] {
  background: #F8D7DA;
  color: #721C24;
  border: 1px solid #F1AEB5;
}

/* 权限标签样式 */
.permission-superadmin[data-v-19184f1e] {
  background: #FFF3CD;
  color: #856404;
  border: 1px solid #FFE69F;
}
.permission-tag[data-v-19184f1e] {
  background: #D1ECF1;
  color: #0C5460;
  border: 1px solid #A3DAE3;
  margin-right: 6px;
  position: relative;
  padding-right: 24px; /* 为删除按钮留出空间 */
}
.permission-none[data-v-19184f1e] {
  background: #E2E3E5;
  color: #5A6268;
  border: 1px solid #C6C8CA;
}

/* 删除权限按钮样式 */
.delete-permission-btn[data-v-19184f1e] {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  color: #721C24;
  font-size: 14px;
  transition: color 0.3s ease;
}
.delete-permission-btn[data-v-19184f1e]:hover {
  color: #A93226;
}

/* 操作列按钮样式 */
.action-buttons[data-v-19184f1e] {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.notification-table .el-button--success[data-v-19184f1e] {
  background: #67C23A;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.notification-table .el-button--success[data-v-19184f1e]:hover {
  background: #85CE61;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(103, 194, 58, 0.3);
}
.notification-table .el-button--danger[data-v-19184f1e] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.notification-table .el-button--danger[data-v-19184f1e]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* 对话框样式 */
[data-v-19184f1e] .el-dialog {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
[data-v-19184f1e] .el-dialog__header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(220, 223, 230, 0.5);
}
[data-v-19184f1e] .el-dialog__title {
  font-size: 18px;
  font-weight: 600;
  color: #303133;
}
[data-v-19184f1e] .el-dialog__body {
  padding: 24px;
}
.dialog-content p[data-v-19184f1e] {
  margin-bottom: 20px;
  font-size: 14px;
  color: #606266;
}
.permissions-group .el-checkbox[data-v-19184f1e] {
  display: block;
  margin: 10px 0;
  color: #606266;
}
[data-v-19184f1e] .el-checkbox__label {
  color: #606266;
}
[data-v-19184f1e] .el-form-item__label {
  color: #606266;
  font-weight: 500;
}
[data-v-19184f1e] .el-input .el-input__inner {
  background: #ffffff;
  color: #333333;
  border-radius: 8px;
  transition: all 0.3s ease;
}
[data-v-19184f1e] .el-input .el-input__inner:focus {
  border-color: #C0392B;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.2);
}
[data-v-19184f1e] .el-select .el-input__inner {
  background: #ffffff;
  color: #333333;
  border-radius: 8px;
}
[data-v-19184f1e] .el-select-dropdown {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
[data-v-19184f1e] .el-select-dropdown__item {
  color: #333333;
}
[data-v-19184f1e] .el-select-dropdown__item.hover {
  background: #f0f0f0;
}
.dialog-cancel-button[data-v-19184f1e] {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 10px 20px;
  color: #606266;
  font-weight: 500;
  transition: all 0.3s ease;
}
.dialog-cancel-button[data-v-19184f1e]:hover {
  border-color: #BFBFBF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
.top-bar[data-v-19184f1e] {
    flex-direction: column;
    gap: 16px;
}
.right-buttons[data-v-19184f1e] {
    flex-wrap: wrap;
    justify-content: center;
}
.controls[data-v-19184f1e] {
    flex-direction: column;
    gap: 12px;
}
.control-item[data-v-19184f1e] {
    max-width: 100%;
}
.notification-table[data-v-19184f1e] .el-table__cell {
    padding: 8px;
}
.notification-table[data-v-19184f1e] .el-table__cell:nth-child(5),
  .notification-table[data-v-19184f1e] .el-table__cell:nth-child(6) {
    display: none;
}
[data-v-19184f1e] .el-dialog {
    width: 90%;
}
}
@media (max-width: 480px) {
.notification-table[data-v-19184f1e] .el-table__cell {
    padding: 6px;
}
.notification-table[data-v-19184f1e] .el-table__cell:nth-child(4) {
    display: none;
}
.controls[data-v-19184f1e] {
    gap: 8px;
}
}


/* 基础样式与布局 */
.auth-container[data-v-7b8975ac] {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.auth-content[data-v-7b8975ac] {
  display: flex;
  width: 1000px;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 左侧图片与品牌区域 */
.illustration[data-v-7b8975ac] {
  position: relative;
  width: 47%;
  height: 100%;
  background-color: #a41f35;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illustration img[data-v-7b8975ac] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.overlay[data-v-7b8975ac] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(164, 31, 53, 0.8) 0%, rgba(164, 31, 53, 0.6) 100%);
  z-index: 1;
}
.brand-text[data-v-7b8975ac] {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 40px;
}
.brand-logo[data-v-7b8975ac] {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.brand-text h2[data-v-7b8975ac] {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.brand-text p[data-v-7b8975ac] {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
  font-weight: 300;
}

/* 右侧登录面板 */
.login-panel[data-v-7b8975ac] {
  width: 53%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-form-wrapper[data-v-7b8975ac] {
  width: 80%;
  max-width: 400px;
}
.login-header[data-v-7b8975ac] {
  text-align: center;
  margin-bottom: 20px;
}
.logo[data-v-7b8975ac] {
  width: 65px;
  height: 65px;
  margin-bottom: 10px;
}
.login-header h1[data-v-7b8975ac] {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}
.subtitle[data-v-7b8975ac] {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* 错误信息样式 */
.error-message[data-v-7b8975ac] {
  color: #f56c6c;
  background-color: #fef0f0;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  animation: fadeIn-7b8975ac 0.3s ease;
}
.error-message i[data-v-7b8975ac] {
  margin-right: 8px;
}

/* 表单样式 */
.login-form[data-v-7b8975ac] {
  margin-bottom: 24px;
}
.form-label[data-v-7b8975ac] {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.custom-input[data-v-7b8975ac] .el-input__wrapper {
  box-shadow: none !important;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  padding: 0px 15px;
}
.custom-input[data-v-7b8975ac] .el-input__wrapper:hover {
  border-color: #c0c4cc;
  background-color: #fff;
}
.custom-input[data-v-7b8975ac] .el-input__wrapper:focus-within {
  border-color: #a41f35;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(164, 31, 53, 0.1) !important;
}
.custom-input[data-v-7b8975ac] .el-input__inner {
  height: 45px;
  font-size: 15px;
  color: #333;
}
.custom-input[data-v-7b8975ac] .el-input__suffix {
  color: #a41f35;
}

/* 登录按钮 */
.submit-button[data-v-7b8975ac] {
  width: 100%;
  height: 48px;
  background-color: #a41f35;
  border-color: #a41f35;
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(164, 31, 53, 0.3);
}
.submit-button[data-v-7b8975ac]:hover {
  background-color: #8a1a2d;
  border-color: #8a1a2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(164, 31, 53, 0.4);
}
.submit-button[data-v-7b8975ac]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(164, 31, 53, 0.3);
}

/* 页脚 */
.login-footer[data-v-7b8975ac] {
  text-align: center;
  margin-top: 32px;
}
.login-footer p[data-v-7b8975ac] {
  font-size: 14px;
  color: #999;
}

/* 抖动动画 */
@keyframes shake-7b8975ac {
0%, 100% { transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% { transform: translateX(-5px);
}
20%, 40%, 60%, 80% { transform: translateX(5px);
}
}
.shake[data-v-7b8975ac] {
  animation: shake-7b8975ac 0.6s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes fadeIn-7b8975ac {
from { opacity: 0; transform: translateY(-10px);
}
to { opacity: 1; transform: translateY(0);
}
}

/* 响应式样式 */
@media (max-width: 1024px) {
.auth-content[data-v-7b8975ac] {
    width: 90%;
    height: auto;
    flex-direction: column;
}
.illustration[data-v-7b8975ac] {
    width: 100%;
    height: 220px;
}
.login-panel[data-v-7b8975ac] {
    width: 100%;
    padding: 40px 0;
}
.brand-text h2[data-v-7b8975ac] {
    font-size: 24px;
}
}
@media (max-width: 600px) {
.auth-content[data-v-7b8975ac] {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}
.illustration[data-v-7b8975ac] {
    height: 180px;
}
.login-form-wrapper[data-v-7b8975ac] {
    width: 90%;
}
.brand-text[data-v-7b8975ac] {
    padding: 0 20px;
}
.brand-text h2[data-v-7b8975ac] {
    font-size: 20px;
}
.brand-logo[data-v-7b8975ac] {
    width: 50px;
    height: 50px;
}
}
.leader-login-link[data-v-7b8975ac] {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 16px;
}
.leader-login-link a[data-v-7b8975ac] {
  color: #409EFF; /* Element Plus 默认主题蓝 */
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}
.leader-login-link a[data-v-7b8975ac]:hover {
  color: #66b1ff;
}



.left-panel[data-v-2226f66e] {
  background: linear-gradient(to bottom, #1a73e8, #4285f4);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.right-panel[data-v-2226f66e] {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-form[data-v-2226f66e] {
  width: 300px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.logo[data-v-2226f66e] {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.illustration[data-v-2226f66e] {
  margin-bottom: 20px;
}
.welcome-text[data-v-2226f66e] {
  text-align: center;
}
h1[data-v-2226f66e] {
  font-size: 36px;
  margin: 0;
}
p[data-v-2226f66e] {
  font-size: 16px;
  margin-top: 10px;
}


/* 页面整体样式 */
.notification-management[data-v-3d79c4cf] {
  padding: 20px;
  background: #ffffff;
  min-height: 100vh;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 顶部工具栏 */
.top-bar[data-v-3d79c4cf] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: #ffffff;
  border-bottom: 1px solid #E8ECEF;
  padding: 10px 20px;
  height: 60px;
}
.page-title[data-v-3d79c4cf] {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.right-buttons .el-button--danger[data-v-3d79c4cf] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.right-buttons .el-button--danger[data-v-3d79c4cf]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}
.right-buttons[data-v-3d79c4cf] .el-dropdown {
  font-size: 14px;
}
.right-buttons[data-v-3d79c4cf] .el-dropdown-menu {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.right-buttons[data-v-3d79c4cf] .el-dropdown-menu__item {
  color: #333333;
}
.right-buttons[data-v-3d79c4cf] .el-dropdown-menu__item:hover {
  background: #f0f0f0;
}

/* 表格样式 */
.table-wrapper[data-v-3d79c4cf] {
  width: 100%;
  overflow-x: auto;
}
.notification-table[data-v-3d79c4cf] {
  min-width: 900px;
  background: #ffffff;
  border: 1px solid #E8ECEF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.notification-table[data-v-3d79c4cf] .el-table__header th {
  background: #F5F5F5;
  font-weight: bold;
  color: #606266;
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
}
.notification-table[data-v-3d79c4cf] .el-table__row td {
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
  color: #606266;
}
.notification-table[data-v-3d79c4cf] .el-table__row:nth-child(odd) {
  background: #ffffff;
}
.notification-table[data-v-3d79c4cf] .el-table__row:nth-child(even) {
  background: #FAFAFA;
}
.notification-table[data-v-3d79c4cf] .el-table__row:hover {
  background: #F5F5F5;
}

/* 分页样式 */
.pagination[data-v-3d79c4cf] {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
}
.pagination[data-v-3d79c4cf] .el-pager li {
  border-radius: 4px;
}
.pagination[data-v-3d79c4cf] .el-pager li.active {
  background-color: #66b1ff;
}
.pagination[data-v-3d79c4cf] .el-pager li:hover,
.pagination[data-v-3d79c4cf] .el-pagination button:hover {
  background-color: #409eff;
  color: #ffffff;
}
.pagination[data-v-3d79c4cf] .el-select .el-input__inner {
  background: #ffffff;
  border-radius: 4px;
  color: #606266;
}
.pagination[data-v-3d79c4cf] .el-input__inner {
  background: #ffffff;
  border-radius: 4px;
  color: #606266;
}

/* 响应式设计 */
@media (max-width: 768px) {
.top-bar[data-v-3d79c4cf] {
    flex-direction: column;
    gap: 16px;
}
.right-buttons[data-v-3d79c4cf] {
    flex-wrap: wrap;
    justify-content: center;
}
.notification-table[data-v-3d79c4cf] .el-table__cell {
    padding: 8px;
}
.notification-table[data-v-3d79c4cf] .el-table__cell:nth-child(4) {
    display: none;
}
.pagination[data-v-3d79c4cf] {
    justify-content: center;
}
}
@media (max-width: 480px) {
.notification-table[data-v-3d79c4cf] .el-table__cell {
    padding: 6px;
}
.notification-table[data-v-3d79c4cf] .el-table__cell:nth-child(3) {
    display: none;
}
}


.consent-container[data-v-44ffdaf7] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
  background: #f5f7fa;
}
.consent-card[data-v-44ffdaf7] {
  width: 1200px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.consent-card h2[data-v-44ffdaf7] {
  text-align: center;
  color: #333;
}
.consent-content[data-v-44ffdaf7] {
  max-height: 350px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}
.consent-content h3[data-v-44ffdaf7] {
  margin-top: 15px;
  color: #409eff;
}
.consent-content p[data-v-44ffdaf7],
.consent-content ul[data-v-44ffdaf7] {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}
.button-group[data-v-44ffdaf7] {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}


/* 页面整体样式 */
.credit-management[data-v-674a1a3c] {
  padding: 25px;
  background: #ffffff;
  min-height: 100vh;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* 顶部导航栏样式 */
.header-section[data-v-674a1a3c] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.page-title[data-v-674a1a3c] {
  font-size: 24px;
  font-weight: 600;
  color: #303133;
  margin-right: 20px;
}
[data-v-674a1a3c] .el-tabs__nav-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 0 10px;
}
[data-v-674a1a3c] .el-tabs__item {
  font-size: 16px;
  font-weight: 500;
  color: #606266;
}
[data-v-674a1a3c] .el-tabs__item.is-active {
  color: #C0392B;
}
[data-v-674a1a3c] .el-tabs__active-bar {
  background-color: #C0392B;
}

/* 筛选与操作区域 */
.controls[data-v-674a1a3c] {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  align-items: center;
}
.control-item[data-v-674a1a3c] {
  width: 100%;
  max-width: 300px;
}
.controls .el-input[data-v-674a1a3c],
.controls .el-select[data-v-674a1a3c] {
  width: 100%;
}
.controls .el-input .el-input__inner[data-v-674a1a3c],
.controls .el-select .el-input__inner[data-v-674a1a3c] {
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.controls .el-input .el-input__inner[data-v-674a1a3c]:focus,
.controls .el-select .el-input__inner[data-v-674a1a3c]:focus {
  border-color: #C0392B;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.2);
}
.secondary-button[data-v-674a1a3c],
.action-button[data-v-674a1a3c] {
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.secondary-button[data-v-674a1a3c] {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  color: #606266;
}
.secondary-button[data-v-674a1a3c]:hover {
  border-color: #BFBFBF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.action-button[data-v-674a1a3c] {
  background: #C0392B;
  border: none;
  color: #ffffff;
}
.action-button[data-v-674a1a3c]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* 表格样式 */
.table-wrapper[data-v-674a1a3c] {
  width: 100%;
  overflow-x: auto;
}
.credit-table[data-v-674a1a3c] {
  min-width: 900px;
  background: #ffffff;
  border: 1px solid #E8ECEF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.credit-table[data-v-674a1a3c] .el-table__header th {
  background: #fff;
  font-weight: bold;
  color: #606266;
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
}
.credit-table[data-v-674a1a3c] .el-table__row td {
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
  color: #606266;
}
.credit-table[data-v-674a1a3c] .el-table__row.even-row {
  background: #FAFAFA;
}
.credit-table[data-v-674a1a3c] .el-table__row.odd-row {
  background: #ffffff;
}
.credit-table[data-v-674a1a3c] .el-table__row:hover {
  background: #FFF1F0;
}
.credit-table .el-button--primary[data-v-674a1a3c] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.credit-table .el-button--primary[data-v-674a1a3c]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}
.credit-table .el-button--danger[data-v-674a1a3c] {
  background: #FF4D4F;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.credit-table .el-button--danger[data-v-674a1a3c]:hover {
  background: #D9363E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 79, 0.3);
}
.credit-table .status-tag[data-v-674a1a3c] {
  border-radius: 4px;
}

/* 分页样式 */
.pagination[data-v-674a1a3c] {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  margin-top: 16px;
}
.pagination[data-v-674a1a3c] .el-pager li {
  border-radius: 4px;
}
.pagination[data-v-674a1a3c] .el-pager li.active {
  background-color: #66b1ff;
}
.pagination[data-v-674a1a3c] .el-pager li:hover,
.pagination[data-v-674a1a3c] .el-pagination button:hover {
  background-color: #409eff;
  color: #ffffff;
}

/* 空状态 */
.empty[data-v-674a1a3c] {
  text-align: center;
  padding: 32px;
  color: #909399;
  font-size: 16px;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 24px;
}

/* 对话框样式 */
[data-v-674a1a3c] .credit-dialog {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
[data-v-674a1a3c] .credit-dialog .el-dialog__header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(220, 223, 230, 0.5);
}
[data-v-674a1a3c] .credit-dialog .el-dialog__title {
  font-size: 18px;
  font-weight: 600;
  color: #303133;
}
[data-v-674a1a3c] .credit-dialog .el-dialog__body {
  padding: 24px;
}
[data-v-674a1a3c] .el-form-item__label {
  color: #606266;
  font-weight: 500;
}
[data-v-674a1a3c] .el-input .el-input__inner,[data-v-674a1a3c] .el-textarea .el-textarea__inner {
  background: #ffffff;
  color: #333333;
  border-radius: 8px;
  transition: all 0.3s ease;
}
[data-v-674a1a3c] .el-input .el-input__inner:focus,[data-v-674a1a3c] .el-textarea .el-textarea__inner:focus {
  border-color: #C0392B;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.2);
}
[data-v-674a1a3c] .el-select .el-input__inner {
  background: #ffffff;
  color: #333333;
  border-radius: 8px;
}
[data-v-674a1a3c] .el-select-dropdown {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
[data-v-674a1a3c] .el-select-dropdown__item {
  color: #333333;
}
[data-v-674a1a3c] .el-select-dropdown__item.hover {
  background: #f0f0f0;
}
.dialog-cancel-button[data-v-674a1a3c] {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 10px 20px;
  color: #606266;
  font-weight: 500;
  transition: all 0.3s ease;
}
.dialog-cancel-button[data-v-674a1a3c]:hover {
  border-color: #BFBFBF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
[data-v-674a1a3c] .el-dialog__footer .el-button--primary {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
[data-v-674a1a3c] .el-dialog__footer .el-button--primary:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* 自定义上传按钮样式 */
.custom-upload-button[data-v-674a1a3c] {
  background: #ffffff;
  border: 1px solid #606266;
  color: #606266;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.custom-upload-button[data-v-674a1a3c]:hover {
  border-color: #303133;
  color: #303133;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
.header-section[data-v-674a1a3c] {
    flex-direction: column;
    align-items: flex-start;
}
.controls[data-v-674a1a3c] {
    flex-direction: column;
    gap: 12px;
}
.control-item[data-v-674a1a3c] {
    max-width: 100%;
}
.credit-table[data-v-674a1a3c] .el-table__cell {
    padding: 8px;
}
[data-v-674a1a3c] .credit-dialog {
    width: 90%;
}
}
@media (max-width: 480px) {
.credit-table[data-v-674a1a3c] .el-table__cell {
    padding: 6px;
}
.credit-table[data-v-674a1a3c] .el-table__cell:nth-child(4) {
    display: none;
}
.controls[data-v-674a1a3c] {
    gap: 8px;
}
}


.job-posting-management[data-v-e7690b8e] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-e7690b8e] {
  position: static;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header-top[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-actions-right[data-v-e7690b8e] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.header-bottom[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-info-section[data-v-e7690b8e] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-e7690b8e] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.page-meta[data-v-e7690b8e] {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
}
.meta-item.selected[data-v-e7690b8e] {
  color: #8b0000;
  font-weight: 500;
}
.action-btn[data-v-e7690b8e] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
}
.action-btn[data-v-e7690b8e]:hover {
  border-color: #8b0000;
  color: #8b0000;
}
.primary-btn[data-v-e7690b8e] {
  background: #8b0000;
  border-color: #8b0000;
  color: #ffffff;
}
.primary-btn[data-v-e7690b8e]:hover {
  background: #6b0000;
  border-color: #6b0000;
}

/* Content Container */
.content-container[data-v-e7690b8e] {
  max-width: 1440px;
  margin: 24px auto;
  padding: 0 24px;
}

/* Toolbar */
.table-toolbar[data-v-e7690b8e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}
.toolbar-left[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 20px;
}
.toolbar-right[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.selection-info[data-v-e7690b8e] {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}
.danger-btn[data-v-e7690b8e] {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}
.danger-btn[data-v-e7690b8e]:hover {
  background: #dc2626;
  border-color: #dc2626;
}

/* Table */
.table-wrapper[data-v-e7690b8e] {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}
.data-table[data-v-e7690b8e] {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
}
.data-table[data-v-e7690b8e] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
}
.data-table[data-v-e7690b8e] .el-table__row {
  transition: background-color 0.2s ease;
}
.data-table[data-v-e7690b8e] .el-table__row:hover {
  background: #f9fafb !important;
  cursor: pointer;
}
.index-number[data-v-e7690b8e] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 50%;
  font-weight: 600;
  color: #6b7280;
  font-size: 13px;
}
.company-logo[data-v-e7690b8e] {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #e5e7eb;
}
.logo-placeholder[data-v-e7690b8e] {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 24px;
}
.job-info-cell[data-v-e7690b8e] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.position-name[data-v-e7690b8e] {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
}
.company-name[data-v-e7690b8e] {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}
.location-cell[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
}
.date-cell[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
}
.tags-container[data-v-e7690b8e] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.table-tag[data-v-e7690b8e] {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
  font-size: 12px;
}
.empty-text[data-v-e7690b8e] {
  color: #9ca3af;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.action-buttons[data-v-e7690b8e] {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.action-btn-table[data-v-e7690b8e] {
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Pagination */
.main-pagination[data-v-e7690b8e] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.main-pagination[data-v-e7690b8e] .el-pager li.active {
  background-color: #8b0000;
  color: #ffffff;
}

/* Job Preview Drawer */
.preview-content[data-v-e7690b8e] {
  padding: 0;
}
.preview-cover[data-v-e7690b8e] {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  margin-bottom: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.preview-cover-error[data-v-e7690b8e] {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 48px;
}
.preview-section[data-v-e7690b8e] {
  margin-bottom: 24px;
}
.preview-section h3[data-v-e7690b8e] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.preview-section .company-info[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #6b7280;
  margin-top: 8px;
}
.preview-section label[data-v-e7690b8e] {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.preview-section p[data-v-e7690b8e] {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tags-preview[data-v-e7690b8e] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.preview-tag[data-v-e7690b8e] {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
  font-size: 13px;
}
.bullet-list[data-v-e7690b8e] {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.bullet-list li[data-v-e7690b8e] {
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 8px;
}
.bullet-list li[data-v-e7690b8e]:last-child {
  margin-bottom: 0;
}

/* Tag Drawer */
.tag-drawer-content[data-v-e7690b8e] {
  padding: 0;
}
.tag-add-section[data-v-e7690b8e] {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.tag-input[data-v-e7690b8e] {
  flex: 1;
}
.tag-add-btn[data-v-e7690b8e] {
  flex-shrink: 0;
  min-width: 120px;
}
.divider-text[data-v-e7690b8e] {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-list-section[data-v-e7690b8e] {
  min-height: 200px;
  max-height: 500px;
  overflow-y: auto;
}
.empty-tags[data-v-e7690b8e] {
  padding: 40px 0;
}
.tag-items[data-v-e7690b8e] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tag-item[data-v-e7690b8e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.tag-item[data-v-e7690b8e]:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.tag-item-left[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.tag-icon[data-v-e7690b8e] {
  color: #8b0000;
  font-size: 18px;
}
.tag-name[data-v-e7690b8e] {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
}
.tag-delete-btn[data-v-e7690b8e] {
  color: #ef4444;
}
.tag-delete-btn[data-v-e7690b8e]:hover {
  color: #dc2626;
  background: #fef2f2;
}

/* Delete Dialog */
.confirm-dialog[data-v-e7690b8e] .el-dialog__header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.dialog-icon-wrapper[data-v-e7690b8e] {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.warning-icon[data-v-e7690b8e] {
  font-size: 48px;
  color: #f59e0b;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.warning-icon[data-v-e7690b8e] svg {
  width: 48px;
  height: 48px;
  color: inherit;
}
.dialog-warning[data-v-e7690b8e] {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  text-align: center;
}
.delete-list[data-v-e7690b8e] {
  list-style: none;
  padding: 0 8px;
  margin: 0 0 8px 0;
  max-height: 240px;
  overflow-y: auto;
}
.delete-list li[data-v-e7690b8e] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 14px;
  color: #4b5563;
}
.delete-list li[data-v-e7690b8e]:last-child {
  border-bottom: none;
}
.delete-list .more-items[data-v-e7690b8e] {
  justify-content: center;
  color: #6b7280;
  font-style: italic;
}
.confirm-dialog[data-v-e7690b8e] .el-dialog__footer {
  padding: 16px 24px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Input and Button Details */
.search-input[data-v-e7690b8e] .el-input__wrapper {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  transition: border-color .2s ease;
}
.search-input[data-v-e7690b8e] .el-input__wrapper:hover,
.search-input[data-v-e7690b8e] .el-input__wrapper.is-focus {
  border-color: #8b0000;
}
.action-btn[data-v-e7690b8e] .el-icon {
  margin-right: 4px;
}
.action-btn-table[data-v-e7690b8e] {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
}
.action-btn-table[data-v-e7690b8e]:hover {
  border-color: #8b0000;
  color: #8b0000;
}

/* Table Cell Optimization */
.data-table[data-v-e7690b8e] .cell {
  line-height: 1.4;
}
.position-name[data-v-e7690b8e] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}
.company-name[data-v-e7690b8e] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}
.tags-container[data-v-e7690b8e] {
  row-gap: 6px;
}
.company-logo[data-v-e7690b8e]:hover {
  transform: translateY(-1px);
  transition: transform .15s ease;
}

/* Drawer Scrollbar */
[data-v-e7690b8e] .el-drawer__body {
  padding: 20px;
}
.tag-list-section[data-v-e7690b8e]::-webkit-scrollbar,
.delete-list[data-v-e7690b8e]::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.tag-list-section[data-v-e7690b8e]::-webkit-scrollbar-thumb,
.delete-list[data-v-e7690b8e]::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 8px;
}
.tag-list-section[data-v-e7690b8e]::-webkit-scrollbar-thumb:hover,
.delete-list[data-v-e7690b8e]::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}

/* Responsive */
@media (max-width: 1200px) {
.header-actions-right[data-v-e7690b8e] {
    flex-wrap: wrap;
    justify-content: flex-end;
}
.position-name[data-v-e7690b8e],
  .company-name[data-v-e7690b8e] {
    max-width: 320px;
}
}
@media (max-width: 768px) {
.header-top[data-v-e7690b8e] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.header-actions-right[data-v-e7690b8e] {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}
.header-bottom[data-v-e7690b8e] {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
}
.table-toolbar[data-v-e7690b8e] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.action-buttons[data-v-e7690b8e] {
    flex-wrap: wrap;
}
.company-logo[data-v-e7690b8e] {
    width: 56px;
    height: 56px;
}
}


/* 页面整体样式 */
.notification-management[data-v-6d38cdd0] {
  padding: 20px;
  background: #ffffff;
  min-height: 100vh;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 顶部工具栏 */
.top-bar[data-v-6d38cdd0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: #ffffff;
  border-bottom: 1px solid #E8ECEF;
  padding: 10px 20px;
  height: 60px;
}
.page-title[data-v-6d38cdd0] {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.right-buttons .el-button--primary[data-v-6d38cdd0] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.right-buttons .el-button--primary[data-v-6d38cdd0]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* 筛选与操作区域 */
.controls[data-v-6d38cdd0] {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  align-items: center;
}
.control-item[data-v-6d38cdd0] {
  width: 100%;
  max-width: 300px;
}
.controls .el-input[data-v-6d38cdd0] {
  width: 100%;
}
.controls .el-input .el-input__inner[data-v-6d38cdd0] {
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.controls .el-input .el-input__inner[data-v-6d38cdd0]:focus {
  border-color: #C0392B;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.2);
}
.secondary-button[data-v-6d38cdd0] {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 10px 20px;
  color: #606266;
  font-weight: 500;
  transition: all 0.3s ease;
}
.secondary-button[data-v-6d38cdd0]:hover {
  border-color: #BFBFBF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 表格样式 */
.table-wrapper[data-v-6d38cdd0] {
  width: 100%;
  overflow-x: auto;
}
.notification-table[data-v-6d38cdd0] {
  min-width: 900px;
  background: #ffffff;
  border: 1px solid #E8ECEF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.notification-table[data-v-6d38cdd0] .el-table__header th {
  background: #F5F5F5;
  font-weight: bold;
  color: #606266;
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
}
.notification-table[data-v-6d38cdd0] .el-table__row td {
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
  color: #606266;
}
.notification-table[data-v-6d38cdd0] .el-table__row:nth-child(odd) {
  background: #ffffff;
}
.notification-table[data-v-6d38cdd0] .el-table__row:nth-child(even) {
  background: #FAFAFA;
}
.notification-table[data-v-6d38cdd0] .el-table__row:hover {
  background: #F5F5F5;
}
.notification-table .selected[data-v-6d38cdd0] {
  background: #e6f7ff !important;
}
.notification-table .el-button--primary[data-v-6d38cdd0] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.notification-table .el-button--primary[data-v-6d38cdd0]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}
.notification-table .el-button--danger[data-v-6d38cdd0] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.notification-table .el-button--danger[data-v-6d38cdd0]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}
.view-recipients-button[data-v-6d38cdd0] {
  background: #ffffff;
  border: 1px solid #666;
  border-radius: 4px;
  padding: 6px 12px;
  color: #666;
  font-weight: 500;
  transition: all 0.3s ease;
}
.view-recipients-button[data-v-6d38cdd0]:hover {
  background: #F5F5F5;
  border-color: #1a1b1c;
  color: #1a1b1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 分页样式 */
.pagination[data-v-6d38cdd0] {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  margin-top: 16px;
}
.pagination[data-v-6d38cdd0] .el-pager li {
  border-radius: 4px;
}
.pagination[data-v-6d38cdd0] .el-pager li.active {
  background-color: #66b1ff;
}
.pagination[data-v-6d38cdd0] .el-pager li:hover,
.pagination[data-v-6d38cdd0] .el-pagination button:hover {
  background-color: #409eff;
  color: #ffffff;
}

/* 空状态 */
.empty[data-v-6d38cdd0] {
  text-align: center;
  padding: 32px;
  color: #909399;
  font-size: 16px;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 24px;
}

/* 对话框样式 */
[data-v-6d38cdd0] .el-dialog {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
[data-v-6d38cdd0] .el-dialog__header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(220, 223, 230, 0.5);
}
[data-v-6d38cdd0] .el-dialog__title {
  font-size: 18px;
  font-weight: 600;
  color: #303133;
}
[data-v-6d38cdd0] .el-dialog__body {
  padding: 24px;
}
.form-section[data-v-6d38cdd0] {
  margin-bottom: 20px;
}
.form-section h3[data-v-6d38cdd0] {
  font-size: 16px;
  font-weight: 600;
  color: #303133;
  margin-bottom: 16px;
  border-left: 3px solid #C0392B;
  padding-left: 8px;
}
.form-container[data-v-6d38cdd0] {
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #C0392B #f0f0f0;
}
.form-container[data-v-6d38cdd0]::-webkit-scrollbar {
  width: 6px;
}
.form-container[data-v-6d38cdd0]::-webkit-scrollbar-thumb {
  background: #C0392B;
  border-radius: 3px;
}
.form-container[data-v-6d38cdd0]::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.form-container .el-input__inner[data-v-6d38cdd0] {
  width: 240px;
}
[data-v-6d38cdd0] .el-form-item__label {
  color: #606266;
  font-weight: 500;
}
[data-v-6d38cdd0] .el-input .el-input__inner,[data-v-6d38cdd0] .el-textarea .el-textarea__inner {
  background: #ffffff;
  color: #333333;
  border-radius: 8px;
  transition: all 0.3s ease;
}
[data-v-6d38cdd0] .el-input .el-input__inner:focus,[data-v-6d38cdd0] .el-textarea .el-textarea__inner:focus {
  border-color: #C0392B;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.2);
}
[data-v-6d38cdd0] .el-select .el-input__inner {
  background: #ffffff;
  color: #333 последнего сообщения333;
  border-radius: 8px;
}
[data-v-6d38cdd0] .el-select-dropdown {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
[data-v-6d38cdd0] .el-select-dropdown__item {
  color: #333333;
}
[data-v-6d38cdd0] .el-select-dropdown__item.hover {
  background: #f0f0f0;
}
.dialog-cancel-button[data-v-6d38cdd0] {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 10px 20px;
  color: #606266;
  font-weight: 500;
  transition: all 0.3s ease;
}
.dialog-cancel-button[data-v-6d38cdd0]:hover {
  border-color: #BFBFBF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
.top-bar[data-v-6d38cdd0] {
    flex-direction: column;
    gap: 16px;
}
.right-buttons[data-v-6d38cdd0] {
    flex-wrap: wrap;
    justify-content: center;
}
.controls[data-v-6d38cdd0] {
    flex-direction: column;
    gap: 12px;
}
.control-item[data-v-6d38cdd0] {
    max-width: 100%;
}
.notification-table[data-v-6d38cdd0] .el-table__cell {
    padding: 8px;
}
[data-v-6d38cdd0] .el-dialog {
    width: 90%;
}
}
@media (max-width: 480px) {
.notification-table[data-v-6d38cdd0] .el-table__cell {
    padding: 6px;
}
.notification-table[data-v-6d38cdd0] .el-table__cell:nth-child(4) {
    display: none;
}
.controls[data-v-6d38cdd0] {
    gap: 8px;
}
}


.carousel-management-page[data-v-22269508] {
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-22269508] {
  background: #ffffff;
  padding: 20px 32px 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.header-row[data-v-22269508] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-info-section[data-v-22269508] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-22269508] {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.title-icon[data-v-22269508] {
  font-size: 26px;
  color: #8b0000;
}
.page-meta[data-v-22269508] {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
}
.meta-item[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-item.selected[data-v-22269508] {
  color: #8b0000;
  font-weight: 600;
}
.header-actions[data-v-22269508] {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* View Switcher */
.view-switcher-wrapper[data-v-22269508] {
  padding: 4px;
  background: #f3f4f6;
  border-radius: 12px;
}
.view-switcher[data-v-22269508] {
  position: relative;
  display: flex;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.switcher-btn[data-v-22269508] {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  border-radius: 8px;
}
.switcher-btn.active[data-v-22269508] {
  color: #ffffff;
}
.switcher-slider[data-v-22269508] {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #8b0000;
  border-radius: 8px;
  transition: transform 0.2s ease;
  z-index: 0;
}
.action-btn-icon[data-v-22269508] {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  transition: all 0.2s;
}
.action-btn-icon[data-v-22269508]:hover {
  border-color: #8b0000;
  color: #8b0000;
}
.primary-btn[data-v-22269508] {
  height: 40px;
  background: #8b0000;
  border-color: #8b0000;
  border-radius: 12px;
  font-weight: 500;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-btn[data-v-22269508]:hover {
  background: #6b0000;
  border-color: #6b0000;
}

/* Monitor Bar */
.monitor-bar-container[data-v-22269508] {
  max-width: 1400px;
  margin: 24px auto 0;
  padding: 0 32px;
}
.monitor-skeleton[data-v-22269508] {
  padding: 12px;
  height: 72px;
}
.monitor-error-state[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 12px;
}
.error-icon[data-v-22269508] {
  color: #f59e0b;
  flex-shrink: 0;
}
.error-text[data-v-22269508] {
  color: #92400e;
  font-size: 14px;
}
.monitor-bar[data-v-22269508] {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
}
.monitor-cards[data-v-22269508] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.monitor-card[data-v-22269508] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.25s ease;
}
.monitor-card[data-v-22269508]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.monitor-card.is-warning[data-v-22269508] {
  border-color: #fca5a5;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}
.warning-badge[data-v-22269508] {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #ef4444;
}
.card-icon-wrapper[data-v-22269508] {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon-wrapper.icon-index[data-v-22269508] {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #991b1b;
}
.card-icon-wrapper.icon-career[data-v-22269508] {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}
.card-icon-wrapper.icon-campusLifeCircle[data-v-22269508] {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
}
.card-content[data-v-22269508] {
  flex: 1;
}
.card-label[data-v-22269508] {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
  font-weight: 500;
}
.card-value[data-v-22269508] {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.count-number[data-v-22269508] {
  font-size: 28px;
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}
.card-value.is-zero .count-number[data-v-22269508] {
  color: #ef4444;
}
.card-unit[data-v-22269508] {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}
.alert-fade-enter-active[data-v-22269508],
.alert-fade-leave-active[data-v-22269508] {
  transition: all 0.3s ease;
}
.alert-fade-enter-from[data-v-22269508] {
  opacity: 0;
  transform: translateY(-10px);
}
.alert-fade-leave-to[data-v-22269508] {
  opacity: 0;
  transform: translateY(10px);
}
.monitor-alert[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fca5a5;
  border-radius: 12px;
}
.alert-icon[data-v-22269508] {
  color: #ef4444;
  flex-shrink: 0;
}
.alert-text[data-v-22269508] {
  flex: 1;
  font-size: 14px;
  color: #991b1b;
}
.alert-text strong[data-v-22269508] {
  font-weight: 600;
}
.alert-actions[data-v-22269508] {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Content Container */
.content-container[data-v-22269508] {
  max-width: 1400px;
  margin: 24px auto;
  padding: 0 32px;
}

/* Stats Bar */
.stats-bar[data-v-22269508] {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 20px;
}
.stat-pill[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
}
.stat-pill.info[data-v-22269508] {
  background: #fef3c7;
  color: #92400e;
}
.stat-pill.success[data-v-22269508] {
  background: #d1fae5;
  color: #065f46;
}
.stat-pill.danger[data-v-22269508] {
  background: #fee2e2;
  color: #991b1b;
}
.stat-pill.total[data-v-22269508] {
  background: #e5e7eb;
  color: #374151;
}
.stat-label[data-v-22269508] {
  font-weight: 500;
}
.stat-value[data-v-22269508] {
  font-weight: 700;
  font-size: 16px;
}

/* Toolbar */
.table-toolbar[data-v-22269508] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.toolbar-left[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.toolbar-right[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-input[data-v-22269508] {
  width: 260px;
}
.search-input[data-v-22269508] .el-input__wrapper {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease;
}
.search-input[data-v-22269508] .el-input__wrapper:hover,
.search-input[data-v-22269508] .el-input__wrapper.is-focus {
  border-color: #8b0000;
}
.filter-select[data-v-22269508] {
  width: 180px;
}
.filter-select[data-v-22269508] .el-input__wrapper {
  border-radius: 12px;
}
.option-with-icon[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reset-btn[data-v-22269508] {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.reset-btn[data-v-22269508]:hover {
  border-color: #8b0000;
  color: #8b0000;
}
.selection-info[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8b0000;
  margin-left: 12px;
  font-weight: 500;
}
.danger-btn[data-v-22269508] {
  background: #ef4444;
  border-color: #ef4444;
  border-radius: 12px;
}
.danger-btn[data-v-22269508]:hover {
  background: #dc2626;
  border-color: #dc2626;
}

/* Table */
.table-card[data-v-22269508] {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.data-table[data-v-22269508] .el-table__header th {
  background: #f8f9fa;
  color: #374151;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table[data-v-22269508] .el-table__row:hover {
  background: #f9fafb !important;
}
.image-preview-cell[data-v-22269508] {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  outline: none;
}
.image-preview-cell[data-v-22269508]:focus {
  outline: 2px solid #8b0000;
  outline-offset: 2px;
}
.table-image[data-v-22269508] {
  width: 100%;
  height: 70px;
  border-radius: 8px;
}
.image-overlay[data-v-22269508] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #ffffff;
  font-size: 24px;
}
.image-preview-cell:hover .image-overlay[data-v-22269508],
.image-preview-cell:focus .image-overlay[data-v-22269508] {
  opacity: 1;
}
.image-error[data-v-22269508] {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 32px;
}
.type-tag[data-v-22269508] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
}
.description-cell[data-v-22269508] {
  line-height: 1.6;
  color: #374151;
}
.time-cell[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
}
.status-tag[data-v-22269508] {
  font-weight: 600;
  border-radius: 8px;
}
.action-buttons[data-v-22269508] {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* Pagination */
.main-pagination[data-v-22269508] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.main-pagination[data-v-22269508] .el-pager li.active {
  background-color: #8b0000;
}

/* Gallery Controls */
.gallery-controls[data-v-22269508] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 5px;
}
.control-item[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control-label[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* Carousel Group */
.gallery-groups[data-v-22269508] {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.carousel-group[data-v-22269508] {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.group-header[data-v-22269508] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.group-title-section[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.group-icon[data-v-22269508] {
  color: #8b0000;
}
.group-title[data-v-22269508] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.group-view-switcher[data-v-22269508] {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #f3f4f6;
  border-radius: 10px;
}
.view-btn[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
}
.view-btn.active[data-v-22269508] {
  background: #ffffff;
  color: #8b0000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.group-empty-state[data-v-22269508] {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel Container */
.carousel-container[data-v-22269508] {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: #f9fafb;
  border-radius: 16px;
}
.custom-carousel[data-v-22269508] {
  border-radius: 12px;
  overflow: hidden;
}
.carousel-slide[data-v-22269508] {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
.slide-image-wrapper[data-v-22269508] {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #f3f4f6;
}
.slide-image[data-v-22269508] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-overlay[data-v-22269508] {
  position: absolute;
  top: 16px;
  right: 16px;
}
.slide-status[data-v-22269508] {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
}
.slide-info[data-v-22269508] {
  padding: 24px;
  background: #ffffff;
}
.slide-description[data-v-22269508] {
  font-size: 16px;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.6;
  font-weight: 500;
}
.slide-meta[data-v-22269508] {
  margin-bottom: 16px;
}
.slide-time[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}
.slide-actions[data-v-22269508] {
  display: flex;
  gap: 8px;
}

/* Card Grid */
.card-grid[data-v-22269508] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.carousel-card[data-v-22269508] {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
}
.carousel-card[data-v-22269508]:hover,
.carousel-card[data-v-22269508]:focus {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.carousel-card[data-v-22269508]:focus {
  outline: 2px solid #8b0000;
  outline-offset: 2px;
}
.card-image-wrapper[data-v-22269508] {
  position: relative;
}
.card-image-container[data-v-22269508] {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: #f3f4f6;
}
@media (max-width: 768px) {
.card-image-container[data-v-22269508] {
    padding-bottom: 75%; /* 4:3 aspect ratio on mobile */
}
}
.card-image[data-v-22269508] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.carousel-card:hover .card-image[data-v-22269508] {
  transform: scale(1.05);
}
.card-overlay[data-v-22269508] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-card:hover .card-overlay[data-v-22269508],
.carousel-card:focus .card-overlay[data-v-22269508] {
  opacity: 1;
}
.preview-icon[data-v-22269508] {
  font-size: 40px;
  color: #ffffff;
}
.card-status[data-v-22269508] {
  position: absolute;
  top: 12px;
  right: 12px;
  font-weight: 600;
  z-index: 2;
  border-radius: 8px;
}
.card-content[data-v-22269508] {
  padding: 16px;
}
.card-description[data-v-22269508] {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
  margin: 0 0 12px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta[data-v-22269508] {
  margin-bottom: 12px;
}
.card-time[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}
.card-actions[data-v-22269508] {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

/* Dialog Styles */
.carousel-uploader[data-v-22269508] {
  width: 100%;
}
.carousel-uploader[data-v-22269508] .el-upload,
.carousel-uploader[data-v-22269508] .el-upload-dragger {
  width: 100%;
  height: 200px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  transition: all 0.3s;
}
.carousel-uploader[data-v-22269508] .el-upload-dragger:hover {
  border-color: #8b0000;
}
.uploader-preview[data-v-22269508] {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.uploader-icon[data-v-22269508] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #9ca3af;
}
.uploader-icon .el-icon[data-v-22269508] {
  font-size: 56px;
  margin-bottom: 12px;
}
.el-upload__text[data-v-22269508] {
  font-size: 14px;
  color: #6b7280;
}
.el-upload__text em[data-v-22269508] {
  color: #8b0000;
  font-style: normal;
  font-weight: 600;
}
.image-size-tip[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 12px;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 8px;
}
.confirm-dialog .dialog-content[data-v-22269508] {
  text-align: center;
}
.warning-icon[data-v-22269508] {
  color: #f59e0b;
  margin-bottom: 16px;
}
.dialog-warning[data-v-22269508] {
  font-size: 15px;
  color: #374151;
  margin-bottom: 20px;
  font-weight: 500;
}
.delete-list[data-v-22269508] {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  text-align: left;
}
.delete-list li[data-v-22269508] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #374151;
}

/* Responsive Design */
@media (max-width: 1200px) {
.monitor-cards[data-v-22269508] {
    grid-template-columns: repeat(2, 1fr);
}
.card-grid[data-v-22269508] {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
}
@media (max-width: 992px) {
.header-row[data-v-22269508] {
    flex-wrap: wrap;
}
.header-actions[data-v-22269508] {
    width: 100%;
    justify-content: flex-end;
}
.content-container[data-v-22269508],
  .monitor-bar-container[data-v-22269508] {
    padding: 0 24px;
}
.stats-bar[data-v-22269508] {
    gap: 12px;
}
.card-grid[data-v-22269508] {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
}
@media (max-width: 768px) {
.sticky-header[data-v-22269508] {
    padding: 16px;
}
.page-title[data-v-22269508] {
    font-size: 20px;
}
.content-container[data-v-22269508],
  .monitor-bar-container[data-v-22269508] {
    padding: 0 16px;
}
.monitor-cards[data-v-22269508] {
    grid-template-columns: 1fr;
}
.monitor-card[data-v-22269508] {
    padding: 16px;
}
.card-icon-wrapper[data-v-22269508] {
    width: 48px;
    height: 48px;
}
.count-number[data-v-22269508] {
    font-size: 24px;
}
.stats-bar[data-v-22269508] {
    gap: 8px;
}
.table-toolbar[data-v-22269508] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.toolbar-left[data-v-22269508],
  .toolbar-right[data-v-22269508] {
    width: 100%;
    flex-wrap: wrap;
}
.search-input[data-v-22269508],
  .filter-select[data-v-22269508] {
    width: 100%;
}
.gallery-controls[data-v-22269508] {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.control-item[data-v-22269508] {
    width: 100%;
    justify-content: space-between;
}
.carousel-container[data-v-22269508] {
    padding: 12px;
}
.slide-image-wrapper[data-v-22269508] {
    height: 200px;
}
.card-grid[data-v-22269508] {
    grid-template-columns: 1fr;
}
.group-header[data-v-22269508] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
}

/* Animation */
@keyframes fadeIn-22269508 {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.carousel-card[data-v-22269508],
.monitor-card[data-v-22269508] {
  animation: fadeIn-22269508 0.3s ease-out;
}

/* Custom Scrollbar */
.delete-list[data-v-22269508]::-webkit-scrollbar {
  width: 6px;
}
.delete-list[data-v-22269508]::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
.delete-list[data-v-22269508]::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.delete-list[data-v-22269508]::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}


/* 页面整体样式 */
.notification-management[data-v-2b7ccbc2] {
  padding: 20px;
  background: #ffffff;
  min-height: 100vh;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 顶部工具栏 */
.top-bar[data-v-2b7ccbc2] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: #ffffff;
  border-bottom: 1px solid #E8ECEF;
  padding: 10px 20px;
  height: 60px;
}
.page-title[data-v-2b7ccbc2] {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* 表格样式 */
.table-wrapper[data-v-2b7ccbc2] {
  width: 100%;
  overflow-x: auto;
}
.notification-table[data-v-2b7ccbc2] {
  min-width: 900px;
  background: #ffffff;
  border: 1px solid #E8ECEF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.notification-table[data-v-2b7ccbc2] .el-table__header th {
  background: #F5F5F5;
  font-weight: bold;
  color: #606266;
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
}
.notification-table[data-v-2b7ccbc2] .el-table__row td {
  white-space: nowrap;
  border-bottom: 1px solid #E8ECEF;
  color: #606266;
}
.notification-table[data-v-2b7ccbc2] .el-table__row:nth-child(odd) {
  background: #ffffff;
}
.notification-table[data-v-2b7ccbc2] .el-table__row:nth-child(even) {
  background: #FAFAFA;
}
.notification-table[data-v-2b7ccbc2] .el-table__row:hover {
  background: #F5F5F5;
}
.notification-table .el-button--danger[data-v-2b7ccbc2] {
  background: #C0392B;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}
.notification-table .el-button--danger[data-v-2b7ccbc2]:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* 图片展示 */
.images-container[data-v-2b7ccbc2] {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.feedback-image[data-v-2b7ccbc2] {
  max-width: 80px;
  max-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 空状态 */
.empty[data-v-2b7ccbc2] {
  text-align: center;
  padding: 32px;
  color: #909399;
  font-size: 16px;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 24px;
}

/* 响应式设计 */
@media (max-width: 768px) {
.notification-table[data-v-2b7ccbc2] .el-table__cell {
    padding: 8px;
}
.feedback-image[data-v-2b7ccbc2] {
    max-width: 60px;
    max-height: 60px;
}
}
@media (max-width: 480px) {
.notification-table[data-v-2b7ccbc2] .el-table__cell {
    padding: 6px;
}
.notification-table[data-v-2b7ccbc2] .el-table__cell:nth-child(4) {
    display: none;
}
}


.event-edit-page[data-v-7aeeda40] {
  padding: 0;
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header - 简洁风格 */
.sticky-header[data-v-7aeeda40] {
  /* position: sticky; */
  /* top: 0; */
  /* z-index: 100; */
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0; /* 极细底边 */
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.back-button[data-v-7aeeda40] {
  flex-shrink: 0; /* Prevent the button from shrinking */
  width: 40px;
  height: 40px;
  font-size: 18px; /* Make the icon slightly larger */
  border: 1px solid #dcdfe6;
  color: #606266;
}
.back-button[data-v-7aeeda40]:hover {
  border-color: #c0c4cc;
  background-color: #f5f7fa;
  color: #303133;
}
.event-info-section[data-v-7aeeda40] {
  flex: 1;
  min-width: 0;
}
.event-title[data-v-7aeeda40] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0; /* 增加与meta的间距 */
  line-height: 1.2;
}
.event-meta[data-v-7aeeda40] {
  display: flex;
  flex-direction: column;
  gap: 2px; /* 两行之间间距 */
}
.meta-line[data-v-7aeeda40] {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6; /* 舒适行高 */
}
.header-actions[data-v-7aeeda40] {
  display: flex;
  gap: 12px;
  align-items: center;
}
.primary-action[data-v-7aeeda40] {
  background: var(--primary-red, #8b0000);
  border: none;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  height: 40px;
}
.primary-action[data-v-7aeeda40]:hover {
  background: #a52a2a;
}
.more-actions .el-button[data-v-7aeeda40] {
  border: 1px solid #d1d5db;
  color: #374151;
  border-radius: 8px;
  height: 40px;
}
.danger-item[data-v-7aeeda40] {
  color: #ef4444;
}

/* Main Content */
.content-container[data-v-7aeeda40] {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 24px;
}

/* Stats Overview - 无背景无边框 */
.stats-overview[data-v-7aeeda40] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px 0; /* 去掉背景和边框，只保留内边距 */
}
.stat-card[data-v-7aeeda40] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stat-label[data-v-7aeeda40] {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
.stat-value[data-v-7aeeda40] {
  font-size: 16px;
  color: #111827;
  font-weight: 600;
}

/* Form Sections */
.form-section[data-v-7aeeda40] {
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0; /* 保留细分隔线 */
  padding-bottom: 30px;
}
.form-section[data-v-7aeeda40]:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.section-title[data-v-7aeeda40] {
  font-size: 18px; /* 稍微缩小标题 */
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--primary-red, #8b0000); /* 保留标题下细线 */
}
.section-content[data-v-7aeeda40] {
  padding-left: 0;
}

/* Form Grid */
.form-grid[data-v-7aeeda40] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.form-grid .col-2[data-v-7aeeda40] {
  grid-column: 1 / -1;
}
.el-form-item[data-v-7aeeda40] {
  margin-bottom: 20px;
}

/* 统一编辑态字体大小到14px */
.el-form-item[data-v-7aeeda40] .el-form-item__label {
  color: #111827;
  font-size: 14px; /* 改为14px与查看态一致 */
  font-weight: 500;
  line-height: 40px;
}
.el-form-item[data-v-7aeeda40] .el-form-item__label::before {
  color: #ef4444;
  margin-right: 4px;
}

/* 输入组件统一样式 - 去除多余边框和阴影 */
.el-input[data-v-7aeeda40] .el-input__inner,
.el-select[data-v-7aeeda40] .el-input__inner,
.el-textarea[data-v-7aeeda40] .el-textarea__inner,
.el-input-number[data-v-7aeeda40] .el-input__inner {
  height: 40px;
  font-size: 14px; /* 统一为14px */
  /* 移除额外的边框和阴影设置，使用Element Plus默认样式 */
}
.el-textarea[data-v-7aeeda40] .el-textarea__inner {
  height: 96px;
}

/* Option line styling */
.opt-line[data-v-7aeeda40] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.5; /* 增加行距 */
}
.opt-main[data-v-7aeeda40] {
  font-weight: 600;
  color: #111827;
}
.opt-desc[data-v-7aeeda40] {
  font-size: 12px;
  color: #6b7280;
}

/* Time helper */
.time-helper[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #64748b;
  font-size: 12px;
}
.time-helper .helper-icon[data-v-7aeeda40] {
  font-size: 14px;
  color: #94a3b8;
}

/* Upload container - 去除背景和边框 */
.upload-container[data-v-7aeeda40] {
  width: 100%;
  max-width: 500px;
  /* 移除边框和背景色 */
}
.upload-tip[data-v-7aeeda40] {
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}
.file-item[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.remove-button[data-v-7aeeda40] {
  color: var(--primary-red, #8b0000) !important;
  font-size: 14px;
  margin-left: 8px;
}
.remove-button[data-v-7aeeda40]:hover {
  color: #a52a2a !important;
}
.el-button--primary[data-v-7aeeda40] {
  background: var(--primary-red, #8b0000);
  border: none;
  color: #ffffff;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 18px;
  height: 40px;
}
.el-button--primary[data-v-7aeeda40]:hover {
  background: #a52a2a;
}

/* Switch styling */
.el-switch[data-v-7aeeda40] .is-checked .el-switch__core {
  border-color: var(--primary-red, #8b0000);
  background-color: var(--primary-red, #8b0000);
}
.el-switch[data-v-7aeeda40] .el-switch__core {
  border-color: #d1d5db;
  background-color: #d1d5db;
}

/* Extra info container - 去除背景和边框 */
.extra-info-container[data-v-7aeeda40] {
  width: 100%;
  max-width: none;
  padding: 20px 0; /* 只保留内边距 */
  /* 移除边框和背景色 */
}
.extra-info-header[data-v-7aeeda40] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.extra-info-title[data-v-7aeeda40] {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.extra-info-actions[data-v-7aeeda40] {
  display: flex;
  gap: 8px;
}
.extra-info-actions .el-button[data-v-7aeeda40] {
  height: 36px;
}
.question-list[data-v-7aeeda40] {
  max-height: 600px;
  overflow-y: auto;
}
.question-item[data-v-7aeeda40] {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}
.question-header[data-v-7aeeda40] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.question-number[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.number[data-v-7aeeda40] {
  background: var(--primary-red, #8b0000);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.type-select[data-v-7aeeda40] {
  width: 100px;
}
.required-mark[data-v-7aeeda40] {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
}
.question-actions[data-v-7aeeda40] {
  display: flex;
  gap: 4px;
}
.delete-btn[data-v-7aeeda40] {
  color: #ef4444;
  font-size: 16px;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delete-btn[data-v-7aeeda40]:hover {
  color: #dc2626;
}
.question-content[data-v-7aeeda40] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.question-input[data-v-7aeeda40] {
  width: 100%;
}
.question-options[data-v-7aeeda40] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.options-label[data-v-7aeeda40] {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
.field-limit-toggle[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.field-limit-toggle span[data-v-7aeeda40] {
  font-size: 12px;
  color: #111827;
}
.question-required[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.empty-state[data-v-7aeeda40] {
  text-align: center;
  color: #9ca3af;
  padding: 40px 20px;
}
.empty-state p[data-v-7aeeda40] {
  margin: 0;
  font-size: 14px;
}

/* Form Actions */
.form-actions[data-v-7aeeda40] {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
.button-group[data-v-7aeeda40] {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.nav-button[data-v-7aeeda40] {
  width: 90px;
  height: 40px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit-button[data-v-7aeeda40] {
  background: var(--primary-red, #8b0000);
  border: none;
  color: #ffffff;
}
.submit-button[data-v-7aeeda40]:hover {
  background: #a52a2a;
}
.reset-button[data-v-7aeeda40] {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
}
.reset-button[data-v-7aeeda40]:hover {
  background: #f3f4f6;
}

/* Info Sections for Display Mode */
.info-section[data-v-7aeeda40] {
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0; /* 细分隔线 */
  padding-bottom: 30px;
}
.info-section[data-v-7aeeda40]:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.info-grid[data-v-7aeeda40] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.info-grid .col-2[data-v-7aeeda40] {
  grid-column: 1 / -1;
}
.info-item[data-v-7aeeda40] {
  display: flex;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333333;
  align-items: flex-start;
}
.info-label[data-v-7aeeda40] {
  width: 160px;
  font-weight: bold;
  flex-shrink: 0;
  color: #111827;
  font-size: 14px; /* 统一为14px */
}
.info-value[data-v-7aeeda40] {
  flex: 1;
  color: #6b7280;
  font-size: 14px; /* 统一为14px */
}

/* Image preview */
.review-image[data-v-7aeeda40] {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.review-img[data-v-7aeeda40] {
  max-width: 200px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.image-count[data-v-7aeeda40] {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  line-height: 1;
}
.dialog-image[data-v-7aeeda40] {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Group and extra info display */
.group-info[data-v-7aeeda40],
.extrainfo-info[data-v-7aeeda40] {
  margin-top: 16px;
}
.group-info h4[data-v-7aeeda40],
.extrainfo-info h4[data-v-7aeeda40] {
  font-size: 14px;
  color: #333333;
  margin: 16px 0 8px;
  font-weight: 600;
}
.group-item[data-v-7aeeda40],
.extrainfo-item[data-v-7aeeda40] {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  margin-bottom: 8px;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
}
.group-item span[data-v-7aeeda40]:first-child,
.extrainfo-item span[data-v-7aeeda40]:first-child {
  font-weight: bold;
  width: 20%;
}
.group-item span[data-v-7aeeda40]:last-child,
.extrainfo-item span[data-v-7aeeda40]:not(:first-child) {
  width: 20%;
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
.sticky-header[data-v-7aeeda40] {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 16px;
}
.event-info-section[data-v-7aeeda40] {
    width: 100%;
}
.event-meta .meta-line[data-v-7aeeda40] {
    font-size: 12px;
}
.header-actions[data-v-7aeeda40] {
    width: 100%;
    justify-content: space-between;
}
.content-container[data-v-7aeeda40] {
    padding: 0 16px;
}
.stats-overview[data-v-7aeeda40] {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 0;
}
.form-grid[data-v-7aeeda40],
  .info-grid[data-v-7aeeda40] {
    grid-template-columns: 1fr;
    gap: 16px;
}
.form-grid .col-2[data-v-7aeeda40],
  .info-grid .col-2[data-v-7aeeda40] {
    grid-column: 1;
}
.upload-container[data-v-7aeeda40] {
    width: 100%;
    max-width: none;
}
.extra-info-header[data-v-7aeeda40] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.extra-info-actions[data-v-7aeeda40] {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.question-header[data-v-7aeeda40] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.question-number[data-v-7aeeda40] {
    width: 100%;
    justify-content: flex-start;
}
.question-actions[data-v-7aeeda40] {
    width: 100%;
    justify-content: flex-end;
}
.button-group[data-v-7aeeda40] {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}
.nav-button[data-v-7aeeda40] {
    width: 100%;
}
.info-item[data-v-7aeeda40] {
    flex-direction: column;
}
.info-label[data-v-7aeeda40] {
    width: 100%;
    margin-bottom: 8px;
}
.group-item[data-v-7aeeda40],
  .extrainfo-item[data-v-7aeeda40] {
    flex-direction: column;
    align-items: flex-start;
}
.group-item span[data-v-7aeeda40],
  .extrainfo-item span[data-v-7aeeda40] {
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 4px;
}
.review-img[data-v-7aeeda40] {
    max-width: 150px;
    max-height: 150px;
}
}
@media (max-width: 480px) {
.event-title[data-v-7aeeda40] {
    font-size: 16px;
}
.event-meta .meta-line[data-v-7aeeda40] {
    font-size: 11px;
}
.stats-overview[data-v-7aeeda40] {
    grid-template-columns: 1fr;
}
.section-title[data-v-7aeeda40] {
    font-size: 16px;
}
.question-item[data-v-7aeeda40] {
    padding: 12px;
}
.review-img[data-v-7aeeda40] {
    max-width: 120px;
    max-height: 120px;
}
.image-count[data-v-7aeeda40] {
    font-size: 10px;
    padding: 2px 6px;
}
.dialog-image[data-v-7aeeda40] {
    height: 300px;
}
}

/* === Minimal option editor === */
.options-toolbar[data-v-7aeeda40] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 6px;
}
.options-toolbar .toolbar-actions[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.options-toolbar .hint[data-v-7aeeda40] {
  font-size: 12px;
  color: #6b7280;
}
.options-toolbar .divider[data-v-7aeeda40] {
  width: 1px;
  height: 14px;
  background: #e5e7eb;
  margin: 0 6px;
}
.option-row[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}
.option-row .actions[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 2px;
}
.icon-btn[data-v-7aeeda40] {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
}
.icon-btn.lg[data-v-7aeeda40] {
  width: 36px;
  height: 36px;
}
.option-text[data-v-7aeeda40] .el-input__inner {
  height: 36px;
}
.limit[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0 0;
}
.limit .limit-hint[data-v-7aeeda40] {
  font-size: 12px;
  color: #9ca3af;
}
.empty-options[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #9ca3af;
}
.option-limit[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.empty-state.small[data-v-7aeeda40] {
  padding: 8px 0;
  font-size: 12px;
  color: #9ca3af;
}

/* === Form Preview (readonly) === */
.form-preview[data-v-7aeeda40] {
  margin-top: 16px;
}
.preview-title[data-v-7aeeda40] {
  font-size: 14px;
  color: #333;
  margin: 16px 0 8px;
  font-weight: 600;
}
.preview-item[data-v-7aeeda40] {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 12px;
}
.preview-item-head[data-v-7aeeda40] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.q-index[data-v-7aeeda40] {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--primary-red, #8b0000);
  flex-shrink: 0;
}
.q-title[data-v-7aeeda40] {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.q-required[data-v-7aeeda40] {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
}
.q-type[data-v-7aeeda40] {
  margin-left: auto;
  font-size: 12px;
  color: #6b7280;
}
.choice-group[data-v-7aeeda40] {
  display: flex;
  flex-direction: column;
  gap: 4px; /* 设置列表项之间的微小间距 */
  border: 1px solid #e5e7eb; /* 为整个列表添加一个边框 */
  border-radius: 8px; /* 圆角与整体风格匹配 */
  padding: 8px; /* 内部留白 */
  background-color: #fcfcfc;
}

/* 添加这些全新的规则来实现列表样式 */
.choice-chip[data-v-7aeeda40] {
  display: flex; /* 使用 flex 布局对齐内部元素 */
  align-items: center;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.choice-chip[data-v-7aeeda40]:hover {
  background-color: #f0f0f0;
}

/* 之前被隐藏的 input 现在需要正常显示 */
.choice-chip[data-v-7aeeda40] .el-radio__input,
.choice-chip[data-v-7aeeda40] .el-checkbox__input {
  /* 确保 input 元素可见 */
  display: inline-flex;
}

/* 调整 Element Plus 默认 label 的样式 */
.choice-chip[data-v-7aeeda40] .el-radio__label,
.choice-chip[data-v-7aeeda40] .el-checkbox__label {
  display: flex;
  align-items: center;
  flex-grow: 1; /* 让 label 占据剩余空间 */
  padding-left: 8px; /* 在文字和 input 之间增加间距 */
  color: #374151;
}
.chip-text[data-v-7aeeda40] {
  font-size: 14px;
}
.chip-limit[data-v-7aeeda40] {
  margin-left: auto; /* 核心技巧：将限制人数推到最右边 */
  font-size: 13px;
  color: #9ca3af;
  padding-left: 16px; /* 避免与选项文字贴得太近 */
  font-weight: 400;
}
.empty-hint[data-v-7aeeda40] {
  color: #9ca3af;
  font-size: 12px;
  margin-top: 2px;
}
.w-full[data-v-7aeeda40] {
  width: 100%;
}
.composite-input[data-v-7aeeda40] {
  display: flex;
  flex-direction: column;
  gap: 8px; /* 在下拉框和输入框之间添加一些间距 */
  width: 100%;
}
.custom-input[data-v-7aeeda40] {
  width: 100%;
}



.registration-signin-page[data-v-6fa256e2] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-6fa256e2] {
  position: static;
  top: auto;
  z-index: auto;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.back-button-section[data-v-6fa256e2] {
  flex-shrink: 0;
}
.back-btn[data-v-6fa256e2] {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
}
.back-btn[data-v-6fa256e2]:hover {
  color: var(--primary-red, #8b0000);
  border-color: var(--primary-red, #8b0000);
  background: #fef2f2;
}
.event-info-section[data-v-6fa256e2] {
  flex: 1;
  min-width: 0;
}
.event-title[data-v-6fa256e2] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.event-meta[data-v-6fa256e2] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-line[data-v-6fa256e2] {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.header-actions[data-v-6fa256e2] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.header-actions .el-button[data-v-6fa256e2] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.danger-item[data-v-6fa256e2] {
  color: #ef4444;
}

/* Main Content */
.content-container[data-v-6fa256e2] {
  max-width: 1440px;
  margin: 24px auto;
  padding: 0 24px;
  transition: max-width 0.3s ease;
}
.content-container.full-width[data-v-6fa256e2] {
  max-width: none;
}

/* Width Toggle */
.width-toggle[data-v-6fa256e2] {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

/* Stats Overview */
.stats-overview[data-v-6fa256e2] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px 0;
}
.stat-card[data-v-6fa256e2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stat-label[data-v-6fa256e2] {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
.stat-value[data-v-6fa256e2] {
  font-size: 16px;
  color: #111827;
  font-weight: 600;
}

/* Tabs */
.main-tabs[data-v-6fa256e2] {
  background: #ffffff;
}
.main-tabs[data-v-6fa256e2] .el-tabs__header {
  margin: 0 0 24px 0;
  border-bottom: 1px solid #e5e7eb;
}
.main-tabs[data-v-6fa256e2] .el-tabs__nav-wrap {
  padding: 0;
}
.main-tabs[data-v-6fa256e2] .el-tabs__active-bar {
  background-color: var(--primary-red, #8b0000);
}
.main-tabs[data-v-6fa256e2] .el-tabs__item.is-active {
  color: var(--primary-red, #8b0000);
  font-weight: 600;
}
.tab-content[data-v-6fa256e2] {
  padding: 0;
}

/* Toolbar */
.toolbar[data-v-6fa256e2] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.search-filters[data-v-6fa256e2] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.toolbar-actions[data-v-6fa256e2] {
  display: flex;
  gap: 12px;
}

/* Table Wrapper */
.table-wrapper[data-v-6fa256e2] {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

/* Table */
.data-table[data-v-6fa256e2] {
  width: 100%;
  min-width: 960px;
  background: #ffffff;
  border-radius: 8px;
}
.data-table[data-v-6fa256e2] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
  height: 48px;
}
.data-table[data-v-6fa256e2] .el-table__cell {
  padding: 14px 12px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  height: 48px;
}
.data-table[data-v-6fa256e2] .el-table__row {
  transition: background-color 0.2s ease;
}
.data-table[data-v-6fa256e2] .el-table__row:hover {
  background: #f9fafb !important;
}
.data-table[data-v-6fa256e2] .el-table__body tr.el-table__row--striped {
  background: #fafafa;
}
.data-table[data-v-6fa256e2] .el-table__empty-block {
  padding: 40px 0;
}

/* Answer cell */
.answer-cell[data-v-6fa256e2] {
  display: flex;
  align-items: center;
  min-height: 24px;
}
.answer-text[data-v-6fa256e2] {
  word-break: break-word;
  white-space: normal;
  line-height: 1.5;
}
.empty-text[data-v-6fa256e2] {
  color: #9ca3af;
}

/* File actions */
.file-actions[data-v-6fa256e2] {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

/* Action buttons */
.action-buttons[data-v-6fa256e2] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Batch Actions */
.batch-actions[data-v-6fa256e2] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 20px;
}
.batch-actions span[data-v-6fa256e2] {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Checkin Section */
.checkin-section[data-v-6fa256e2] {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.search-checkin[data-v-6fa256e2] {
  display: flex;
  justify-content: center;
}
.qr-section[data-v-6fa256e2] {
  text-align: center;
}
.qr-section h4[data-v-6fa256e2] {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px 0;
}
.qr-container[data-v-6fa256e2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.qr-code[data-v-6fa256e2] {
  width: 250px;
  height: 250px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}
.qr-actions[data-v-6fa256e2] {
  display: flex;
  gap: 12px;
}
.signin-records h4[data-v-6fa256e2] {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px 0;
}

/* Export Section */
.export-section h4[data-v-6fa256e2] {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px 0;
}
.export-options[data-v-6fa256e2] {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pagination */
.pagination[data-v-6fa256e2] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.pagination[data-v-6fa256e2] .el-pager li.active {
  background-color: var(--primary-red, #8b0000);
  color: #ffffff;
}
.pagination[data-v-6fa256e2] .el-pager li:hover,
.pagination[data-v-6fa256e2] .el-pagination button:hover:not(:disabled) {
  color: var(--primary-red, #8b0000);
}

/* Dialog Styles */
.registration-signin-page[data-v-6fa256e2] .el-dialog__header {
  padding: 16px 24px;
  margin-right: 0;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
}
.registration-signin-page[data-v-6fa256e2] .el-dialog__body {
  padding: 24px;
}
.registration-signin-page[data-v-6fa256e2] .el-dialog__footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
}
.registration-signin-page[data-v-6fa256e2] .el-form-item {
  margin-bottom: 22px;
}

/* Add User Dialog - Search Results Table */
.registration-signin-page[data-v-6fa256e2] .el-dialog .el-table {
  margin-top: 12px;
}

/* Preview Dialog */
.preview-container[data-v-6fa256e2] {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9fafb;
  min-height: 400px;
  border-radius: 8px;
}
.preview-image[data-v-6fa256e2] {
  max-width: 100%;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}

/* Empty state styling */
.registration-signin-page[data-v-6fa256e2] .el-empty {
  padding: 40px 20px;
}
.registration-signin-page[data-v-6fa256e2] .el-empty__description {
  color: #6b7280;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
.sticky-header[data-v-6fa256e2] {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.header-actions[data-v-6fa256e2] {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.stats-overview[data-v-6fa256e2] {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.content-container[data-v-6fa256e2] {
    max-width: none;
}
}
@media (max-width: 768px) {
.content-container[data-v-6fa256e2] {
    padding: 0 16px;
    margin: 16px auto;
}
.toolbar[data-v-6fa256e2] {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.search-filters[data-v-6fa256e2] {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
}
.search-filters .el-input[data-v-6fa256e2],
  .search-filters .el-select[data-v-6fa256e2] {
    width: 100% !important;
    margin-left: 0 !important;
}
.toolbar-actions[data-v-6fa256e2] {
    width: 100%;
}
.toolbar-actions .el-button[data-v-6fa256e2] {
    flex-grow: 1;
}
.stats-overview[data-v-6fa256e2] {
    grid-template-columns: 1fr 1fr;
}
.batch-actions[data-v-6fa256e2] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

  /* Table horizontal scroll on mobile */
.table-wrapper[data-v-6fa256e2] {
    margin: 0 -16px 20px;
    padding: 0 16px;
}
.data-table[data-v-6fa256e2] {
    min-width: 1100px;
}

  /* Checkin section mobile adjustments */
.search-checkin[data-v-6fa256e2] {
    width: 100%;
}
.search-checkin .el-input[data-v-6fa256e2] {
    width: 100% !important;
}
.qr-code[data-v-6fa256e2] {
    width: 200px;
    height: 200px;
}
}
@media (max-width: 480px) {
.sticky-header[data-v-6fa256e2] {
    padding: 16px;
}
.event-title[data-v-6fa256e2] {
    font-size: 18px;
}
.meta-line[data-v-6fa256e2] {
    font-size: 13px;
}
.stats-overview[data-v-6fa256e2] {
    grid-template-columns: 1fr;
    gap: 16px;
}
.width-toggle[data-v-6fa256e2] {
    margin-bottom: 12px;
}
.action-buttons[data-v-6fa256e2] {
    flex-direction: column;
    width: 100%;
}
.action-buttons .el-button[data-v-6fa256e2] {
    width: 100%;
}
}

/* Print styles */
@media print {
.sticky-header[data-v-6fa256e2],
  .width-toggle[data-v-6fa256e2],
  .toolbar[data-v-6fa256e2],
  .batch-actions[data-v-6fa256e2],
  .pagination[data-v-6fa256e2],
  .main-tabs[data-v-6fa256e2] .el-tabs__header {
    display: none;
}
.table-wrapper[data-v-6fa256e2] {
    overflow: visible;
}
.data-table[data-v-6fa256e2] {
    min-width: auto;
}
}

/* —— 统一行内动作区 —— */
.row-actions[data-v-6fa256e2] {
  display: flex;
  align-items: center;     /* 垂直居中 */
  justify-content: center; /* 居中对齐（列 align=center 也已设置） */
  gap: 1px;               /* 按钮间距 */
  flex-wrap: nowrap;       /* 强制同一行，不换行 */
  min-height: 28px;
}

/* —— 胶囊按钮统一规格（基于 Element Plus 的 el-button）—— */
[data-v-6fa256e2] .el-button.isu-btn {
  height: 28px;             /* 统一高度 */
  padding: 0 14px;          /* 内边距统一 */
  border-radius: 30px;    /* 胶囊圆角 */
  font-weight: 600;
  letter-spacing: 0.2px;
  border-width: 1px;
  transition: all .18s ease;
}

/* 主色（用你项目已有的 --primary-red），白底红字 → 悬浮实心 */
[data-v-6fa256e2] .el-button.isu-btn--ghost {
  color: var(--primary-red, #8b0000);
  background: #fff;
  border-color: var(--primary-red, #8b0000);
}
[data-v-6fa256e2] .el-button.isu-btn--ghost:hover {
  color: #fff;
  background: var(--primary-red, #8b0000);
  border-color: var(--primary-red, #8b0000);
}

/* 主行动：实心主色 */
[data-v-6fa256e2] .el-button.isu-btn--primary {
  color: #fff;
  background: var(--primary-red, #8b0000);
  border-color: var(--primary-red, #8b0000);
}
[data-v-6fa256e2] .el-button.isu-btn--primary:hover {
  filter: brightness(0.95);
}

/* 次行动（例如“撤销签到”）：柔和琥珀色 */
[data-v-6fa256e2] .el-button.isu-btn--warning {
  color: #8a4b00;
  background: #fff7ed;
  border-color: #fdba74;
}
[data-v-6fa256e2] .el-button.isu-btn--warning:hover {
  color: #fff;
  background: #f59e0b;
  border-color: #f59e0b;
}

/* 危险的幽灵按钮（删除/移除） */
[data-v-6fa256e2] .el-button.isu-btn--danger-ghost{
  color: #b91c1c;
  background: #fff;
  border-color: #fca5a5;
}
[data-v-6fa256e2] .el-button.isu-btn--danger-ghost:hover {
  color: #fff;
  background: #ef4444;
  border-color: #ef4444;
}

/* 让操作列在窄屏也不挤 */
@media (max-width: 768px) {
.row-actions[data-v-6fa256e2] {
    gap: 8px;
}
[data-v-6fa256e2] .el-button.isu-btn {
    padding: 0 12px;
    height: 30px;
}
}

/* 自动补全候选项的排版：学号靠左，姓名次要色 */
.autoitem[data-v-6fa256e2] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.autoitem-id[data-v-6fa256e2] {
  font-weight: 600;
  letter-spacing: .2px;
}
.autoitem-name[data-v-6fa256e2] {
  color: #6b7280;
}




.review-management-page[data-v-ec91d630] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-ec91d630] {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
}
.back-button-section[data-v-ec91d630] {
  flex-shrink: 0;
}
.back-btn[data-v-ec91d630] {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
}
.back-btn[data-v-ec91d630]:hover {
  color: var(--primary-red, #8b0000);
  border-color: var(--primary-red, #8b0000);
  background: #fef2f2;
}
.event-info-section[data-v-ec91d630] {
  min-width: 0;
}
.page-title[data-v-ec91d630] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.event-meta[data-v-ec91d630] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-line[data-v-ec91d630] {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.header-actions[data-v-ec91d630] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.header-actions .el-button[data-v-ec91d630] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Main Content */
.content-container[data-v-ec91d630] {
  max-width: 1440px;
  margin: 24px auto;
  padding: 24px;
}

/* Table Toolbar */
.table-toolbar[data-v-ec91d630] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 12px;
}
.toolbar-left[data-v-ec91d630] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.toolbar-right[data-v-ec91d630] {
  display: flex;
  align-items: center;
}

/* Table Wrapper */
.table-wrapper[data-v-ec91d630] {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

/* Table */
.data-table[data-v-ec91d630] {
  width: 100%;
  min-width: 1100px;
  background: #ffffff;
}
.data-table[data-v-ec91d630] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
  height: 48px;
}
.data-table[data-v-ec91d630] .el-table__cell {
  padding: 14px 12px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  height: auto;
  min-height: 48px;
}
.data-table[data-v-ec91d630] .el-table__row {
  transition: background-color 0.2s ease;
}
.data-table[data-v-ec91d630] .el-table__body tr.el-table__row--striped {
  background: #fafafa;
}

/* Text cells */
.ellipsis-cell[data-v-ec91d630] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
  line-height: 1.5;
}
.wrap-cell[data-v-ec91d630] {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
}
.empty-text[data-v-ec91d630] {
  color: #9ca3af;
  font-size: 14px;
}

/* Images cell */
.images-cell[data-v-ec91d630] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.thumb[data-v-ec91d630] {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
}
.extra-tag[data-v-ec91d630] {
  font-size: 12px;
  font-weight: 600;
}

/* Action button */
[data-v-ec91d630] .el-button.isu-btn {
  height: 28px;
  padding: 0 14px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-width: 1px;
  transition: all 0.18s ease;
}
[data-v-ec91d630] .el-button.isu-btn--danger-ghost {
  color: #b91c1c;
  background: #fff;
  border-color: #fca5a5;
}

/* Bottom Pagination */
.bottom-pagination[data-v-ec91d630] {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 992px) {
.sticky-header[data-v-ec91d630] {
    grid-template-columns: 48px 1fr;
    gap: 12px;
}
.header-actions[data-v-ec91d630] {
    grid-column: 1 / -1;
    width: 100%;
}
}
@media (max-width: 768px) {
.content-container[data-v-ec91d630] {
    padding: 16px;
    margin: 16px auto;
}
.sticky-header[data-v-ec91d630] {
    padding: 16px;
}
.page-title[data-v-ec91d630] {
    font-size: 18px;
}
.meta-line[data-v-ec91d630] {
    font-size: 13px;
}
.header-actions[data-v-ec91d630] {
    flex-direction: column;
    align-items: stretch;
}
.header-actions .el-input[data-v-ec91d630],
  .header-actions .el-select[data-v-ec91d630],
  .header-actions .el-date-picker[data-v-ec91d630],
  .header-actions .el-button[data-v-ec91d630] {
    width: 100% !important;
}
.table-toolbar[data-v-ec91d630] {
    flex-direction: column;
    align-items: flex-start;
}
.toolbar-left[data-v-ec91d630],
  .toolbar-right[data-v-ec91d630] {
    width: 100%;
}
.toolbar-right[data-v-ec91d630] .el-pagination {
    justify-content: center;
}
.table-wrapper[data-v-ec91d630] {
    margin: 0 -16px 20px;
    padding: 0 16px;
}
.bottom-pagination[data-v-ec91d630] {
    justify-content: center;
}
}
@media (max-width: 480px) {
.toolbar-left[data-v-ec91d630] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.data-table[data-v-ec91d630] {
    min-width: 900px;
}
}

/* Print styles */
@media print {
.sticky-header[data-v-ec91d630],
  .table-toolbar[data-v-ec91d630],
  .bottom-pagination[data-v-ec91d630] {
    display: none;
}
.table-wrapper[data-v-ec91d630] {
    overflow: visible;
}
.data-table[data-v-ec91d630] {
    min-width: auto;
}
}


.create-club-page[data-v-76dfe94e] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-76dfe94e] {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.back-button-section[data-v-76dfe94e] {
  flex-shrink: 0;
}
.back-btn[data-v-76dfe94e] {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
}
.back-btn[data-v-76dfe94e]:hover {
  color: #8b0000;
  border-color: #8b0000;
  background: #fef2f2;
}
.header-info[data-v-76dfe94e] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-76dfe94e] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.page-subtitle[data-v-76dfe94e] {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.header-actions[data-v-76dfe94e] {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.action-btn[data-v-76dfe94e] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
}
.header-actions .el-button--primary[data-v-76dfe94e] {
  background: #8b0000;
  border: none;
  color: #ffffff;
}
.header-actions .el-button--primary[data-v-76dfe94e]:hover {
  background: #a52a2a;
}

/* Main Content */
.content-container[data-v-76dfe94e] {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 24px;
}
.club-form[data-v-76dfe94e] {
  background: #ffffff;
}

/* Form Section */
.form-section[data-v-76dfe94e] {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}
.form-section[data-v-76dfe94e]:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.section-title[data-v-76dfe94e] {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #8b0000;
}

/* Form Grid */
.form-grid[data-v-76dfe94e] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.col-span-2[data-v-76dfe94e] {
  grid-column: 1 / -1;
}

/* Form Item */
.club-form[data-v-76dfe94e] .el-form-item {
  margin-bottom: 0;
}
.club-form[data-v-76dfe94e] .el-form-item__label {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
}
.club-form[data-v-76dfe94e] .el-form-item__label::before {
  color: #ef4444;
  margin-right: 4px;
}

/* 移除内层边框，只保留外层 */
.club-form[data-v-76dfe94e] .el-input__wrapper {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  box-shadow: none;
  padding: 0 14px;
  transition: all 0.2s ease;
}
.club-form[data-v-76dfe94e] .el-input__wrapper:hover {
  border-color: #d1d5db;
}
.club-form[data-v-76dfe94e] .el-input__wrapper.is-focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}
.club-form[data-v-76dfe94e] .el-input__inner {
  height: 40px;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #111827;
}
.club-form[data-v-76dfe94e] .el-textarea__inner {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  background: #ffffff;
  color: #111827;
  padding: 10px 14px;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.club-form[data-v-76dfe94e] .el-textarea__inner:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
  outline: none;
}

/* Upload Wrapper */
.upload-wrapper[data-v-76dfe94e] {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cover-uploader[data-v-76dfe94e] {
  flex-shrink: 0;
}
.cover-uploader[data-v-76dfe94e] .el-upload {
  width: 200px;
  height: 120px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-uploader[data-v-76dfe94e] .el-upload:hover {
  border-color: #8b0000;
}
.cover-preview[data-v-76dfe94e] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.upload-placeholder[data-v-76dfe94e] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #6b7280;
}
.upload-icon[data-v-76dfe94e] {
  font-size: 32px;
}
.upload-text[data-v-76dfe94e] {
  font-size: 14px;
  font-weight: 500;
}
.upload-tips[data-v-76dfe94e] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.upload-tips p[data-v-76dfe94e] {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.remove-btn[data-v-76dfe94e] {
  margin-top: 8px;
  color: #8b0000;
  font-size: 12px;
  padding: 0;
  height: auto;
}
.remove-btn[data-v-76dfe94e]:hover {
  color: #a52a2a;
}

/* Responsive */
@media (max-width: 768px) {
.sticky-header[data-v-76dfe94e] {
    flex-wrap: wrap;
    gap: 16px;
}
.header-info[data-v-76dfe94e] {
    order: -1;
    width: 100%;
}
.header-actions[data-v-76dfe94e] {
    width: 100%;
    justify-content: flex-start;
}
.content-container[data-v-76dfe94e] {
    padding: 0 16px;
    margin: 16px auto;
}
.form-grid[data-v-76dfe94e] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.col-span-2[data-v-76dfe94e] {
    grid-column: 1;
}
.upload-wrapper[data-v-76dfe94e] {
    flex-direction: column;
    gap: 12px;
}
.cover-uploader[data-v-76dfe94e] .el-upload {
    width: 100%;
    max-width: 300px;
}
}
@media (max-width: 480px) {
.page-title[data-v-76dfe94e] {
    font-size: 18px;
}
.page-subtitle[data-v-76dfe94e] {
    font-size: 13px;
}
.action-btn[data-v-76dfe94e] {
    flex: 1;
    min-width: 0;
}
.section-title[data-v-76dfe94e] {
    font-size: 16px;
}
}


.edit-club-page[data-v-2d130b32] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-2d130b32] {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.back-button-section[data-v-2d130b32] {
  flex-shrink: 0;
}
.back-btn[data-v-2d130b32] {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
}
.back-btn[data-v-2d130b32]:hover {
  color: #8b0000;
  border-color: #8b0000;
  background: #fef2f2;
}
.header-info[data-v-2d130b32] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-2d130b32] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.page-subtitle[data-v-2d130b32] {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.header-actions[data-v-2d130b32] {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.action-btn[data-v-2d130b32] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
}
.header-actions .el-button--primary[data-v-2d130b32] {
  background: #8b0000;
  border: none;
  color: #ffffff;
}
.header-actions .el-button--primary[data-v-2d130b32]:hover {
  background: #a52a2a;
}

/* Main Content */
.content-container[data-v-2d130b32] {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 24px;
}
.club-form[data-v-2d130b32] {
  background: #ffffff;
}

/* Form Section */
.form-section[data-v-2d130b32] {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}
.form-section[data-v-2d130b32]:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.section-title[data-v-2d130b32] {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #8b0000;
}

/* Form Grid */
.form-grid[data-v-2d130b32] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.col-span-2[data-v-2d130b32] {
  grid-column: 1 / -1;
}

/* Form Item */
.club-form[data-v-2d130b32] .el-form-item {
  margin-bottom: 0;
}
.club-form[data-v-2d130b32] .el-form-item__label {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
}
.club-form[data-v-2d130b32] .el-form-item__label::before {
  color: #ef4444;
  margin-right: 4px;
}

/* 移除内层边框，只保留外层 */
.club-form[data-v-2d130b32] .el-input__wrapper {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  box-shadow: none;
  padding: 0 14px;
  transition: all 0.2s ease;
}
.club-form[data-v-2d130b32] .el-input__wrapper:hover {
  border-color: #d1d5db;
}
.club-form[data-v-2d130b32] .el-input__wrapper.is-focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}
.club-form[data-v-2d130b32] .el-input__inner {
  height: 40px;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #111827;
}
.club-form[data-v-2d130b32] .el-textarea__inner {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  background: #ffffff;
  color: #111827;
  padding: 10px 14px;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.club-form[data-v-2d130b32] .el-textarea__inner:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
  outline: none;
}

/* Upload Wrapper */
.upload-wrapper[data-v-2d130b32] {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cover-uploader[data-v-2d130b32] {
  flex-shrink: 0;
}
.cover-uploader[data-v-2d130b32] .el-upload {
  width: 200px;
  height: 120px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-uploader[data-v-2d130b32] .el-upload:hover {
  border-color: #8b0000;
}
.cover-preview[data-v-2d130b32] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.upload-placeholder[data-v-2d130b32] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #6b7280;
}
.upload-icon[data-v-2d130b32] {
  font-size: 32px;
}
.upload-text[data-v-2d130b32] {
  font-size: 14px;
  font-weight: 500;
}
.upload-tips[data-v-2d130b32] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.upload-tips p[data-v-2d130b32] {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.remove-btn[data-v-2d130b32] {
  margin-top: 8px;
  color: #8b0000;
  font-size: 12px;
  padding: 0;
  height: auto;
}
.remove-btn[data-v-2d130b32]:hover {
  color: #a52a2a;
}

/* Responsive */
@media (max-width: 768px) {
.sticky-header[data-v-2d130b32] {
    flex-wrap: wrap;
    gap: 16px;
}
.header-info[data-v-2d130b32] {
    order: -1;
    width: 100%;
}
.header-actions[data-v-2d130b32] {
    width: 100%;
    justify-content: flex-start;
}
.content-container[data-v-2d130b32] {
    padding: 0 16px;
    margin: 16px auto;
}
.form-grid[data-v-2d130b32] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.col-span-2[data-v-2d130b32] {
    grid-column: 1;
}
.upload-wrapper[data-v-2d130b32] {
    flex-direction: column;
    gap: 12px;
}
.cover-uploader[data-v-2d130b32] .el-upload {
    width: 100%;
    max-width: 300px;
}
}
@media (max-width: 480px) {
.page-title[data-v-2d130b32] {
    font-size: 18px;
}
.page-subtitle[data-v-2d130b32] {
    font-size: 13px;
}
.action-btn[data-v-2d130b32] {
    flex: 1;
    min-width: 0;
}
.section-title[data-v-2d130b32] {
    font-size: 16px;
}
}


.club-activities-page[data-v-ed76d37e] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-ed76d37e] {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.back-button-section[data-v-ed76d37e] {
  flex-shrink: 0;
}
.back-btn[data-v-ed76d37e] {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
}
.back-btn[data-v-ed76d37e]:hover {
  color: #8b0000;
  border-color: #8b0000;
  background: #fef2f2;
}
.header-info-section[data-v-ed76d37e] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-ed76d37e] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.page-meta[data-v-ed76d37e] {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
}
.meta-item.selected[data-v-ed76d37e] {
  color: #8b0000;
  font-weight: 500;
}
.header-actions[data-v-ed76d37e] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.action-btn[data-v-ed76d37e] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
}
.action-btn[data-v-ed76d37e]:hover {
  border-color: #8b0000;
  color: #8b0000;
}
.primary-btn[data-v-ed76d37e] {
  background: #8b0000;
  border-color: #8b0000;
  color: #ffffff;
}
.primary-btn[data-v-ed76d37e]:hover {
  background: #6b0000;
  border-color: #6b0000;
}

/* Content Container */
.content-container[data-v-ed76d37e] {
  max-width: 1440px;
  margin: 24px auto;
  padding: 0 24px;
}

/* Tabs */
.main-tabs[data-v-ed76d37e] {
  background: #ffffff;
}
.main-tabs[data-v-ed76d37e] .el-tabs__header {
  margin: 0 0 24px 0;
  border-bottom: 1px solid #e5e7eb;
}
.main-tabs[data-v-ed76d37e] .el-tabs__active-bar {
  background-color: #8b0000;
}
.main-tabs[data-v-ed76d37e] .el-tabs__item.is-active {
  color: #8b0000;
  font-weight: 600;
}
.tab-content[data-v-ed76d37e] {
  padding: 0;
}

/* Toolbar */
.table-toolbar[data-v-ed76d37e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}
.toolbar-left[data-v-ed76d37e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toolbar-right[data-v-ed76d37e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.selection-info[data-v-ed76d37e] {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}
.danger-btn[data-v-ed76d37e] {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}
.danger-btn[data-v-ed76d37e]:hover {
  background: #dc2626;
  border-color: #dc2626;
}
.mini-pagination[data-v-ed76d37e] .el-pager li.active {
  background-color: #8b0000;
}

/* Table Wrapper */
.table-wrapper[data-v-ed76d37e] {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

/* Table */
.data-table[data-v-ed76d37e] {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
}
.data-table[data-v-ed76d37e] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
}
.data-table[data-v-ed76d37e] .el-table__row {
  transition: none;
}
.data-table[data-v-ed76d37e] .el-table__row:hover {
  background: #f9fafb !important;
}
.activity-name-cell[data-v-ed76d37e] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.name-content[data-v-ed76d37e] {
  flex: 1;
  min-width: 0;
}
.title-text[data-v-ed76d37e] {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
  margin-bottom: 4px;
}
.status-tag-inline[data-v-ed76d37e] {
  font-size: 12px;
}
.preview-btn[data-v-ed76d37e] {
  color: #6b7280;
  padding: 4px;
  font-size: 16px;
}
.preview-btn[data-v-ed76d37e]:hover {
  color: #8b0000;
}
.ellipsis-cell[data-v-ed76d37e] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}
.wrap-cell[data-v-ed76d37e] {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
mark.hl[data-v-ed76d37e] {
  background: #ffe58f;
  padding: 0 2px;
  border-radius: 2px;
}
.action-buttons[data-v-ed76d37e] {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.action-btn-table[data-v-ed76d37e] {
  height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
}

/* Calendar View */
.calendar-view[data-v-ed76d37e] {
  margin-top: 20px;
}
.calendar-day[data-v-ed76d37e] {
  min-height: 80px;
  padding: 4px;
}
.calendar-event[data-v-ed76d37e] {
  margin-top: 4px;
  cursor: pointer;
}
.calendar-event[data-v-ed76d37e] .el-tag {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Role Updated Animation */
.role-updated[data-v-ed76d37e] {
  animation: roleUpdatePulse-ed76d37e 2s ease;
}
@keyframes roleUpdatePulse-ed76d37e {
0%, 100% { opacity: 1;
}
50% { opacity: 0.6; transform: scale(1.05);
}
}

/* Pagination */
.main-pagination[data-v-ed76d37e] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.main-pagination[data-v-ed76d37e] .el-pager li.active {
  background-color: #8b0000;
  color: #ffffff;
}

/* Dialog */
.confirm-dialog[data-v-ed76d37e] .el-dialog__header {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.dialog-warning[data-v-ed76d37e] {
  font-size: 14px;
  color: #374151;
  margin-bottom: 16px;
}
.delete-list[data-v-ed76d37e] {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}
.delete-list li[data-v-ed76d37e] {
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}
.delete-list li.more-items[data-v-ed76d37e] {
  color: #6b7280;
  font-style: italic;
}

/* Drawer */
.preview-content[data-v-ed76d37e] {
  padding: 0;
}
.preview-cover[data-v-ed76d37e] {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.preview-section[data-v-ed76d37e] {
  margin-bottom: 24px;
}
.preview-section h3[data-v-ed76d37e] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.preview-section label[data-v-ed76d37e] {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.preview-section p[data-v-ed76d37e] {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}
.preview-section p.description[data-v-ed76d37e] {
  white-space: pre-wrap;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 992px) {
.sticky-header[data-v-ed76d37e] {
    flex-wrap: wrap;
}
.header-actions[data-v-ed76d37e] {
    width: 100%;
    margin-top: 12px;
}
}
@media (max-width: 768px) {
.content-container[data-v-ed76d37e] {
    padding: 0 16px;
}
.table-toolbar[data-v-ed76d37e] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.toolbar-left[data-v-ed76d37e],
  .toolbar-right[data-v-ed76d37e] {
    width: 100%;
    flex-wrap: wrap;
}
}


.create-activity-page[data-v-7de66681] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-7de66681] {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.back-button-section[data-v-7de66681] {
  flex-shrink: 0;
}
.back-btn[data-v-7de66681] {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
}
.back-btn[data-v-7de66681]:hover {
  color: #8b0000;
  border-color: #8b0000;
  background: #fef2f2;
}
.header-info[data-v-7de66681] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-7de66681] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.page-subtitle[data-v-7de66681] {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.header-actions[data-v-7de66681] {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.action-btn[data-v-7de66681] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
}
.header-actions .el-button--primary[data-v-7de66681] {
  background: #8b0000;
  border: none;
  color: #ffffff;
}
.header-actions .el-button--primary[data-v-7de66681]:hover {
  background: #a52a2a;
}

/* Main Content */
.content-container[data-v-7de66681] {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 24px;
}
.activity-form[data-v-7de66681] {
  background: #ffffff;
}

/* Form Section */
.form-section[data-v-7de66681] {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}
.form-section[data-v-7de66681]:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.section-title[data-v-7de66681] {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #8b0000;
}

/* Form Grid */
.form-grid[data-v-7de66681] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.col-span-2[data-v-7de66681] {
  grid-column: 1 / -1;
}

/* Form Item */
.activity-form[data-v-7de66681] .el-form-item {
  margin-bottom: 0;
}
.activity-form[data-v-7de66681] .el-form-item__label {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
}
.activity-form[data-v-7de66681] .el-form-item__label::before {
  color: #ef4444;
  margin-right: 4px;
}

/* Input Styles */
.activity-form[data-v-7de66681] .el-input__wrapper {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  box-shadow: none;
  padding: 0 14px;
  transition: all 0.2s ease;
}
.activity-form[data-v-7de66681] .el-input__wrapper:hover {
  border-color: #d1d5db;
}
.activity-form[data-v-7de66681] .el-input__wrapper.is-focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}
.activity-form[data-v-7de66681] .el-input__inner {
  height: 40px;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #111827;
}
.activity-form[data-v-7de66681] .el-textarea__inner {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  background: #ffffff;
  color: #111827;
  padding: 10px 14px;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.activity-form[data-v-7de66681] .el-textarea__inner:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
  outline: none;
}

/* Date Picker Styles */
.activity-form[data-v-7de66681] .el-date-editor {
  width: 100%;
}
.activity-form[data-v-7de66681] .el-date-editor .el-input__wrapper {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
.sticky-header[data-v-7de66681] {
    flex-wrap: wrap;
    gap: 16px;
}
.header-info[data-v-7de66681] {
    order: -1;
    width: 100%;
}
.header-actions[data-v-7de66681] {
    width: 100%;
    justify-content: flex-start;
}
.content-container[data-v-7de66681] {
    padding: 0 16px;
    margin: 16px auto;
}
.form-grid[data-v-7de66681] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.col-span-2[data-v-7de66681] {
    grid-column: 1;
}
}
@media (max-width: 480px) {
.page-title[data-v-7de66681] {
    font-size: 18px;
}
.page-subtitle[data-v-7de66681] {
    font-size: 13px;
}
.action-btn[data-v-7de66681] {
    flex: 1;
    min-width: 0;
}
.section-title[data-v-7de66681] {
    font-size: 16px;
}
}


.edit-activity-page[data-v-0dc05d0d] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-0dc05d0d] {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.back-button-section[data-v-0dc05d0d] {
  flex-shrink: 0;
}
.back-btn[data-v-0dc05d0d] {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
}
.back-btn[data-v-0dc05d0d]:hover {
  color: #8b0000;
  border-color: #8b0000;
  background: #fef2f2;
}
.header-info[data-v-0dc05d0d] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-0dc05d0d] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.page-subtitle[data-v-0dc05d0d] {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.header-actions[data-v-0dc05d0d] {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.action-btn[data-v-0dc05d0d] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
}
.header-actions .el-button--primary[data-v-0dc05d0d] {
  background: #8b0000;
  border: none;
  color: #ffffff;
}
.header-actions .el-button--primary[data-v-0dc05d0d]:hover {
  background: #a52a2a;
}

/* Main Content */
.content-container[data-v-0dc05d0d] {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 24px;
}
.activity-form[data-v-0dc05d0d] {
  background: #ffffff;
}

/* Form Section */
.form-section[data-v-0dc05d0d] {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}
.form-section[data-v-0dc05d0d]:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.section-title[data-v-0dc05d0d] {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #8b0000;
}

/* Form Grid */
.form-grid[data-v-0dc05d0d] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.col-span-2[data-v-0dc05d0d] {
  grid-column: 1 / -1;
}

/* Form Item */
.activity-form[data-v-0dc05d0d] .el-form-item {
  margin-bottom: 0;
}
.activity-form[data-v-0dc05d0d] .el-form-item__label {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
}
.activity-form[data-v-0dc05d0d] .el-form-item__label::before {
  color: #ef4444;
  margin-right: 4px;
}

/* Input Styles */
.activity-form[data-v-0dc05d0d] .el-input__wrapper {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  box-shadow: none;
  padding: 0 14px;
  transition: all 0.2s ease;
}
.activity-form[data-v-0dc05d0d] .el-input__wrapper:hover {
  border-color: #d1d5db;
}
.activity-form[data-v-0dc05d0d] .el-input__wrapper.is-focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}
.activity-form[data-v-0dc05d0d] .el-input__inner {
  height: 40px;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #111827;
}
.activity-form[data-v-0dc05d0d] .el-textarea__inner {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  background: #ffffff;
  color: #111827;
  padding: 10px 14px;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.activity-form[data-v-0dc05d0d] .el-textarea__inner:focus {
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
  outline: none;
}

/* Date Picker Styles */
.activity-form[data-v-0dc05d0d] .el-date-editor {
  width: 100%;
}
.activity-form[data-v-0dc05d0d] .el-date-editor .el-input__wrapper {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
.sticky-header[data-v-0dc05d0d] {
    flex-wrap: wrap;
    gap: 16px;
}
.header-info[data-v-0dc05d0d] {
    order: -1;
    width: 100%;
}
.header-actions[data-v-0dc05d0d] {
    width: 100%;
    justify-content: flex-start;
}
.content-container[data-v-0dc05d0d] {
    padding: 0 16px;
    margin: 16px auto;
}
.form-grid[data-v-0dc05d0d] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.col-span-2[data-v-0dc05d0d] {
    grid-column: 1;
}
}
@media (max-width: 480px) {
.page-title[data-v-0dc05d0d] {
    font-size: 18px;
}
.page-subtitle[data-v-0dc05d0d] {
    font-size: 13px;
}
.action-btn[data-v-0dc05d0d] {
    flex: 1;
    min-width: 0;
}
.section-title[data-v-0dc05d0d] {
    font-size: 16px;
}
}


.club-leader-management[data-v-aa6116b8] {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Sticky Header */
.sticky-header[data-v-aa6116b8] {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-info-section[data-v-aa6116b8] {
  flex: 1;
  min-width: 0;
}
.page-title[data-v-aa6116b8] {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.page-meta[data-v-aa6116b8] {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
}
.header-actions[data-v-aa6116b8] {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.action-btn[data-v-aa6116b8] {
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}
.action-btn[data-v-aa6116b8]:hover {
  border-color: #8b0000;
  color: #ce5555;
}
.primary-btn[data-v-aa6116b8] {
  background: #8b0000;
  border-color: #8b0000;
  color: #ffffff;
}
.primary-btn[data-v-aa6116b8]:hover {
  background: #6b0000;
  border-color: #6b0000;
}

/* Main Content */
.content-container[data-v-aa6116b8] {
  max-width: 1440px;
  margin: 24px auto;
  padding: 0 24px;
}

/* Toolbar */
.toolbar[data-v-aa6116b8] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}
.search-filters[data-v-aa6116b8] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toolbar-actions[data-v-aa6116b8] {
  display: flex;
  gap: 12px;
}

/* Table Wrapper */
.table-wrapper[data-v-aa6116b8] {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

/* Table */
.data-table[data-v-aa6116b8] {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
}
.data-table[data-v-aa6116b8] .el-table__header th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
}
.data-table[data-v-aa6116b8] .el-table__row {
  transition: none;
}
.data-table[data-v-aa6116b8] .el-table__row:hover {
  background: #f9fafb !important;
}
mark.hl[data-v-aa6116b8] {
  background: #ffe58f;
  padding: 0 2px;
  border-radius: 2px;
}
.password-cell[data-v-aa6116b8] {
  display: flex;
  align-items: center;
}
.password-mask[data-v-aa6116b8] {
  color: #9ca3af;
  font-size: 18px;
  letter-spacing: 2px;
}
.password-toggle-icon[data-v-aa6116b8] {
  cursor: pointer;
  color: #6b7280;
  font-size: 16px;
  transition: color 0.2s;
}
.password-toggle-icon[data-v-aa6116b8]:hover {
  color: #8b0000;
}
.action-buttons[data-v-aa6116b8] {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.action-btn-table[data-v-aa6116b8] {
  height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Pagination */
.pagination[data-v-aa6116b8] {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}
.pagination[data-v-aa6116b8] .el-pager li.active {
  background-color: #8b0000;
  color: #ffffff;
}

/* Dialog */
.club-leader-management[data-v-aa6116b8] .el-dialog__header {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.club-leader-management[data-v-aa6116b8] .el-dialog__body {
  padding: 24px;
}
.club-leader-management[data-v-aa6116b8] .el-dialog__footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
}
.form-tip[data-v-aa6116b8] {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
.dialog-content[data-v-aa6116b8] {
  padding: 8px 0;
}
.alert-content p[data-v-aa6116b8] {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 500;
}
.delete-info[data-v-aa6116b8] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  padding: 8px 0;
}
.delete-info div[data-v-aa6116b8] {
  display: flex;
  align-items: center;
}
.delete-info strong[data-v-aa6116b8] {
  min-width: 90px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
.sticky-header[data-v-aa6116b8] {
    flex-wrap: wrap;
}
.header-actions[data-v-aa6116b8] {
    width: 100%;
}
}
@media (max-width: 768px) {
.content-container[data-v-aa6116b8] {
    padding: 0 16px;
}
.toolbar[data-v-aa6116b8] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.search-filters[data-v-aa6116b8] {
    width: 100%;
    flex-wrap: wrap;
}
.search-filters .el-input[data-v-aa6116b8],
  .search-filters .el-select[data-v-aa6116b8] {
    flex: 1;
    min-width: 200px;
}
.toolbar-actions[data-v-aa6116b8] {
    width: 100%;
}
}


.auth-container[data-v-1d25232f] {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.auth-content[data-v-1d25232f] {
  display: flex;
  width: 1000px;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.illustration[data-v-1d25232f] {
  position: relative;
  width: 47%;
  height: 100%;
  background-color: #a41f35;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illustration img[data-v-1d25232f] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.overlay[data-v-1d25232f] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(164, 31, 53, 0.8) 0%, rgba(164, 31, 53, 0.6) 100%);
  z-index: 1;
}
.login-panel[data-v-1d25232f] {
  width: 53%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-form-wrapper[data-v-1d25232f] {
  width: 80%;
  max-width: 400px;
}
.login-header[data-v-1d25232f] {
  text-align: center;
  margin-bottom: 20px;
}
.logo[data-v-1d25232f] {
  width: 65px;
  height: 65px;
  margin-bottom: 10px;
}
.login-header h1[data-v-1d25232f] {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}
.subtitle[data-v-1d25232f] {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 400;
}
.error-message[data-v-1d25232f] {
  color: #f56c6c;
  background-color: #fef0f0;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  animation: fadeIn-1d25232f 0.3s ease;
}
.error-message i[data-v-1d25232f] {
  margin-right: 8px;
}
.login-form[data-v-1d25232f] {
  margin-bottom: 24px;
}
.form-label[data-v-1d25232f] {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.custom-input[data-v-1d25232f] .el-input__wrapper {
  box-shadow: none !important;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  padding: 0px 15px;
}
.custom-input[data-v-1d25232f] .el-input__wrapper:hover {
  border-color: #c0c4cc;
  background-color: #fff;
}
.custom-input[data-v-1d25232f] .el-input__wrapper:focus-within {
  border-color: #a41f35;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(164, 31, 53, 0.1) !important;
}
.custom-input[data-v-1d25232f] .el-input__inner {
  height: 45px;
  font-size: 15px;
  color: #333;
}
.custom-input[data-v-1d25232f] .el-input__suffix {
  color: #a41f35;
}
.submit-button[data-v-1d25232f] {
  width: 100%;
  height: 48px;
  background-color: #a41f35;
  border-color: #a41f35;
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(164, 31, 53, 0.3);
}
.submit-button[data-v-1d25232f]:hover {
  background-color: #8a1a2d;
  border-color: #8a1a2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(164, 31, 53, 0.4);
}
.submit-button[data-v-1d25232f]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(164, 31, 53, 0.3);
}
.login-footer[data-v-1d25232f] {
  text-align: center;
  margin-top: 32px;
}
.login-footer p[data-v-1d25232f] {
  font-size: 14px;
  color: #999;
}
@keyframes shake-1d25232f {
0%, 100% { transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% { transform: translateX(-5px);
}
20%, 40%, 60%, 80% { transform: translateX(5px);
}
}
.shake[data-v-1d25232f] {
  animation: shake-1d25232f 0.6s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes fadeIn-1d25232f {
from { opacity: 0; transform: translateY(-10px);
}
to { opacity: 1; transform: translateY(0);
}
}
@media (max-width: 1024px) {
.auth-content[data-v-1d25232f] {
    width: 90%;
    height: auto;
    flex-direction: column;
}
.illustration[data-v-1d25232f] {
    width: 100%;
    height: 220px;
}
.login-panel[data-v-1d25232f] {
    width: 100%;
    padding: 40px 0;
}
}
@media (max-width: 600px) {
.auth-content[data-v-1d25232f] {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}
.illustration[data-v-1d25232f] {
    height: 180px;
}
.login-form-wrapper[data-v-1d25232f] {
    width: 90%;
}
}

