/* 全局样式 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #2c3e50;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* 头部样式 */
.header {
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
}

.sidebar-toggle-btn {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .el-dropdown-link {
  color: #495057;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-right .el-dropdown-link:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: #ffffff;
}

/* 侧边栏 */
.sidebar {
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  position: relative;
  border-right: 1px solid #e9ecef;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar.collapsed {
  width: 80px;
}


/* Element UI 菜单重写 */
.sidebar .el-menu {
  border-right: none;
  background: transparent;
}

.sidebar .el-menu-item,
.sidebar .el-submenu__title {
  height: 50px;
  line-height: 50px;
  margin: 4px 12px;
  border-radius: 12px;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar .el-menu-item:hover,
.sidebar .el-submenu__title:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.sidebar .el-menu-item.is-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sidebar .el-menu-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

.sidebar .el-submenu .el-menu-item {
  margin: 2px 20px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  background: transparent;
}

.sidebar .el-submenu .el-menu-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.sidebar .el-submenu .el-menu-item.is-active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: #667eea;
}

.sidebar .el-submenu__title i,
.sidebar .el-menu-item i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.main-content > * {
  position: relative;
  z-index: 1;
}
/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f2f5;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* 头部样式 */
.header {
  height: 60px;
  background-color: #304156;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.user-info {
  margin-left: 10px;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* 侧边栏 */
.sidebar {
  width: 220px;
  height: 100%;
  background-color: #304156;
  transition: width 0.3s;
  overflow-y: auto;
  position: relative;
}

.sidebar.collapsed {
  width: 64px;
}

.sidebar-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2d3d;
  color: #bfcbd9;
  border-radius: 50%;
  cursor: pointer;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* 卡片样式美化 */
.el-card {
  margin-bottom: 24px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #ffffff;
  overflow: hidden;
}

.el-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.el-card__header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e9ecef;
  padding: 20px 24px;
  font-weight: 600;
  color: #2c3e50;
}

.el-card__body {
  padding: 24px;
}

/* 表格样式美化 */
.el-table {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.el-table th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #495057;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}

.el-table td {
  border-bottom: 1px solid #f1f3f4;
}

.el-table tr:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

/* 按钮样式美化 */
.el-button {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  padding: 10px 20px;
}

.el-button--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.el-button--primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

.el-button--success {
  background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
  box-shadow: 0 4px 15px rgba(81, 207, 102, 0.4);
}

.el-button--warning {
  background: linear-gradient(135deg, #ffd43b 0%, #fab005 100%);
  box-shadow: 0 4px 15px rgba(255, 212, 59, 0.4);
}

.el-button--danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.el-button--info {
  background: linear-gradient(135deg, #74c0fc 0%, #339af0 100%);
  box-shadow: 0 4px 15px rgba(116, 192, 252, 0.4);
}

/* 表单样式美化 */
.el-form-item {
  margin-bottom: 24px;
}

.el-form-item__label {
  color: #495057;
  font-weight: 500;
}

.el-input__inner,
.el-textarea__inner,
.el-select .el-input__inner {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  background: #ffffff;
}

.el-input__inner:focus,
.el-textarea__inner:focus,
.el-select .el-input__inner:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 对话框样式美化 */
.el-dialog {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.el-dialog__header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 24px 24px 20px;
  border-bottom: 1px solid #e9ecef;
}

.el-dialog__title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 18px;
}

.el-dialog__body {
  padding: 24px;
  background: #ffffff;
}

.dialog-footer {
  text-align: right;
  padding: 20px 24px 24px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

/* 操作栏样式 */
.operation-bar {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

/* 容器样式 */
.emergency-resource-container {
  padding: 0;
}

/* 页面标题样式 */
.page-header-title {
  display: flex;
  align-items: baseline;
  gap: 16px; 
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
}
/* 全局样式 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #2c3e50;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* 头部样式 */
.header {
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 1000;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .el-dropdown-link {
  color: #495057;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-right .el-dropdown-link:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: #ffffff;
}

/* 侧边栏 */
.sidebar {
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  position: relative;
  border-right: 1px solid #e9ecef;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-header .el-button {
  background: rgba(102, 126, 234, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-header .el-button:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

/* Element UI 菜单重写 */
.sidebar .el-menu {
  border-right: none;
  background: transparent;
}

.sidebar .el-menu-item,
.sidebar .el-submenu__title {
  height: 50px;
  line-height: 50px;
  margin: 4px 12px;
  border-radius: 12px;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar .el-menu-item:hover,
.sidebar .el-submenu__title:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.sidebar .el-menu-item.is-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sidebar .el-menu-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

.sidebar .el-submenu .el-menu-item {
  margin: 2px 20px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  background: transparent;
}

.sidebar .el-submenu .el-menu-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.sidebar .el-submenu .el-menu-item.is-active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: #667eea;
}

.sidebar .el-submenu__title i,
.sidebar .el-menu-item i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.main-content > * {
  position: relative;
  z-index: 1;
}
/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f2f5;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* 头部样式 */
.header {
  height: 60px;
  background-color: #304156;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.user-info {
  margin-left: 10px;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* 侧边栏 */
.sidebar {
  width: 220px;
  height: 100%;
  background-color: #304156;
  transition: width 0.3s;
  overflow-y: auto;
  position: relative;
}

.sidebar.collapsed {
  width: 64px;
}

.sidebar-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2d3d;
  color: #bfcbd9;
  border-radius: 50%;
  cursor: pointer;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* 全局样式 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #2c3e50;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* 头部样式 */
.header {
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 1000;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .el-dropdown-link {
  color: #495057;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-right .el-dropdown-link:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: #ffffff;
}

/* 侧边栏 */
.sidebar {
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  position: relative;
  border-right: 1px solid #e9ecef;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-header .el-button {
  background: rgba(102, 126, 234, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-header .el-button:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

/* Element UI 菜单重写 */
.sidebar .el-menu {
  border-right: none;
  background: transparent;
}

.sidebar .el-menu-item,
.sidebar .el-submenu__title {
  height: 50px;
  line-height: 50px;
  margin: 4px 12px;
  border-radius: 12px;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar .el-menu-item:hover,
.sidebar .el-submenu__title:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.sidebar .el-menu-item.is-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sidebar .el-menu-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

.sidebar .el-submenu .el-menu-item {
  margin: 2px 20px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  background: transparent;
}

.sidebar .el-submenu .el-menu-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.sidebar .el-submenu .el-menu-item.is-active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: #667eea;
}

.sidebar .el-submenu__title i,
.sidebar .el-menu-item i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.main-content > * {
  position: relative;
  z-index: 1;
}
/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f2f5;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* 头部样式 */
.header {
  height: 60px;
  background-color: #304156;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.user-info {
  margin-left: 10px;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* 侧边栏 */
.sidebar {
  width: 220px;
  height: 100%;
  background-color: #304156;
  transition: width 0.3s;
  overflow-y: auto;
  position: relative;
}

.sidebar.collapsed {
  width: 64px;
}

.sidebar-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2d3d;
  color: #bfcbd9;
  border-radius: 50%;
  cursor: pointer;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* 应急资源管理样式 */
.emergency-resource-container {
  padding: 20px;
}

.operation-bar {
  margin-bottom: 20px;
}

.el-card {
  margin-bottom: 20px;
}

.el-table {
  margin-bottom: 20px;
}

/* 表单样式 */
.el-form-item {
  margin-bottom: 22px;
}

/* 对话框底部按钮 */
.dialog-footer {
  text-align: right;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .sidebar {
    width: 64px;
  }
  
  .main-content {
    padding: 10px;
  }
  
  .emergency-resource-container {
    padding: 10px;
  }
}

/* 表格操作列按钮不换行 - 强制样式 */
.el-table .el-table__body-wrapper .el-table__row .el-table__cell:last-child .cell {
  white-space: nowrap !important;
  overflow: visible !important;
  display: inline-block !important;
  width: 100% !important;
}

.el-table .el-table__body-wrapper .el-table__row .el-table__cell .cell .el-button {
  margin-right: 2px !important;
  margin-bottom: 0 !important;
  padding: 5px 8px !important;
  font-size: 11px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.el-table .el-table__body-wrapper .el-table__row .el-table__cell .cell .el-button:last-child {
  margin-right: 0 !important;
}

/* 操作列样式优化 - 强制宽度 */
.el-table .el-table__header-wrapper .el-table__header .el-table__cell:last-child,
.el-table .el-table__body-wrapper .el-table__row .el-table__cell:last-child {
  text-align: center !important;
  min-width: 240px !important;
  width: 240px !important;
}

/* 操作列按钮容器 */
.el-table .el-table__body-wrapper .el-table__row .el-table__cell .cell {
  white-space: nowrap !important;
  overflow: visible !important;
  text-align: center !important;
}

/* 针对mini按钮的特殊处理 */
.el-table .el-button--mini {
  padding: 4px 6px !important;
  font-size: 10px !important;
  margin-right: 1px !important;
  border-radius: 2px !important;
}

/* 确保表格列宽度固定 */
.el-table th:last-child,
.el-table td:last-child {
  width: 240px !important;
  min-width: 240px !important;
  max-width: 240px !important;
}

/* 美化的功能卡片样式 */
.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card.active {
  border-color: #667eea;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(102, 126, 234, 0.05) 100%);
}

.feature-card.active::before {
  opacity: 1;
}

.feature-card-header {
  position: relative;
  padding: 24px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.feature-card:hover .feature-icon::before {
  animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.analysis-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.forecast-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.decision-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.report-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-badge {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

.feature-card.active .feature-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-color: transparent;
}

.feature-card-body {
  padding: 0 24px;
  flex: 1;
}

.feature-card-body h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
}

.feature-card-body p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  font-weight: 400;
}

.feature-card-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(248, 249, 250, 0.5);
}

.feature-status {
  font-size: 13px;
  color: #28a745;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.feature-status::before {
  content: '●';
  margin-right: 6px;
  font-size: 10px;
}

.feature-card.active .feature-status {
  color: #667eea;
}

/* 统计信息样式 */
.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 30px !important;
  width: 100% !important;
}

/* 强制1行4列，移除响应式断点 */
.dashboard-container .stats-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  gap: 20px !important;
}

/* 确保统计项目不会换行 */
.stats-grid .stat-item {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

.stat-item {
  text-align: center;
  padding: 20px 15px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, rgba(102, 126, 234, 0.02) 100%);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #495057;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stat-detail {
  font-size: 12px;
  color: #6c757d;
  font-weight: 400;
}

/* 页面描述样式 */
.page-description {
  color: #6c757d;
  margin: 8px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* 卡片头部样式 */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
}
/* 全局样式 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #2c3e50;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* 头部样式 */
.header {
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 1000;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .el-dropdown-link {
  color: #495057;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-right .el-dropdown-link:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: #ffffff;
}

/* 侧边栏 */
.sidebar {
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  position: relative;
  border-right: 1px solid #e9ecef;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-header .el-button {
  background: rgba(102, 126, 234, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-header .el-button:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

/* Element UI 菜单重写 */
.sidebar .el-menu {
  border-right: none;
  background: transparent;
}

.sidebar .el-menu-item,
.sidebar .el-submenu__title {
  height: 50px;
  line-height: 50px;
  margin: 4px 12px;
  border-radius: 12px;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar .el-menu-item:hover,
.sidebar .el-submenu__title:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.sidebar .el-menu-item.is-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sidebar .el-menu-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

.sidebar .el-submenu .el-menu-item {
  margin: 2px 20px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  background: transparent;
}

.sidebar .el-submenu .el-menu-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.sidebar .el-submenu .el-menu-item.is-active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: #667eea;
}

.sidebar .el-submenu__title i,
.sidebar .el-menu-item i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.main-content > * {
  position: relative;
  z-index: 1;
}
/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f2f5;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* 头部样式 */
.header {
  height: 60px;
  background-color: #304156;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.user-info {
  margin-left: 10px;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* 侧边栏 */
.sidebar {
  width: 220px;
  height: 100%;
  background-color: #304156;
  transition: width 0.3s;
  overflow-y: auto;
  position: relative;
}

.sidebar.collapsed {
  width: 64px;
}

.sidebar-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2d3d;
  color: #bfcbd9;
  border-radius: 50%;
  cursor: pointer;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* 卡片样式美化 */
.el-card {
  margin-bottom: 24px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #ffffff;
  overflow: hidden;
}

.el-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.el-card__header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e9ecef;
  padding: 20px 24px;
  font-weight: 600;
  color: #2c3e50;
}

.el-card__body {
  padding: 24px;
}

/* 表格样式美化 */
.el-table {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.el-table th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #495057;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}

.el-table td {
  border-bottom: 1px solid #f1f3f4;
}

.el-table tr:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

/* 按钮样式美化 */
.el-button {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  padding: 10px 20px;
}

.el-button--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.el-button--primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

.el-button--success {
  background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
  box-shadow: 0 4px 15px rgba(81, 207, 102, 0.4);
}

.el-button--warning {
  background: linear-gradient(135deg, #ffd43b 0%, #fab005 100%);
  box-shadow: 0 4px 15px rgba(255, 212, 59, 0.4);
}

.el-button--danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.el-button--info {
  background: linear-gradient(135deg, #74c0fc 0%, #339af0 100%);
  box-shadow: 0 4px 15px rgba(116, 192, 252, 0.4);
}

/* 表单样式美化 */
.el-form-item {
  margin-bottom: 24px;
}

.el-form-item__label {
  color: #495057;
  font-weight: 500;
}

.el-input__inner,
.el-textarea__inner,
.el-select .el-input__inner {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  background: #ffffff;
}

.el-input__inner:focus,
.el-textarea__inner:focus,
.el-select .el-input__inner:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 对话框样式美化 */
.el-dialog {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.el-dialog__header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 24px 24px 20px;
  border-bottom: 1px solid #e9ecef;
}

.el-dialog__title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 18px;
}

.el-dialog__body {
  padding: 24px;
  background: #ffffff;
}

.dialog-footer {
  text-align: right;
  padding: 20px 24px 24px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

/* 操作栏样式 */
.operation-bar {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

/* 容器样式 */
.emergency-resource-container {
  padding: 0;
}

/* 页面标题样式 */
.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 400;
}
/* 全局样式 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #2c3e50;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* 头部样式 */
.header {
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 1000;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .el-dropdown-link {
  color: #495057;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-right .el-dropdown-link:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: #ffffff;
}

/* 侧边栏 */
.sidebar {
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  position: relative;
  border-right: 1px solid #e9ecef;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-header .el-button {
  background: rgba(102, 126, 234, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-header .el-button:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

/* Element UI 菜单重写 */
.sidebar .el-menu {
  border-right: none;
  background: transparent;
}

.sidebar .el-menu-item,
.sidebar .el-submenu__title {
  height: 50px;
  line-height: 50px;
  margin: 4px 12px;
  border-radius: 12px;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar .el-menu-item:hover,
.sidebar .el-submenu__title:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.sidebar .el-menu-item.is-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sidebar .el-menu-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

.sidebar .el-submenu .el-menu-item {
  margin: 2px 20px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  background: transparent;
}

.sidebar .el-submenu .el-menu-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.sidebar .el-submenu .el-menu-item.is-active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: #667eea;
}

.sidebar .el-submenu__title i,
.sidebar .el-menu-item i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.main-content > * {
  position: relative;
  z-index: 1;
}
/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f2f5;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* 头部样式 */
.header {
  height: 60px;
  background-color: #304156;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.user-info {
  margin-left: 10px;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* 侧边栏 */
.sidebar {
  width: 220px;
  height: 100%;
  background-color: #304156;
  transition: width 0.3s;
  overflow-y: auto;
  position: relative;
}

.sidebar.collapsed {
  width: 64px;
}

.sidebar-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2d3d;
  color: #bfcbd9;
  border-radius: 50%;
  cursor: pointer;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* 全局样式 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #2c3e50;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* 头部样式 */
.header {
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 1000;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .el-dropdown-link {
  color: #495057;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-right .el-dropdown-link:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
  background: #ffffff;
}

/* 侧边栏 */
.sidebar {
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  position: relative;
  border-right: 1px solid #e9ecef;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-header .el-button {
  background: rgba(102, 126, 234, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-header .el-button:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

/* Element UI 菜单重写 */
.sidebar .el-menu {
  border-right: none;
  background: transparent;
}

.sidebar .el-menu-item,
.sidebar .el-submenu__title {
  height: 50px;
  line-height: 50px;
  margin: 4px 12px;
  border-radius: 12px;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar .el-menu-item:hover,
.sidebar .el-submenu__title:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.sidebar .el-menu-item.is-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sidebar .el-menu-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

.sidebar .el-submenu .el-menu-item {
  margin: 2px 20px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  background: transparent;
}

.sidebar .el-submenu .el-menu-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.sidebar .el-submenu .el-menu-item.is-active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  color: #667eea;
}

.sidebar .el-submenu__title i,
.sidebar .el-menu-item i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.main-content > * {
  position: relative;
  z-index: 1;
}
/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f2f5;
}

/* 应用容器 */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* 头部样式 */
.header {
  height: 60px;
  background-color: #304156;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.user-info {
  margin-left: 10px;
}

/* 主容器 */
.main-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* 侧边栏 */
.sidebar {
  width: 220px;
  height: 100%;
  background-color: #304156;
  transition: width 0.3s;
  overflow-y: auto;
  position: relative;
}

.sidebar.collapsed {
  width: 64px;
}

.sidebar-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2d3d;
  color: #bfcbd9;
  border-radius: 50%;
  cursor: pointer;
}

/* 主内容区 */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* 应急资源管理样式 */
.emergency-resource-container {
  padding: 20px;
}

.operation-bar {
  margin-bottom: 20px;
}

.el-card {
  margin-bottom: 20px;
}

.el-table {
  margin-bottom: 20px;
}

/* 表单样式 */
.el-form-item {
  margin-bottom: 22px;
}

/* 对话框底部按钮 */
.dialog-footer {
  text-align: right;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .sidebar {
    width: 64px;
  }
  
  .main-content {
    padding: 10px;
  }
  
  .emergency-resource-container {
    padding: 10px;
  }
}

/* 表格操作列按钮不换行 - 强制样式 */
.el-table .el-table__body-wrapper .el-table__row .el-table__cell:last-child .cell {
  white-space: nowrap !important;
  overflow: visible !important;
  display: inline-block !important;
  width: 100% !important;
}

.el-table .el-table__body-wrapper .el-table__row .el-table__cell .cell .el-button {
  margin-right: 2px !important;
  margin-bottom: 0 !important;
  padding: 5px 8px !important;
  font-size: 11px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.el-table .el-table__body-wrapper .el-table__row .el-table__cell .cell .el-button:last-child {
  margin-right: 0 !important;
}

/* 操作列样式优化 - 强制宽度 */
.el-table .el-table__header-wrapper .el-table__header .el-table__cell:last-child,
.el-table .el-table__body-wrapper .el-table__row .el-table__cell:last-child {
  text-align: center !important;
  min-width: 240px !important;
  width: 240px !important;
}

/* 操作列按钮容器 */
.el-table .el-table__body-wrapper .el-table__row .el-table__cell .cell {
  white-space: nowrap !important;
  overflow: visible !important;
  text-align: center !important;
}

/* 针对mini按钮的特殊处理 */
.el-table .el-button--mini {
  padding: 4px 6px !important;
  font-size: 10px !important;
  margin-right: 1px !important;
  border-radius: 2px !important;
}

/* 确保表格列宽度固定 */
.el-table th:last-child,
.el-table td:last-child {
  width: 240px !important;
  min-width: 240px !important;
  max-width: 240px !important;
}

/* 美化的功能卡片样式 */
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card.active {
  border: 2px solid #409EFF;
  box-shadow: 0 4px 20px rgba(64, 158, 255, 0.3);
}

.feature-card-header {
  position: relative;
  padding: 20px 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.analysis-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.forecast-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.decision-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.report-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-badge {
  background: rgba(64, 158, 255, 0.1);
  color: #409EFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.feature-card.active .feature-badge {
  background: #409EFF;
  color: #fff;
}

.feature-card-body {
  padding: 0 20px;
  flex: 1;
}

.feature-card-body h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #303133;
}

.feature-card-body p {
  margin: 0;
  font-size: 14px;
  color: #909399;
  line-height: 1.5;
}

.feature-card-footer {
  padding: 15px 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feature-status {
  font-size: 12px;
  color: #67C23A;
  font-weight: 500;
}

.feature-card.active .feature-status {
  color: #409EFF;
}

/* 页面描述样式 */
.page-description {
  color: #909399;
  margin: 5px 0 0 0;
  font-size: 14px;
}

/* 卡片头部样式 */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 统计信息样式 */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #409EFF;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #606266;
  font-weight: 500;
}

/* 决策支持卡片样式 */
.decision-cards {
  margin-bottom: 30px;
}

.decision-card {
  position: relative;
  height: 140px;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.decision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.analysis-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.forecast-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.decision-card-item {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.report-card {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 20px;
  color: white;
}

.card-info h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.card-info p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.card-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.decision-card:hover .card-arrow {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

.card-arrow i {
  font-size: 14px;
  color: white;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .decision-card {
    height: 140px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  
  .card-icon i {
    font-size: 20px;
  }
  
  .card-info h3 {
    font-size: 16px;
  }
  
  .card-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .decision-cards .el-col {
    margin-bottom: 16px;
  }
  
  .decision-card {
    height: 120px;
  }
  
  .card-content {
    padding: 16px;
  }
  
  .card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }
  
  .card-icon i {
    font-size: 18px;
  }
  
  .card-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  
  .card-info p {
    font-size: 12px;
  }
  
  .card-arrow {
    width: 28px;
    height: 28px;
    top: 16px;
    right: 16px;
  }
  
  .card-arrow i {
    font-size: 14px;
  }
}
