/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/App.vue?vue&type=style&index=0&id=7ba5bd90&scoped=true&lang=css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/* App组件特定样式 */
.el-container[data-v-7ba5bd90] {
  height: 100vh;
}
.el-main[data-v-7ba5bd90] {
  padding: 0 !important;
  overflow: hidden;
}

/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./src/assets/css/ConnectionManager.css ***!
  \******************************************************************************************************************************************************************************************************************************************************/
/* ConnectionManager 组件样式 */
.connection-manager {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.header {
  padding: 15px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header h3 {
  margin: 0;
  font-size: 16px;
}
.connection-list {
  height: 79px;
  overflow-y: auto;
  flex-shrink: 0; /* 防止被压缩 */
}
.connection-item {
  padding: 12px 15px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.connection-item:hover {
  background-color: #f5f7fa;
}
.connection-item.active {
  background-color: #ecf5ff;
  border-left: 3px solid #409eff;
}
.connection-left {
  flex: 1;
  min-width: 0; /* 允许文本截断 */
}
.connection-name {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 14px;
  color: #303133;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.connection-details {
  font-size: 12px;
  color: #909399;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.connection-database {
  font-size: 11px;
  color: #67c23a;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.connection-type {
  font-size: 10px;
  color: #409EFF;
  margin-top: 2px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.connection-actions {
  display: flex;
  gap: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0; /* 防止按钮被压缩 */
  margin-left: 10px;
}
.connection-item:hover .connection-actions {
  opacity: 1;
}
.connection-actions .el-button {
  padding: 4px;
  min-width: auto;
}
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #909399;
}
.tables-section {
  border-top: 1px solid #e6e6e6;
  padding: 15px;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.tables-section h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  flex-shrink: 0; /* 标题不收缩 */
}
.tables-list {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background-color: white;
  padding: 8px;
  overflow-y: auto; /* 添加垂直滚动 */
  min-height: 200px; /* 设置最小高度 */
}
.table-item {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  font-size: 14px;
  display: flex;
  align-items: center;
  min-width: 0; /* 允许flex子项收缩 */
}
.table-item:hover {
  background-color: #f0f0f0;
}
.table-item.active {
  background-color: #ecf5ff;
  border-left: 3px solid #409eff;
  color: #409eff;
  font-weight: 500;
}
.table-item.active i {
  color: #409eff;
}
.table-item i {
  margin-right: 8px;
  color: #909399;
  flex-shrink: 0; /* 图标不收缩 */
}
.table-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0; /* 允许文本收缩 */
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/ConnectionManager.vue?vue&type=style&index=0&id=22e2536f&scoped=true&lang=css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/


/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./src/assets/css/TableDataView.css ***!
  \**************************************************************************************************************************************************************************************************************************************************/
/* TableDataView 组件样式 */
.table-data-view {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.header {
  padding: 15px 20px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
}
.table-info h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #303133;
}
.table-hint {
  font-size: 12px;
  color: #909399;
}

/* 过滤工具栏样式 */
.filter-toolbar {
  padding: 12px 20px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e6e6e6;
}
.filter-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-item label {
  font-size: 14px;
  color: #606266;
  white-space: nowrap;
  margin: 0;
}
.filter-actions {
  display: flex;
  gap: 8px;
}
.filter-status {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-status .el-tag {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 区间输入框样式 */
.range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.range-separator {
  color: #606266;
  font-weight: bold;
  margin: 0 4px;
}

/* 可复制单元格样式 */
.copyable-cell {
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
}
.copyable-cell:hover {
  background-color: #e8f4f8 !important;
}
.copyable-cell:hover::after {
  content: "双击复制";
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #409eff;
  color: white;
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}
.copyable-cell:active {
  background-color: #d4edda !important;
}
.table-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.table-wrapper {
  flex: 1;
  overflow: auto;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  min-height: 0; /* 允许flex子项收缩以启用滚动 */
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  font-size: 14px;
}
.data-table thead {
  background-color: #fafafa;
  position: sticky;
  top: 0;
  z-index: 10;
}
.data-table th {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 2px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  font-weight: 500;
  color: #303133;
  white-space: nowrap;
}
.data-table th:last-child {
  border-right: none;
}

/* 序号列表头样式 */
.data-table th.row-number-header {
  width: 60px;
  text-align: center;
  background-color: #e9ecef;
  font-weight: 600;
}
.data-table td {
  padding: 8px;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  vertical-align: top;
}
.data-table td:last-child {
  border-right: none;
}

/* 序号列单元格样式 */
.data-table td.row-number {
  width: 60px;
  text-align: center;
  background-color: #f8f9fa;
  color: #6c757d;
  font-weight: 500;
}
.data-table tbody tr:hover {
  background-color: #f5f7fa;
}
.data-table tbody tr.stripe {
  background-color: #fafafa;
}
.data-table tbody tr.stripe:hover {
  background-color: #f0f2f5;
}
.pagination-wrapper {
  padding: 15px 20px;
  border-top: 1px solid #e6e6e6;
  background-color: #fafafa;
  text-align: center;
}
.empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #909399;
}
.empty-state h3 {
  margin: 20px 0 10px 0;
}
.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.column-header i {
  color: #909399;
  cursor: help;
  margin-left: 4px;
  font-size: 12px;
}
.cell-content {
  word-break: break-all;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #909399;
}
.no-data p {
  margin-top: 10px;
  font-size: 14px;
}

/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/TableDataView.vue?vue&type=style&index=0&id=0ef7b8dd&scoped=true&lang=css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/


/*!***************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./src/assets/css/LlmConfigPanel.css ***!
  \***************************************************************************************************************************************************************************************************************************************************/
/* LlmConfigPanel 组件样式 */
.llm-config-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.header {
  padding: 15px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header h3 {
  margin: 0;
  font-size: 16px;
}
.model-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}
.model-selector label {
  font-size: 14px;
  color: #606266;
  white-space: nowrap;
  margin: 0;
}
.config-content {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}
.config-section {
  margin-bottom: 25px;
}
.config-section h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #303133;
}
.field-checkbox {
  margin-bottom: 8px;
}
.field-help {
  font-size: 12px;
  color: #909399;
  margin-top: 4px;
}
.prompt-help {
  margin-top: 8px;
  text-align: right;
}
.generation-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.button-group .el-button {
  flex: 1;
  min-width: 120px;
}
.batch-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.results-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 10px;
  background-color: #fafafa;
}
.result-item {
  margin-bottom: 8px;
  padding: 8px;
  background-color: white;
  border-radius: 4px;
  border-left: 3px solid #409eff;
}
.result-item:last-child {
  margin-bottom: 0;
}
.result-item.success {
  border-left-color: #67c23a;
}
.result-item.error {
  border-left-color: #f56c6c;
}
.result-item .row-info {
  font-size: 12px;
  color: #909399;
  margin-bottom: 4px;
}
.result-item .generated-value {
  font-size: 14px;
  color: #303133;
}
.result-item .error-message {
  font-size: 12px;
  color: #f56c6c;
}
.columns-section {
  margin-bottom: 20px;
}
.columns-list {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 10px;
}
.column-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.column-item:last-child {
  border-bottom: none;
}
.column-info {
  flex: 1;
}
.column-name {
  font-weight: 500;
  color: #303133;
}
.column-type {
  font-size: 12px;
  color: #909399;
  margin-left: 8px;
}
.column-actions {
  display: flex;
  gap: 5px;
}
.add-field-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-row .el-form-item {
  flex: 1;
  margin-bottom: 0;
}
.add-field-info {
  text-align: center;
}
.add-field-info .tip {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1.4;
}
.delete-field-info {
  text-align: center;
}
.delete-field-info .tip {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1.4;
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/LlmConfigPanel.vue?vue&type=style&index=0&id=332d4b36&scoped=true&lang=css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/


/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/MainView.vue?vue&type=style&index=0&id=17e69338&scoped=true&lang=css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.main-view[data-v-17e69338] {
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
}
.el-aside[data-v-17e69338] {
  overflow-y: auto;
}
.el-main[data-v-17e69338] {
  padding: 0 !important;
  overflow: hidden;
}

/*!**********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./src/assets/css/LogViewer.css ***!
  \**********************************************************************************************************************************************************************************************************************************************/
/* LogViewer 组件样式 */
.log-viewer {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.log-controls {
  padding: 16px;
  border-bottom: 1px solid #e6e6e6;
  background: #f9f9f9;
}
.control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.control-row:last-child {
  margin-bottom: 0;
}
.control-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.control-group label {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}
.log-stats {
  padding: 8px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  gap: 8px;
  align-items: center;
}
.log-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.log-entry {
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 4px;
  border-left: 3px solid #ddd;
  background: #fafafa;
}
.log-entry.log-trace { 
  border-left-color: #8B8B8B;
}
.log-entry.log-debug { 
  border-left-color: #00CED1;
}
.log-entry.log-info { 
  border-left-color: #32CD32;
}
.log-entry.log-warn { 
  border-left-color: #FFD700; 
  background: #fffbf0;
}
.log-entry.log-error { 
  border-left-color: #FF6347; 
  background: #fff2f0;
}
.log-entry.log-fatal { 
  border-left-color: #DC143C; 
  background: #fff1f0;
}
.log-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.log-timestamp {
  font-size: 11px;
  color: #999;
  font-family: monospace;
  white-space: nowrap;
}
.log-message {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
}
.log-details {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.log-caller {
  font-size: 11px;
  color: #666;
  font-family: monospace;
  margin-bottom: 4px;
}
.log-data pre {
  font-size: 11px;
  background: #f8f8f8;
  padding: 8px;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
}
.log-pagination {
  padding: 16px;
  text-align: center;
  border-top: 1px solid #e6e6e6;
}
.empty-state {
  text-align: center;
  padding: 40px;
  color: #999;
}

/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/LogViewer.vue?vue&type=style&index=0&id=5023e914&scoped=true&lang=css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/


/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/LogsView.vue?vue&type=style&index=0&id=3179fd2e&scoped=true&lang=css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.logs-view[data-v-3179fd2e] {
  height: 100%;
  padding: 20px;
  background: #f5f5f5;
}
.page-header[data-v-3179fd2e] {
  margin-bottom: 20px;
}
.page-header h2[data-v-3179fd2e] {
  margin: 0 0 8px 0;
  color: #333;
}
.page-header p[data-v-3179fd2e] {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.config-panel[data-v-3179fd2e] {
  padding: 20px;
}
.config-actions[data-v-3179fd2e] {
  margin-top: 20px;
  text-align: center;
}
.system-info[data-v-3179fd2e] {
  padding: 20px;
}
.stat-card[data-v-3179fd2e] {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
}
.stat-card.info[data-v-3179fd2e] { border-left: 4px solid #67C23A;
}
.stat-card.warning[data-v-3179fd2e] { border-left: 4px solid #E6A23C;
}
.stat-card.error[data-v-3179fd2e] { border-left: 4px solid #F56C6C;
}
.stat-number[data-v-3179fd2e] {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.stat-label[data-v-3179fd2e] {
  font-size: 14px;
  color: #666;
}
.el-tabs[data-v-3179fd2e] {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.el-tabs[data-v-3179fd2e] .el-tabs__content {
  height: calc(100vh - 200px);
  overflow: hidden;
}

/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/ExpertProgressMonitor.vue?vue&type=style&index=0&id=5ee39963&scoped=true&lang=css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/* 覆盖 el-dialog 的默认 margin 样式 */
.progress-monitor[data-v-5ee39963] .el-dialog {
  margin-top: 0 !important;
  margin: 0 !important;
}

/* 如果需要自定义位置，可以添加 */
.progress-monitor[data-v-5ee39963] .el-dialog {
  margin-top: 0 !important;
  margin: 0 !important;
  /* 可以添加自定义的定位样式 */
  /* top: 50px; */
  /* transform: translateY(0); */
}

/* 或者完全居中 */
.progress-monitor[data-v-5ee39963] .el-dialog {
  margin-top: 0 !important;
  margin: 0 !important;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.progress-monitor[data-v-5ee39963] {
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
}
.progress-card[data-v-5ee39963] {
  margin-bottom: 20px;
}
.card-header[data-v-5ee39963] {
  font-weight: bold;
  font-size: 16px;
}
.overall-progress[data-v-5ee39963] {
  padding: 10px 0;
}
.progress-stats[data-v-5ee39963] {
  margin-top: 20px;
}
.stat-item[data-v-5ee39963] {
  text-align: center;
  padding: 10px;
}
.stat-label[data-v-5ee39963] {
  display: block;
  font-size: 12px;
  color: #909399;
  margin-bottom: 5px;
}
.stat-value[data-v-5ee39963] {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #303133;
}
.stat-value.success[data-v-5ee39963] {
  color: #67c23a;
}
.stat-value.error[data-v-5ee39963] {
  color: #f56c6c;
}
.stat-value.warning[data-v-5ee39963] {
  color: #e6a23c;
}
.current-status[data-v-5ee39963] {
  display: flex;
  justify-content: space-between;
}
.status-info[data-v-5ee39963] {
  flex: 1;
  margin-right: 20px;
}
.real-time-stats[data-v-5ee39963] {
  flex: 1;
}
.real-time-stats ul[data-v-5ee39963] {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.real-time-stats li[data-v-5ee39963] {
  margin-bottom: 5px;
  font-size: 14px;
}
.log-container[data-v-5ee39963] {
  max-height: 300px;
  overflow-y: auto;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 10px;
}
.log-item[data-v-5ee39963] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.log-time[data-v-5ee39963] {
  color: #909399;
  font-size: 12px;
  margin-right: 10px;
  min-width: 80px;
}
.log-icon[data-v-5ee39963] {
  margin-right: 8px;
  min-width: 20px;
}
.log-message[data-v-5ee39963] {
  flex: 1;
}
.log-success[data-v-5ee39963] {
  color: #67c23a;
}
.log-error[data-v-5ee39963] {
  color: #f56c6c;
}
.log-warning[data-v-5ee39963] {
  color: #e6a23c;
}
.log-info[data-v-5ee39963] {
  color: #303133;
}
.loading-container[data-v-5ee39963] {
  text-align: center;
  padding: 50px;
  color: #909399;
}


/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/ExpertView.vue?vue&type=style&index=0&id=e99fcbae&scoped=true&lang=css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.expert-view[data-v-e99fcbae] {
  height: calc(100% - 60px);
  background-color: #f5f5f5;
}
.expert-header[data-v-e99fcbae] {
  text-align: center;
  margin-bottom: 20px;
}
.config-card[data-v-e99fcbae] {
  margin-bottom: 20px;
}
.card-header[data-v-e99fcbae] {
  font-weight: bold;
  font-size: 16px;
}
.validation-result[data-v-e99fcbae] {
  margin-top: 10px;
}
.field-help[data-v-e99fcbae] {
  margin-top: 5px;
}
.param-unit[data-v-e99fcbae] {
  margin-left: 5px;
  color: #909399;
  font-size: 12px;
}
.data-preview[data-v-e99fcbae] {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.preview-container[data-v-e99fcbae] {
  max-height: 300px;
  overflow-y: auto;
  margin: 10px 0;
}
.preview-item[data-v-e99fcbae] {
  margin-bottom: 15px;
}
.preview-field[data-v-e99fcbae] {
  margin-bottom: 5px;
  font-size: 14px;
}
.preview-field strong[data-v-e99fcbae] {
  color: #303133;
}
.preview-actions[data-v-e99fcbae] {
  text-align: right;
  margin-top: 10px;
}
.execution-actions[data-v-e99fcbae] {
  text-align: center;
}
.sql-input-container[data-v-e99fcbae] {
  position: relative;
}
.sql-examples[data-v-e99fcbae] {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 10;
}
.sql-examples .el-button[data-v-e99fcbae] {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
}
.prompt-input-container[data-v-e99fcbae] {
  position: relative;
}
.prompt-examples[data-v-e99fcbae] {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 10;
}
.prompt-examples .el-button[data-v-e99fcbae] {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
}

/* 字段映射样式 */
.field-mapping-item[data-v-e99fcbae] {
  margin-bottom: 15px;
}
.field-label[data-v-e99fcbae] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
  color: #303133;
}
.field-label span[data-v-e99fcbae] {
  margin-right: 5px;
}
.field-help-icon[data-v-e99fcbae] {
  color: #909399;
  cursor: pointer;
  font-size: 14px;
}
.field-help-icon[data-v-e99fcbae]:hover {
  color: #409eff;
}

/* 处理提示样式 */
.processing-tips[data-v-e99fcbae] {
  margin-top: 20px;
}
.processing-tips .el-alert[data-v-e99fcbae] {
  background-color: #f4f4f5;
  border: 1px solid #e9e9eb;
}
.processing-tips .el-alert__description p[data-v-e99fcbae] {
  margin: 5px 0;
  font-size: 14px;
  color: #606266;
}

/* 参数描述样式 */
.param-description[data-v-e99fcbae] {
  margin-top: 15px;
}
.param-description .el-alert[data-v-e99fcbae] {
  background-color: #f0f9ff;
  border: 1px solid #b3d8ff;
}
.param-description .el-alert__description p[data-v-e99fcbae] {
  margin: 5px 0;
  font-size: 13px;
  color: #606266;
}

/* 多输入字段样式 */
.input-fields-container[data-v-e99fcbae] {
  width: 100%;
}
.input-field-item[data-v-e99fcbae] {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.input-field-item[data-v-e99fcbae]:last-of-type {
  margin-bottom: 0;
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/EnhancedQueryResultTable.vue?vue&type=style&index=0&id=612e240f&scoped=true&lang=css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.enhanced-query-result-table[data-v-612e240f] {
  width: 100%;
}
.table-toolbar[data-v-612e240f] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #ebeef5;
}
.selection-info[data-v-612e240f] {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #606266;
  font-size: 14px;
}
.table-actions[data-v-612e240f] {
  display: flex;
  gap: 10px;
}

/* 虚拟表格容器 */
.virtual-table-container[data-v-612e240f] {
  border: 1px solid #ebeef5;
  border-radius: 4px;
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

/* 表头样式 */
.virtual-table-header[data-v-612e240f] {
  background-color: #fafafa;
  border-bottom: 1px solid #ebeef5;
}
.header-row[data-v-612e240f] {
  display: flex;
  align-items: center;
  height: 48px;
  font-weight: 500;
  color: #303133;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.header-cell[data-v-612e240f] {
  padding: 12px;
  border-right: 1px solid #ebeef5;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: #909399;
  font-weight: 500;
}
.header-cell[data-v-612e240f]:last-child {
  border-right: none;
}
.selection-cell[data-v-612e240f] {
  width: 55px;
  justify-content: center;
}



/* 虚拟滚动体 */
.virtual-table-body[data-v-612e240f] {
  height: 400px;
  overflow: hidden;
}
.scroller[data-v-612e240f] {
  height: 100%;
}

/* 表格行样式 */
.table-row[data-v-612e240f] {
  display: flex;
  align-items: center;
  height: 48px;
  border-bottom: 1px solid #ebeef5;
  transition: background-color 0.2s ease;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.table-row[data-v-612e240f]:hover {
  background-color: #f5f7fa;
}
.table-row.stripe[data-v-612e240f] {
  background-color: #fafafa;
}
.table-row.stripe[data-v-612e240f]:hover {
  background-color: #f0f2f5;
}
.table-cell[data-v-612e240f] {
  padding: 12px;
  border-right: 1px solid #ebeef5;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 14px;
  color: #606266;
  line-height: 1.5;
}
.table-cell[data-v-612e240f]:last-child {
  border-right: none;
}
.cell-content[data-v-612e240f] {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-size: 14px;
  color: #606266;
  line-height: 1.5;
}
.cell-content[data-v-612e240f]:hover {
  color: #409EFF;
}

/* 无数据状态 */
.empty-result[data-v-612e240f] {
  text-align: center;
  padding: 60px 20px;
  color: #909399;
}
.empty-result h3[data-v-612e240f] {
  margin: 20px 0 10px 0;
  color: #606266;
}

/* 数据统计 */
.data-stats[data-v-612e240f] {
  margin-top: 15px;
  padding: 10px 0;
  text-align: right;
  color: #606266;
  font-size: 14px;
  border-top: 1px solid #ebeef5;
}
.data-stats span[data-v-612e240f] {
  margin-left: 10px;
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/LLMOutputPreview.vue?vue&type=style&index=0&id=3a5fd66c&scoped=true&lang=css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.llm-output-preview[data-v-3a5fd66c] {
  width: 100%;
}
.preview-mode[data-v-3a5fd66c],
.edit-mode[data-v-3a5fd66c] {
  margin-bottom: 15px;
}
.preview-content[data-v-3a5fd66c] {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  padding: 15px;
  background-color: #fafafa;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  line-height: 1.6;
  font-size: 14px;
  color: #303133;
}
.preview-content[data-v-3a5fd66c] h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 10px 0;
  color: #303133;
}
.preview-content[data-v-3a5fd66c] h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 8px 0;
  color: #303133;
}
.preview-content[data-v-3a5fd66c] h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 6px 0;
  color: #303133;
}
.preview-content[data-v-3a5fd66c] strong {
  font-weight: 600;
  color: #303133;
}
.preview-content[data-v-3a5fd66c] em {
  font-style: italic;
  color: #606266;
}
.preview-content[data-v-3a5fd66c] code {
  background-color: #f5f5f5;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  color: #e74c3c;
  font-size: 13px;
}
.preview-content[data-v-3a5fd66c] ul {
  margin: 10px 0;
  padding-left: 20px;
}
.preview-content[data-v-3a5fd66c] li {
  margin: 5px 0;
  list-style-type: disc;
}
.preview-actions[data-v-3a5fd66c],
.edit-actions[data-v-3a5fd66c] {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}
.result-stats[data-v-3a5fd66c] {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid #ebeef5;
  font-size: 12px;
  color: #909399;
}
.stats-item[data-v-3a5fd66c] {
  display: flex;
  align-items: center;
  gap: 5px;
}
.stats-label[data-v-3a5fd66c] {
  font-weight: 500;
}
.stats-value[data-v-3a5fd66c] {
  color: #606266;
  font-weight: 600;
}

/* 编辑模式样式 */
.edit-mode .el-textarea[data-v-3a5fd66c] {
  font-family: 'Courier New', monospace;
}
.edit-mode .el-textarea[data-v-3a5fd66c] .el-textarea__inner {
  font-size: 13px;
  line-height: 1.5;
}

/* 滚动条样式 */
.preview-content[data-v-3a5fd66c]::-webkit-scrollbar {
  width: 6px;
}
.preview-content[data-v-3a5fd66c]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.preview-content[data-v-3a5fd66c]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.preview-content[data-v-3a5fd66c]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/VariableReferenceTable.vue?vue&type=style&index=0&id=605f678f&scoped=true&lang=css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.variable-reference-table[data-v-605f678f] {
  margin-bottom: 20px;
  border-radius: 8px;
}
.card-header[data-v-605f678f] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #303133;
}
.variable-content[data-v-605f678f] {
  padding: 10px 0;
}
.variable-section[data-v-605f678f] {
  margin-bottom: 25px;
}
.section-title[data-v-605f678f] {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #606266;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.variable-grid[data-v-605f678f] {
  display: grid;
  gap: 10px;
}
.variable-item[data-v-605f678f] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Courier New", monospace;
  font-size: 13px;
}
.variable-item[data-v-605f678f]:hover {
  background-color: #e8f4f8;
  border-color: #409eff;
  transform: translateY(-1px);
}
.variable-item.llm-variable[data-v-605f678f] {
  background-color: #fff7e6;
  border-color: #ffd591;
}
.variable-item.llm-variable[data-v-605f678f]:hover {
  background-color: #fff1d6;
  border-color: #ffb366;
}
.variable-text[data-v-605f678f] {
  color: #303133;
  font-weight: 500;
}
.copy-icon[data-v-605f678f] {
  color: #909399;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.variable-item:hover .copy-icon[data-v-605f678f] {
  opacity: 1;
  color: #409eff;
}
.usage-tips[data-v-605f678f] {
  margin-bottom: 25px;
}
.tips-list[data-v-605f678f] {
  margin: 0;
  padding-left: 20px;
  color: #606266;
  font-size: 13px;
  line-height: 1.6;
}
.tips-list li[data-v-605f678f] {
  margin-bottom: 5px;
}
.tips-list code[data-v-605f678f] {
  background-color: #f5f5f5;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  color: #e74c3c;
}
.example-templates[data-v-605f678f] {
  margin-bottom: 10px;
}
.template-grid[data-v-605f678f] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.template-item[data-v-605f678f] {
  padding: 15px;
  background-color: #fafbfc;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.template-item[data-v-605f678f]:hover {
  background-color: #f1f8ff;
  border-color: #409eff;
  transform: translateY(-1px);
}
.template-title[data-v-605f678f] {
  font-weight: 600;
  color: #303133;
  margin-bottom: 8px;
  font-size: 14px;
}
.template-content[data-v-605f678f] {
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #586069;
  line-height: 1.4;
  white-space: pre-line;
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/HighlightTextInput.vue?vue&type=style&index=0&id=1f25a9f9&scoped=true&lang=css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.highlight-text-input[data-v-1f25a9f9] {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.codemirror-container[data-v-1f25a9f9] {
  width: 100%;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  transition: border-color 0.2s ease;
  --editor-height: 120px; /* 默认高度 */
  min-height: var(--editor-height);
}
.codemirror-container[data-v-1f25a9f9]:focus-within {
  border-color: #409eff;
  box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.1);
}

/* 自定义placeholder样式 */
.codemirror-placeholder[data-v-1f25a9f9] {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #909399; /* 更深的颜色，提高清晰度 */
  font-size: 14px;
  line-height: 1.5;
  font-family: inherit; /* 使用浏览器默认字体 */
  font-weight: normal; /* 确保字体粗细正常 */
  pointer-events: none;
  z-index: 10; /* 提高层级 */
  font-style: normal; /* 去掉斜体，提高可读性 */
  opacity: 1; /* 确保不透明 */
  background: transparent; /* 确保背景透明 */
  white-space: pre-line; /* 支持换行显示 */
}

/* CodeMirror 编辑器样式 */
.highlight-text-input[data-v-1f25a9f9] .CodeMirror {
  height: var(--editor-height, 120px);
  font-size: 14px;
  line-height: 1.5;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro",
    monospace;
  border: none;
  border-radius: 0;
  background: transparent;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-scroll {
  margin: 0;
  padding: 0;
  height: var(--editor-height, 120px);
  box-sizing: border-box;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-lines {
  height: 100%;
  padding: 0;
  min-height: calc(var(--editor-height, 120px) - 24px); /* 减去padding */
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-line {
  padding: 0;
  line-height: 1.5;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-sizer {
  border-right: none !important;
  margin: 0 0 0 38px !important;
  padding: 0 !important;
  min-height: calc(var(--editor-height, 120px) - 24px) !important;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-gutters {
  left: 0 !important;
  border-right: 1px solid #f0f0f0;
  background-color: #fafafa;
  padding-right: 0;
  width: auto;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-linenumber {
  color: #a0a0a0;
  font-size: 13px;
  line-height: 1.5;
  padding: 0 3px 0 5px;
  text-align: right;
  min-width: 32px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
  box-sizing: border-box;
  width: 21px !important;
  height: 21px;
  line-height: 21px;
  text-align: center;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-linenumber:hover {
  color: #606266;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-guttermarker {
  color: #409eff;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-guttermarker-subtle {
  color: #c0c4cc;
}

/* 确保行号区域不会影响编辑器的整体高度 */
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-gutter {
  height: 100%;
}

/* 确保滚动区域高度正确 */
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-scrollbar-filler,
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-gutter-filler {
  background-color: transparent;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-placeholder {
  color: #c0c4cc;
  font-style: italic;
}

/* 自定义高亮样式 - 与参考文件完全一致 */
.highlight-text-input[data-v-1f25a9f9] .cm-variable-placeholder {
  background-color: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
  border-radius: 4px;
  padding: 2px 4px;
  font-weight: bold;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-keyword-primary {
  color: #1976d2;
  font-weight: bold;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-keyword-secondary {
  color: #f57c00;
  font-weight: bold;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-operator {
  color: #388e3c;
  font-weight: 600;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-datatype {
  color: #7b1fa2;
  font-weight: 500;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-function {
  color: #00796b;
  font-weight: 500;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-string {
  color: #2e7d32;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-number {
  color: #d32f2f;
}
.highlight-text-input[data-v-1f25a9f9] .cm-sql-comment {
  color: #757575;
  font-style: italic;
}
.highlight-text-input[data-v-1f25a9f9] .cm-highlight {
  background-color: #fff2cc;
  color: #e6a23c;
  border-radius: 2px;
  padding: 1px 2px;
}

/* SQL联想提示框样式 */
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-hints {
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-hint {
  padding: 6px 10px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-hint:last-child {
  border-bottom: none;
}
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-hint:hover,
.highlight-text-input[data-v-1f25a9f9] .CodeMirror-hint.CodeMirror-hint-active {
  background: #e3f2fd;
  color: #1565c0;
}

/* 不同类型的提示样式 */
.highlight-text-input[data-v-1f25a9f9] .sql-hint-keyword {
  color: #0066cc;
  font-weight: bold;
}
.highlight-text-input[data-v-1f25a9f9] .sql-hint-table {
  color: #009688;
  font-weight: 500;
}
.highlight-text-input[data-v-1f25a9f9] .sql-hint-column {
  color: #ff9800;
}
.highlight-text-input[data-v-1f25a9f9] .sql-hint-variable {
  color: #9c27b0;
  font-style: italic;
}

/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/ExpertEnhancedView.vue?vue&type=style&index=0&id=4c010fbf&scoped=true&lang=css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.expert-enhanced-view[data-v-4c010fbf] {
  height: 100vh;
  background-color: #f5f7fa;
}
.expert-header[data-v-4c010fbf] {
  text-align: center;
  margin-bottom: 20px;
}
.config-card[data-v-4c010fbf] {
  margin-bottom: 20px;
  border-radius: 8px;
}
.card-header[data-v-4c010fbf] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #303133;
}
.available-variables[data-v-4c010fbf] {
  font-size: 12px;
  color: #909399;
  font-weight: normal;
}
.result-actions[data-v-4c010fbf] {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #ebeef5;
}
.sql-workspace[data-v-4c010fbf],
.prompt-workspace[data-v-4c010fbf],
.update-workspace[data-v-4c010fbf],
.processing-params[data-v-4c010fbf] {
  padding: 10px 0;
}
.param-unit[data-v-4c010fbf] {
  margin-left: 10px;
  color: #606266;
  font-size: 14px;
}
.field-help[data-v-4c010fbf] {
  margin-top: 10px;
}
.field-help .el-alert[data-v-4c010fbf] {
  background-color: #f4f4f5;
  border: 1px solid #e9e9eb;
}
.field-help .el-alert__description p[data-v-4c010fbf] {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.4;
}

/* 高亮输入框样式调整 */
.prompt-workspace .highlight-text-input[data-v-4c010fbf],
.update-workspace .highlight-text-input[data-v-4c010fbf] {
  margin: 0;
  padding: 0;
}
.prompt-workspace .el-form-item__content[data-v-4c010fbf],
.update-workspace .el-form-item__content[data-v-4c010fbf] {
  line-height: normal;
}

/* 确保高亮输入框与 Element UI 表单项对齐 */
.prompt-workspace .input-container[data-v-4c010fbf],
.update-workspace .input-container[data-v-4c010fbf] {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/QueryResultTable.vue?vue&type=style&index=0&id=47abcb79&scoped=true&lang=css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/* 导入主页表格样式 */
.query-result-table[data-v-47abcb79] {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.result-header[data-v-47abcb79] {
  padding: 15px 20px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
}
.result-info h4[data-v-47abcb79] {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #303133;
}
.result-hint[data-v-47abcb79] {
  font-size: 12px;
  color: #909399;
}
.result-actions[data-v-47abcb79] {
  display: flex;
  gap: 8px;
}
.table-container[data-v-47abcb79] {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.table-wrapper[data-v-47abcb79] {
  flex: 1;
  overflow: auto;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
}

/* 确保表格不会超出容器宽度 */
.data-table[data-v-47abcb79] {
  width: 100%;
  table-layout: fixed; /* 固定表格布局，确保列宽按设定值显示 */
  border-collapse: collapse;
}
.data-table th[data-v-47abcb79],
.data-table td[data-v-47abcb79] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}

/* 单元格内容样式 */
.cell-content[data-v-47abcb79] {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.empty-result[data-v-47abcb79] {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #909399;
  padding: 40px;
}
.empty-result h3[data-v-47abcb79] {
  margin: 20px 0 10px 0;
  color: #606266;
}
.empty-result p[data-v-47abcb79] {
  margin: 0;
  color: #909399;
}
.loading-state[data-v-47abcb79] {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #409eff;
  padding: 40px;
}
.loading-state p[data-v-47abcb79] {
  margin-top: 16px;
  font-size: 14px;
}

/* 普通表格样式 */
.normal-table[data-v-47abcb79] {
  height: 100%;
  overflow: auto;
}

/* 虚拟滚动样式 */
.virtual-table[data-v-47abcb79] {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 14px; /* 与主页表格保持一致 */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* 防止出现水平滚动条 */
}
.virtual-table-header[data-v-47abcb79] {
  flex-shrink: 0;
  border-bottom: 2px solid #e6e6e6;
  background-color: #fafafa;
  position: relative;
  z-index: 10;
}
.header-row[data-v-47abcb79] {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.header-cell[data-v-47abcb79] {
  padding: 12px 8px;
  text-align: left;
  border-right: 1px solid #e6e6e6;
  font-weight: 500;
  color: #303133;
  white-space: nowrap;
  background-color: #fafafa;
  box-sizing: border-box;
  font-size: 14px; /* 确保与主页表格表头字体大小一致 */
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0; /* 防止列宽被压缩 */
}
.header-cell[data-v-47abcb79]:last-child {
  border-right: none;
}

/* 序号列样式 */
.row-number-header[data-v-47abcb79] {
  width: 60px !important;
  text-align: center !important;
  background-color: #e9ecef !important;
  font-weight: 600;
}
.row-number[data-v-47abcb79] {
  width: 60px !important;
  text-align: center !important;
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  font-weight: 500;
  border-right: 1px solid #e6e6e6 !important;
}
.virtual-table-body[data-v-47abcb79] {
  flex: 1;
  overflow: hidden;
}
.scroller[data-v-47abcb79] {
  height: 100%;
}

/* 虚拟滚动行样式 */
.table-row[data-v-47abcb79] {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
}
.table-row[data-v-47abcb79]:hover {
  background-color: #f5f7fa;
}
.table-row.stripe[data-v-47abcb79] {
  background-color: #fafafa;
}
.table-row.stripe[data-v-47abcb79]:hover {
  background-color: #f0f2f5;
}
.table-cell[data-v-47abcb79] {
  padding: 8px;
  border-right: 1px solid #f0f0f0;
  vertical-align: top;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 14px; /* 确保与主页表格字体大小一致 */
  color: inherit; /* 继承父元素颜色 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0; /* 防止单元格被压缩 */
}
.table-cell[data-v-47abcb79]:last-child {
  border-right: none;
}

/* 虚拟滚动中的序号列样式 */
.table-cell.row-number[data-v-47abcb79] {
  width: 60px !important;
  min-width: 60px !important;
  max-width: 60px !important;
  text-align: center !important;
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  font-weight: 500;
  justify-content: center;
  cursor: default !important;
}
.table-cell.row-number[data-v-47abcb79]:hover {
  background-color: #f8f9fa !important;
}

/* 可复制单元格样式 */
.table-cell.copyable-cell[data-v-47abcb79] {
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
}
.table-cell.copyable-cell[data-v-47abcb79]:hover {
  background-color: #e8f4f8 !important;
}
.table-cell.copyable-cell[data-v-47abcb79]:hover::after {
  content: "双击复制";
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #409eff;
  color: white;
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}
.table-cell.copyable-cell[data-v-47abcb79]:active {
  background-color: #d4edda !important;
}

/* 大数据量提示 */
.large-data-info[data-v-47abcb79] {
  padding: 8px 16px;
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #1890ff;
}
.large-data-info i[data-v-47abcb79] {
  margin-right: 4px;
}

/*!**********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./src/assets/css/QueryView.css ***!
  \**********************************************************************************************************************************************************************************************************************************************/
/* QueryView 查询模块样式 */
.query-view {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  overflow: hidden; /* 防止整个页面出现滚动条 */
}
.query-container {
  height: 100%;
  flex: 1;
  overflow: hidden; /* 防止容器溢出 */
}

/* 左侧查询输入面板 */
.query-input-panel {
  background-color: #fff;
  border-right: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* 左侧面板可以滚动 */
  height: 100%;
}
.panel-header {
  padding: 20px;
  border-bottom: 1px solid #e6e6e6;
  background-color: #fafafa;
}
.panel-header h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #303133;
  font-weight: 600;
}
.panel-description {
  margin: 0;
  font-size: 13px;
  color: #909399;
  line-height: 1.4;
}

/* 表单区域 */
.form-section {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.form-section:last-child {
  border-bottom: none;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #606266;
}

/* 连接选择器样式 */
.connection-option {
  padding: 4px 0;
  height: 100%;
}
.connection-name {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #303133;
  margin-bottom: 2px;
  height: 100%;
}
.connection-name i {
  margin-right: 6px;
  color: #409eff;
}
.connection-details {
  font-size: 12px;
  color: #909399;
  margin-left: 20px;
}

/* 查询输入区域 */
.query-input-wrapper {
  position: relative;
}
.query-textarea {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
}
.query-textarea .el-textarea__inner {
  border-radius: 6px;
  border: 1px solid #dcdfe6;
  transition: border-color 0.2s ease;
}
.query-textarea .el-textarea__inner:focus {
  border-color: #409eff;
  box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.1);
}
.query-hint {
  margin-top: 8px;
  font-size: 12px;
  color: #909399;
  display: flex;
  align-items: center;
}
.query-hint span {
  display: flex;
  align-items: center;
}

/* 操作按钮区域 */
.action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.action-buttons .el-button {
  flex: 1;
  min-width: 80px;
}

/* 验证结果样式 */
.form-section .el-alert {
  border-radius: 6px;
}

/* 查询进度样式 */
.query-progress {
  padding: 12px;
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
  border-radius: 6px;
}
.progress-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #1890ff;
}
.progress-info i {
  animation: rotate 1s linear infinite;
}
.progress-time {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}
.progress-warning {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #fa8c16;
}
@keyframes rotate {
from { transform: rotate(0deg);
}
to { transform: rotate(360deg);
}
}

/* 执行统计样式 */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
.stat-label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 4px;
}
.stat-value {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

/* 右侧结果面板 */
.query-result-panel {
  background-color: #fff;
  padding: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 响应式设计 */
@media (max-width: 1200px) {
.query-input-panel {
    width: 350px !important;
}
.stats-grid {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.query-input-panel {
    width: 300px !important;
}
.panel-header {
    padding: 16px;
}
.form-section {
    padding: 12px 16px;
}
.action-buttons {
    flex-direction: column;
}
.action-buttons .el-button {
    flex: none;
}
}

/* 滚动条样式 */
.query-input-panel::-webkit-scrollbar {
  width: 6px;
}
.query-input-panel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.query-input-panel::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.query-input-panel::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 加载状态样式 */
.el-loading-mask {
  background-color: rgba(255, 255, 255, 0.8);
}
.el-loading-spinner {
  margin-top: -25px;
}
.el-loading-text {
  color: #409eff;
  font-size: 14px;
  margin-top: 10px;
}

/* 按钮状态样式 */
.el-button.is-loading {
  position: relative;
}
.el-button.is-loading::before {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.35);
}

/* 成功状态样式 */
.el-alert--success {
  background-color: #f0f9ff;
  border-color: #b3e5fc;
}
.el-alert--success .el-alert__title {
  color: #0277bd;
}

/* 错误状态样式 */
.el-alert--error {
  background-color: #fff5f5;
  border-color: #fecaca;
}
.el-alert--error .el-alert__title {
  color: #dc2626;
}

/* 动画效果 */
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s ease;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}
.slide-up-enter-active, .slide-up-leave-active {
  transition: all 0.3s ease;
}
.slide-up-enter, .slide-up-leave-to {
  transform: translateY(10px);
  opacity: 0;
}

/* 工具提示样式 */
.el-tooltip__popper {
  max-width: 300px;
}
.el-tooltip__popper .el-tooltip__arrow {
  border-top-color: #303133;
}
.el-tooltip__popper[x-placement^="top"] {
  margin-bottom: 12px;
}

/* 选择器下拉样式 */
.el-select-dropdown {
  border-radius: 6px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.el-select-dropdown__item:hover {
  background-color: #f5f7fa;
}
.el-select-dropdown__item.selected {
  background-color: #409eff;
  color: #fff;
}

/* 消息提示样式 */
.el-message {
  border-radius: 6px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.el-message--success {
  background-color: #f0f9ff;
  border-color: #b3e5fc;
  color: #0277bd;
}
.el-message--error {
  background-color: #fff5f5;
  border-color: #fecaca;
  color: #dc2626;
}
.el-message--warning {
  background-color: #fffbf0;
  border-color: #fed7aa;
  color: #d97706;
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/QueryView.vue?vue&type=style&index=0&id=0253477a&scoped=true&lang=css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/


/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/WechatLoginDialog.vue?vue&type=style&index=0&id=90217cea&scoped=true&lang=css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/* 遮罩层 */
.wechat-dialog-overlay[data-v-90217cea] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 弹窗容器 */
.wechat-dialog[data-v-90217cea] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 400px;
  height: 425px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 标题栏 */
.wechat-dialog-header[data-v-90217cea] {
  background: #409eff;
  color: white;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

/* 标题文字 */
.wechat-dialog-title[data-v-90217cea] {
  margin: 0;
}

/* 关闭按钮 */
.wechat-dialog-close[data-v-90217cea] {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background-color 0.2s;
}
.wechat-dialog-close[data-v-90217cea]:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 内容区域 */
.wechat-dialog-body[data-v-90217cea] {
  flex: 1;
  overflow: hidden;
}

/* iframe */
.wechat-dialog-iframe[data-v-90217cea] {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 响应式设计 */
@media (max-width: 480px) {
.wechat-dialog[data-v-90217cea] {
    width: 90%;
    height: 80%;
    margin: 0 20px;
}
}

/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/LoginForm.vue?vue&type=style&index=0&id=8dac4566&scoped=true&lang=css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.login-container[data-v-8dac4566] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}
.login-card[data-v-8dac4566] {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}
.card-header[data-v-8dac4566] {
  text-align: center;
  color: #303133;
}
.card-header h2[data-v-8dac4566] {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
}
.card-header p[data-v-8dac4566] {
  margin: 0;
  color: #909399;
  font-size: 14px;
}
.login-links[data-v-8dac4566] {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.login-links .el-button[data-v-8dac4566] {
  padding: 0;
  font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 480px) {
.login-container[data-v-8dac4566] {
    padding: 10px;
}
.login-card[data-v-8dac4566] {
    margin: 0;
}
.login-links[data-v-8dac4566] {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/RegisterForm.vue?vue&type=style&index=0&id=6626deb7&scoped=true&lang=css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.register-container[data-v-6626deb7] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}
.register-card[data-v-6626deb7] {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}
.card-header[data-v-6626deb7] {
  text-align: center;
  color: #303133;
}
.card-header h2[data-v-6626deb7] {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
}
.card-header p[data-v-6626deb7] {
  margin: 0;
  color: #909399;
  font-size: 14px;
}
.register-links[data-v-6626deb7] {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.register-links .el-button[data-v-6626deb7] {
  padding: 0;
  font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 480px) {
.register-container[data-v-6626deb7] {
    padding: 10px;
}
.register-card[data-v-6626deb7] {
    margin: 0;
}
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/ForgotPasswordForm.vue?vue&type=style&index=0&id=2362e1f2&scoped=true&lang=css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.forgot-password-container[data-v-2362e1f2] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}
.forgot-password-card[data-v-2362e1f2] {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}
.card-header[data-v-2362e1f2] {
  text-align: center;
  color: #303133;
}
.card-header h2[data-v-2362e1f2] {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
}
.card-header p[data-v-2362e1f2] {
  margin: 0;
  color: #909399;
  font-size: 14px;
  line-height: 1.4;
}
.form-links[data-v-2362e1f2] {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.form-links .el-button[data-v-2362e1f2] {
  padding: 0;
  font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 480px) {
.forgot-password-container[data-v-2362e1f2] {
    padding: 10px;
}
.forgot-password-card[data-v-2362e1f2] {
    margin: 0;
}
.form-links[data-v-2362e1f2] {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
}

/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/AuthView.vue?vue&type=style&index=0&id=62fe0c27&scoped=true&lang=css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

.auth-view[data-v-62fe0c27] {
  width: 100%;
  height: 100vh;
}

/*!*************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./src/assets/css/global.css ***!
  \*************************************************************************************************************************************************************************/
/* 全局样式文件 - 避免组件样式冲突 */

/* 基础重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

#app {
  height: 100vh;
}

/* Element UI 组件样式覆盖 */
.el-container {
  height: calc(100vh - 60px);
}

.el-header {
  padding: 0 20px !important;
  background-color: #545c64;
  color: white;
  line-height: 60px;
}

.el-aside {
  overflow-y: auto;
}

.el-main {
  padding: 0 !important;
  overflow: hidden;
}

/* 通用工具类 */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

/* 响应式断点 */
@media (max-width: 768px) {
  .el-header {
    padding: 0 10px !important;
  }
  
  .el-main {
    padding: 10px !important;
  }
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 动画效果 */
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.slide-enter-active, .slide-leave-active {
  transition: transform 0.3s;
}

.slide-enter, .slide-leave-to {
  transform: translateX(-100%);
}

/* 表单样式增强 */
.el-form-item__label {
  text-align: left !important;
}

.el-input__inner {
  width: 100% !important;
}

/* 按钮样式增强 */
.el-button {
  border-radius: 4px;
}

.el-button--primary {
  background-color: #409eff;
  border-color: #409eff;
}

.el-button--primary:hover {
  background-color: #66b1ff;
  border-color: #66b1ff;
}

/* 卡片样式 */
.el-card {
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

.el-card__header {
  padding: 18px 20px;
  border-bottom: 1px solid #ebeef5;
  background-color: #fafafa;
}

/* 表格样式 */
.el-table {
  border-radius: 4px;
}

.el-table th {
  background-color: #fafafa;
}

.el-table--border {
  border: 1px solid #ebeef5;
}

/* 消息提示样式 */
.el-message {
  border-radius: 4px;
}

.el-message--success {
  background-color: #f0f9ff;
  border-color: #b3d8ff;
}

.el-message--warning {
  background-color: #fdf6ec;
  border-color: #f5dab1;
}

.el-message--error {
  background-color: #fef0f0;
  border-color: #fbc4c4;
}

/* 加载状态 */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

/* 空状态 */
.empty-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #909399;
}

.empty-container .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-container .empty-text {
  font-size: 14px;
}

/* 错误状态 */
.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #f56c6c;
}

.error-container .error-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.error-container .error-text {
  font-size: 14px;
  text-align: center;
}

/* 隐藏类 */
.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* 文本省略 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 禁用选择 */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* 指针样式 */
.pointer {
  cursor: pointer;
}

.not-allowed {
  cursor: not-allowed;
}

