
/* TDesign Popup 内容包装器 */
.edit-content-wrapper[data-v-2b5ba58c] {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  background: white;
  overflow: hidden;
}

/* 编辑弹窗标题区域 */
.edit-modal-header[data-v-2b5ba58c] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 24rpx 32rpx;
  border-bottom: 1rpx solid #f0f0f0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.edit-modal-title[data-v-2b5ba58c] {
  font-size: 32rpx;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* 重新设计的设置按钮样式 */
.settings-button[data-v-2b5ba58c] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 4rpx;
  background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50rpx; /* 更加圆润的胶囊形状 */
  padding: 12rpx 24rpx;
  font-size: 26rpx;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4rpx 12rpx rgba(102, 126, 234, 0.3),
    0 2rpx 4rpx rgba(102, 126, 234, 0.2),
    inset 0 1rpx 0 rgba(255, 255, 255, 0.1);
  font-weight: 500;
  letter-spacing: 0.5rpx;
  position: relative;
  overflow: hidden;
  width: auto;
  height: auto;
}
.settings-button[data-v-2b5ba58c]:hover {
  -webkit-transform: translateY(-2rpx) scale(1.02);
          transform: translateY(-2rpx) scale(1.02);
  box-shadow: 
    0 8rpx 20rpx rgba(102, 126, 234, 0.4),
    0 4rpx 8rpx rgba(102, 126, 234, 0.3),
    inset 0 1rpx 0 rgba(255, 255, 255, 0.2);
}
.settings-button[data-v-2b5ba58c]:active {
  -webkit-transform: translateY(1rpx) scale(0.98);
          transform: translateY(1rpx) scale(0.98);
  box-shadow: 
    0 2rpx 8rpx rgba(102, 126, 234, 0.3),
    0 1rpx 4rpx rgba(102, 126, 234, 0.2),
    inset 0 1rpx 0 rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.settings-icon[data-v-2b5ba58c] {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.settings-button:hover .settings-icon[data-v-2b5ba58c] {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* 编辑弹窗内容区域 */
.edit-modal-body[data-v-2b5ba58c] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 16rpx 32rpx;
}

/* 编辑弹窗底部操作区域 */
.edit-modal-footer[data-v-2b5ba58c] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  gap: 16rpx;
  padding: 16rpx 32rpx 32rpx;
  border-top: 1rpx solid #f0f0f0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

/* 编辑表单样式 */
.edit-form[data-v-2b5ba58c] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 24rpx;
}

/* 表单分组卡片容器样式 */
.form-group-container[data-v-2b5ba58c] {
  background: -webkit-linear-gradient(315deg, #f0f8ff 0%, #e6f3ff 50%, #dbeafe 100%);
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 50%, #dbeafe 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 
    0 2px 8px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.form-group-container[data-v-2b5ba58c]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-linear-gradient(left, rgba(59, 130, 246, 0.6), rgba(29, 78, 216, 0.4), rgba(37, 99, 235, 0.6));
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(29, 78, 216, 0.4), rgba(37, 99, 235, 0.6));
  border-radius: 8px 8px 0 0;
}
.form-group-container[data-v-2b5ba58c]::after {
  content: '';
  position: absolute;
  top: 0.5px;
  left: 0.5px;
  right: 0.5px;
  bottom: 0.5px;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 7.5px;
  pointer-events: none;
}
.form-group-container[data-v-2b5ba58c]:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  box-shadow: 
    0 4px 12px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(59, 130, 246, 0.4);
  background: -webkit-linear-gradient(315deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}

/* 分组标题样式 */
.group-title[data-v-2b5ba58c] {
  font-size: 15px;
  background: -webkit-linear-gradient(315deg, #1d4ed8, #2563eb, #3b82f6);
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin: 0 0 6px 0;
  padding-bottom: 4px;
  border-bottom: 0.5px solid rgba(59, 130, 246, 0.3);
  text-shadow: 0 1px 3px rgba(59, 130, 246, 0.15);
  letter-spacing: 0.5px;
  position: relative;
}
.group-title[data-v-2b5ba58c]::after {
  content: '';
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 20px;
  height: 1px;
  background: -webkit-linear-gradient(left, rgba(59, 130, 246, 0.6), rgba(29, 78, 216, 0.4));
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(29, 78, 216, 0.4));
  border-radius: 0.5px;
}

/* 表单字段组基础样式 */
.edit-form-group[data-v-2b5ba58c] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8rpx;
}

/* 表单字段组行内样式：实现标签在左侧，输入框在右侧的布局 */
.edit-form-group.inline[data-v-2b5ba58c] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 12rpx;
  white-space: nowrap; /* 防止内容换行 */
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* 防止内容溢出 */
}

/* 表单字段标签样式：固定宽度，确保多个字段标签对齐 */
.edit-form-group.inline .edit-form-label[data-v-2b5ba58c] {
  min-width: 100rpx;
  width: 100rpx;
  text-align: right; /* 改为右对齐 */
  -webkit-align-self: flex-start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end; /* 确保文字在容器内右对齐 */
  -webkit-flex-shrink: 0;
          flex-shrink: 0; /* 防止标签在空间不足时收缩 */
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 16rpx; /* 与输入框内边距对齐，确保文字第一行对齐 */
  line-height: 1.2;
}

/* 表单字段标签基础样式 */
.edit-form-label[data-v-2b5ba58c] {
  font-size: 28rpx;
  color: #666;
  font-weight: 500;
  text-align: right; /* 改为右对齐 */
  line-height: 1.2;
}

/* 表单输入框样式：弹性布局，填充剩余空间 */
.edit-form-input[data-v-2b5ba58c] {
  padding: 14rpx 16rpx;
  border: 2rpx solid #e0e0e0;
  border-radius: 12rpx;
  font-size: 28rpx;
  color: #333;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1; /* 弹性布局，填充容器剩余空间 */
  box-sizing: border-box;
  min-width: 0; /* 允许输入框收缩以适应容器 */
  max-width: calc(100% - 120rpx); /* 确保不超出容器宽度 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.edit-form-input[data-v-2b5ba58c]:focus {
  outline: none;
  border-color: #1890ff;
  box-shadow: 0 0 0 4rpx rgba(24, 144, 255, 0.1);
}
.edit-form-input[data-v-2b5ba58c]::-webkit-input-placeholder {
  color: #bbb;
}
.edit-form-input[data-v-2b5ba58c]::-moz-placeholder {
  color: #bbb;
}
.edit-form-input[data-v-2b5ba58c]::placeholder {
  color: #bbb;
}

/* 只读输入框样式 */
.edit-form-input[readonly][data-v-2b5ba58c] {
  background-color: #f5f5f5;
  color: #666;
  cursor: not-allowed;
}

/* 编辑弹窗底部操作区域 */
.edit-modal-footer[data-v-2b5ba58c] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  gap: 16rpx;
  padding: 16rpx 32rpx 32rpx;
  border-top: 1rpx solid #f0f0f0;
}

/* 编辑弹窗按钮样式 */
.edit-modal-btn[data-v-2b5ba58c] {
  padding: 16rpx 32rpx;
  border-radius: 12rpx;
  font-size: 28rpx;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 2rpx solid transparent;
  min-width: 120rpx;
}
.edit-modal-btn.secondary[data-v-2b5ba58c] {
  background-color: #f5f5f5;
  color: #666;
  border-color: #e0e0e0;
}
.edit-modal-btn.secondary[data-v-2b5ba58c]:hover {
  background-color: #e8e8e8;
  border-color: #d0d0d0;
}
.edit-modal-btn.primary[data-v-2b5ba58c] {
  background: -webkit-linear-gradient(315deg, #1890ff, #40a9ff);
  background: linear-gradient(135deg, #1890ff, #40a9ff);
  color: white;
  border-color: #1890ff;
}
.edit-modal-btn.primary[data-v-2b5ba58c]:hover {
  background: -webkit-linear-gradient(315deg, #40a9ff, #1890ff);
  background: linear-gradient(135deg, #40a9ff, #1890ff);
  box-shadow: 0 4rpx 12rpx rgba(24, 144, 255, 0.3);
}

/* 出生日期选择器样式 */
.birth-date-input[data-v-2b5ba58c] {
  cursor: pointer;
  background-color: white;
}
.birth-date-input[data-v-2b5ba58c]:focus {
  cursor: pointer;
}

/* 移动端适配 */
@media (max-width: 768px) {
  /* 移动端保持横向排列，但优化间距和尺寸 */
.edit-form-group.inline[data-v-2b5ba58c] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    gap: 8rpx;
    width: 100%;
    max-width: 100%;
}
  
  /* 移动端表单字段标签样式：缩小宽度适应小屏幕 */
.edit-form-group.inline .edit-form-label[data-v-2b5ba58c] {
    width: 80rpx;
    min-width: 80rpx;
    font-size: 26rpx;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    padding-top: 14rpx; /* 移动端与输入框内边距对齐 */
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
}
  
  /* 移动端表单输入框样式：优化尺寸和间距 */
.edit-form-input[data-v-2b5ba58c] {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
            flex: 1;
    min-width: 0;
    max-width: calc(100% - 88rpx);
    padding: 12rpx 14rpx;
    font-size: 26rpx;
}
  
  /* 移动端表单分组卡片容器样式 */
.form-group-container[data-v-2b5ba58c] {
    padding: 16rpx 20rpx;
    gap: 12rpx;
    border-radius: 12rpx;
}
  
  /* 移动端分组标题样式 */
.group-title[data-v-2b5ba58c] {
    font-size: 26rpx;
}
  
  /* 移动端弹窗底部操作区域：调整为垂直排列 */
.edit-modal-footer[data-v-2b5ba58c] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
}
  
  /* 移动端弹窗按钮样式：适应移动端布局 */
.edit-modal-btn[data-v-2b5ba58c] {
    width: 100%;
}
}

/* 父亲信息容器样式 */
.father-container[data-v-2b5ba58c] {
  border: 2rpx solid rgba(148, 163, 184, 0.6);
  border-radius: 8rpx;
  padding: 12rpx 16rpx;
  background-color: white;
  margin-bottom: 16rpx;
  position: relative; /* 为删除角标定位做准备 */
  overflow: visible; /* 确保角标不会被裁剪 */
  isolation: isolate; /* 创建新的层叠上下文 */
}

/* 父亲字段容器样式 */
.father-fields-container[data-v-2b5ba58c] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8rpx;
}

/* 弧形删除角标样式 */
.delete-corner-badge[data-v-2b5ba58c] {
  position: absolute;
  top: 0;
  left: 0;
  width: 40rpx;
  height: 40rpx;
  background: -webkit-linear-gradient(315deg, #ff4d4f, #f5222d);
  background: linear-gradient(135deg, #ff4d4f, #f5222d);
  border-radius: 0 0 50% 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000; /* 极高z-index确保在最上层 */
  box-shadow: 2rpx 2rpx 6rpx rgba(0, 0, 0, 0.3);
  border: 2rpx solid white; /* 添加白色边框使其更明显 */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.delete-corner-badge[data-v-2b5ba58c]:hover {
  background: -webkit-linear-gradient(315deg, #ff7875, #ff4d4f);
  background: linear-gradient(135deg, #ff7875, #ff4d4f);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* 删除图标样式 */
.delete-icon[data-v-2b5ba58c] {
  color: white;
  font-size: 24rpx;
  font-weight: bold;
  text-shadow: 0 0 2rpx rgba(0, 0, 0, 0.5); /* 添加文字阴影使其更清晰 */
  line-height: 1;
}

/* 无关系人物信息提示样式 */
.no-parent-info[data-v-2b5ba58c] {
  text-align: center;
  padding: 20rpx;
  color: #999;
  font-size: 26rpx;
}
.no-parent-info p[data-v-2b5ba58c] {
  margin: 0;
}


.bill-modal[data-v-27f1ca5d] {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  background: -webkit-linear-gradient(315deg, #f5f7fa 0%, #c3cfe2 100%);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.modal-header[data-v-27f1ca5d] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 20px;
  background: white;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.modal-header h2[data-v-27f1ca5d] {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bill-list[data-v-27f1ca5d] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #667eea #f5f7fa;
}

/* Webkit浏览器滚动条样式 */
.bill-list[data-v-27f1ca5d]::-webkit-scrollbar {
  width: 6px;
}
.bill-list[data-v-27f1ca5d]::-webkit-scrollbar-track {
  background: #f5f7fa;
  border-radius: 10px;
}
.bill-list[data-v-27f1ca5d]::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
}
.bill-list[data-v-27f1ca5d]::-webkit-scrollbar-thumb:hover {
  background: #764ba2;
}
.article-title-section[data-v-27f1ca5d] {
  padding: 0;
  text-align: left;
}
.article-title[data-v-27f1ca5d] {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-meta-info[data-v-27f1ca5d] {
  padding: 15px 0;
}
.date-info[data-v-27f1ca5d] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.date-item[data-v-27f1ca5d] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 8px;
}
.date-label[data-v-27f1ca5d] {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
  white-space: nowrap;
  min-width: 40px;
}
.date-value[data-v-27f1ca5d] {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.tags-section[data-v-27f1ca5d] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.tag-item[data-v-27f1ca5d] {
  background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}
.article-content[data-v-27f1ca5d] {
  padding: 0;
}
.article-text[data-v-27f1ca5d] {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  white-space: pre-wrap;
  text-align: justify;
}

/* 混合内容样式 */
.article-content-mixed[data-v-27f1ca5d] {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.content-item[data-v-27f1ca5d] {
  width: 100%;
}
.text-content[data-v-27f1ca5d] {
  padding: 0;
}
.text-content .article-text[data-v-27f1ca5d] {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  white-space: pre-wrap;
  text-align: justify;
  word-break: break-word;
}
.empty-content[data-v-27f1ca5d] {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 1rem;
}
.empty-content p[data-v-27f1ca5d] {
  margin: 0;
}

/* 加载状态样式 */
.loading-state[data-v-27f1ca5d] {
  text-align: center;
  padding: 40px 20px;
  color: #667eea;
  font-size: 1rem;
}
.loading-state p[data-v-27f1ca5d] {
  margin: 0;
  font-weight: 500;
}

/* 九宫格图片展示 */
.image-gallery[data-v-27f1ca5d] {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.image-item[data-v-27f1ca5d] {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.image-item[data-v-27f1ca5d]:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.image-item img[data-v-27f1ca5d] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-gallery[data-v-27f1ca5d] {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.image-item[data-v-27f1ca5d] {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.image-item[data-v-27f1ca5d]:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.image-item img[data-v-27f1ca5d] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 编辑悬浮按钮样式 */
.edit-float-btn[data-v-27f1ca5d] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1002;
}

/* 图片预览弹窗样式 */
.image-preview-modal[data-v-27f1ca5d] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  max-height: 90vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.preview-header[data-v-27f1ca5d] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}
.preview-header h3[data-v-27f1ca5d] {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.preview-content[data-v-27f1ca5d] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 20px;
  position: relative;
}
.preview-image[data-v-27f1ca5d] {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}
.image-counter[data-v-27f1ca5d] {
  position: absolute;
  bottom: 10px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
}
.preview-footer[data-v-27f1ca5d] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}
.preview-footer .t-button[data-v-27f1ca5d] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  margin: 0 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
.bill-modal[data-v-27f1ca5d] {
    height: 100vh;
}
.modal-header[data-v-27f1ca5d] {
    padding: 15px;
}
.modal-header h2[data-v-27f1ca5d] {
    font-size: 1.2rem;
}
.bill-list[data-v-27f1ca5d] {
    padding: 15px;
    gap: 15px;
}
.article-title[data-v-27f1ca5d] {
    font-size: 1.2rem;
}
.article-meta-info[data-v-27f1ca5d] {
    padding: 12px 0;
}
.date-info[data-v-27f1ca5d] {
    margin-bottom: 12px;
}
.date-label[data-v-27f1ca5d] {
    font-size: 0.8rem;
}
.date-value[data-v-27f1ca5d] {
    font-size: 0.9rem;
}
.tag-item[data-v-27f1ca5d] {
    font-size: 0.8rem;
    padding: 3px 10px;
}
.article-text[data-v-27f1ca5d] {
    font-size: 0.9rem;
}
.image-gallery[data-v-27f1ca5d] {
    gap: 8px;
}
.preview-header[data-v-27f1ca5d] {
    padding: 12px 15px;
}
.preview-header h3[data-v-27f1ca5d] {
    font-size: 1.1rem;
}
.preview-content[data-v-27f1ca5d] {
    padding: 15px;
}
.preview-footer[data-v-27f1ca5d] {
    padding: 15px;
}
.text-content .article-text[data-v-27f1ca5d] {
    font-size: 0.9rem;
}
.content-item[data-v-27f1ca5d] {
    margin-bottom: 10px;
}
.image-gallery[data-v-27f1ca5d] {
    gap: 8px;
}
  
  /* 移动端调整编辑按钮位置 */
.edit-float-btn[data-v-27f1ca5d] {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
            min-width: 50px;
}
}


/* 自定义弹窗蒙层样式，符合项目层级标准 */
[data-v-5fdc3e79] .t-popup__overlay {
  background-color: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  z-index: 29999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  -webkit-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
  -webkit-transition-property: opacity, -webkit-backdrop-filter !important;
  transition-property: opacity, -webkit-backdrop-filter !important;
  transition-property: opacity, backdrop-filter !important;
  transition-property: opacity, backdrop-filter, -webkit-backdrop-filter !important;
}

/* 确保弹窗内容在合适层级 */
[data-v-5fdc3e79] .t-popup__content {
  position: relative;
  z-index: 30001 !important;
  -webkit-transition: -webkit-transform 300ms ease-in-out !important;
  transition: -webkit-transform 300ms ease-in-out !important;
  transition: transform 300ms ease-in-out !important;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out !important;
}

/* 确保整个弹窗容器的z-index */
[data-v-5fdc3e79] .t-popup {
  z-index: 30000 !important;
}

/* 拖拽指示器样式 */
.drag-indicator[data-v-5fdc3e79] {
  width: 40px;
  height: 4px;
  background: #d1d5db;
  border-radius: 2px;
  margin: 8px auto 0 auto;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.drag-indicator[data-v-5fdc3e79]:hover {
  background: #9ca3af;
}
.bill-modal[data-v-5fdc3e79] {
  height: 80vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  background: -webkit-linear-gradient(315deg, #f5f7fa 0%, #c3cfe2 100%);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: opacity 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
.modal-header[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 12px 20px 20px 20px;
  background: white;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.modal-header h2[data-v-5fdc3e79] {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}
.bill-list[data-v-5fdc3e79] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #667eea #f5f7fa;
}

/* Webkit浏览器滚动条样式 */
.bill-list[data-v-5fdc3e79]::-webkit-scrollbar {
  width: 6px;
}
.bill-list[data-v-5fdc3e79]::-webkit-scrollbar-track {
  background: #f5f7fa;
  border-radius: 10px;
}
.bill-list[data-v-5fdc3e79]::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
}
.bill-list[data-v-5fdc3e79]::-webkit-scrollbar-thumb:hover {
  background: #764ba2;
}
.person-info-card[data-v-5fdc3e79] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: -webkit-linear-gradient(315deg, #a8edea 0%, #fed6e3 100);
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100);
}
.person-header[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 20px;
  background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.avatar[data-v-5fdc3e79] {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.square-avatar[data-v-5fdc3e79] {
  border-radius: 12px;
}
.avatar img[data-v-5fdc3e79] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.default-avatar[data-v-5fdc3e79] {
  width: 100%;
  height: 100%;
  background: #667eea;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.default-avatar svg[data-v-5fdc3e79] {
  width: 70%;
  height: 70%;
}
.person-basic-info[data-v-5fdc3e79] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
}
.person-name[data-v-5fdc3e79] {
  margin: 0 0 5px 0;
  font-size: 1.3rem;
  font-weight: bold;
}
.person-relation[data-v-5fdc3e79] {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}
.person-details[data-v-5fdc3e79] {
  padding: 15px 20px;
  background: #f9f9f9;
}
.detail-item[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.detail-item[data-v-5fdc3e79]:last-child {
  margin-bottom: 0;
}
.label[data-v-5fdc3e79] {
  font-weight: bold;
  color: #666;
  font-size: 0.9rem;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: auto;
  min-width: 40px;
  padding-right: 10px;
  text-align: left;
}
.value[data-v-5fdc3e79] {
  color: #333;
  font-size: 0.9rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  text-align: right;
  word-break: break-all;
  overflow-wrap: break-word;
}

/* 搜索栏样式 */
.search-bar[data-v-5fdc3e79] {
  margin-bottom: 15px;
}
.search-input[data-v-5fdc3e79] {
  width: 100%;
}

/* 筛选提示样式 */
.filter-tip[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 4px 8px;
  background: #f0f7ff;
  border: 1px solid #d4ebf8;
  border-radius: 4px;
  font-size: 12px;
}
.filter-label[data-v-5fdc3e79] {
  color: #666;
}
.filter-value[data-v-5fdc3e79] {
  color: #1890ff;
  font-weight: 500;
}

/* 成员卡片样式 */
.member-card[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  margin-bottom: 10px;
}
.member-card[data-v-5fdc3e79]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}
.member-card[data-v-5fdc3e79]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-linear-gradient(left, #667eea, #764ba2);
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 12px 12px 0 0;
}
.member-avatar[data-v-5fdc3e79] {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
  margin-right: 15px;
  background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.default-avatar[data-v-5fdc3e79] {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.avatar-text[data-v-5fdc3e79] {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}
.member-info[data-v-5fdc3e79] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
}
.member-name[data-v-5fdc3e79] {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}
.member-details[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
}
.member-gender[data-v-5fdc3e79] {
  padding: 2px 8px;
  background: #e8f4fd;
  color: #1890ff;
  border-radius: 10px;
  font-weight: 500;
}
.member-relation[data-v-5fdc3e79] {
  padding: 2px 8px;
  background: #f6f6f6;
  color: #666;
  border-radius: 10px;
}
.member-relation[data-v-5fdc3e79] {
  padding: 2px 8px;
  background: #f6f6f6;
  color: #666;
  border-radius: 10px;
}
.member-surname[data-v-5fdc3e79] {
  padding: 2px 8px;
  background: #f0f9ff;
  color: #0ea5e9;
  border-radius: 10px;
}
.member-status[data-v-5fdc3e79] {
  padding: 2px 8px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 10px;
  font-weight: 500;
}
.select-indicator[data-v-5fdc3e79] {
  width: 24px;
  height: 24px;
  color: #667eea;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.avatar-img[data-v-5fdc3e79] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.loading-state[data-v-5fdc3e79] {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.loading-state p[data-v-5fdc3e79] {
  color: #666;
  font-size: 1rem;
  margin: 0;
}
.loading-more[data-v-5fdc3e79] {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin-top: 10px;
}
.loading-more p[data-v-5fdc3e79] {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}
.no-more-data[data-v-5fdc3e79] {
  text-align: center;
  padding: 20px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 8px;
  margin-top: 10px;
}
.no-more-data p[data-v-5fdc3e79] {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

/* 操作栏样式 */
.action-bar[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  padding: 0 5px 15px 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.search-input[data-v-5fdc3e79] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
}
.add-btn[data-v-5fdc3e79] {
  border-radius: 8px;
  font-weight: bold;
  color: white;
  background: -webkit-linear-gradient(315deg, #51cf66 0%, #37b24d 100%);
  background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
  border: none;
  box-shadow: 0 2px 8px rgba(81, 207, 102, 0.3);
  white-space: nowrap;
}

/* 文章卡片样式 */
.article-card[data-v-5fdc3e79] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.article-card[data-v-5fdc3e79]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}
.article-card[data-v-5fdc3e79]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-linear-gradient(left, #667eea, #764ba2);
  background: linear-gradient(90deg, #667eea, #764ba2);
}
.article-header[data-v-5fdc3e79] {
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid #eee;
}
.article-title[data-v-5fdc3e79] {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-body[data-v-5fdc3e79] {
  padding: 15px 20px 20px 20px;
}
.article-summary[data-v-5fdc3e79] {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta[data-v-5fdc3e79] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 0.8rem;
  color: #999;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}
.article-date[data-v-5fdc3e79] {
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.article-date[data-v-5fdc3e79]::before {
  content: '📅';
  margin-right: 5px;
}
.article-category[data-v-5fdc3e79] {
  background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}
.article-category[data-v-5fdc3e79]::before {
  content: '#';
  margin-right: 3px;
}
.empty-state[data-v-5fdc3e79] {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.empty-state p[data-v-5fdc3e79] {
  color: #999;
  font-size: 1.1rem;
  margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
.drag-indicator[data-v-5fdc3e79] {
    width: 36px;
    height: 3px;
    margin: 6px auto 0 auto;
}
.bill-modal[data-v-5fdc3e79] {
    height: 85vh;
    border-radius: 16px 16px 0 0;
}
.modal-header[data-v-5fdc3e79] {
    padding: 8px 15px 16px 15px;
}
.modal-header h2[data-v-5fdc3e79] {
    font-size: 1.2rem;
}
.bill-list[data-v-5fdc3e79] {
    padding: 15px;
    gap: 12px;
}
.action-bar[data-v-5fdc3e79] {
    padding: 0 0 12px 0;
}
.article-header[data-v-5fdc3e79] {
    padding: 15px 15px 8px 15px;
}
.article-title[data-v-5fdc3e79] {
    font-size: 1rem;
}
.article-body[data-v-5fdc3e79] {
    padding: 12px 15px 15px 15px;
}
.article-summary[data-v-5fdc3e79] {
    font-size: 0.85rem;
    margin: 0 0 12px 0;
}
.article-meta[data-v-5fdc3e79] {
    font-size: 0.75rem;
    padding-top: 8px;
}
.person-info-card[data-v-5fdc3e79] {
    margin-bottom: 12px;
}
.person-header[data-v-5fdc3e79] {
    padding: 16px;
}
.person-details[data-v-5fdc3e79] {
    padding: 12px 16px;
}
}

.read-modal[data-v-59662a79]{height:100vh;background-color:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;overflow:hidden;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:100%}.read-modal .modal-header[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:12px 16px;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.06);position:fixed;top:0;z-index:1001;width:100%;max-width:1000px;margin:0 auto;box-sizing:border-box}.read-modal .modal-header h2[data-v-59662a79]{font-size:18px;font-weight:600;color:#000;-webkit-box-flex:1;-webkit-flex:1;flex:1;text-align:center;padding:0 16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.read-modal .modal-content[data-v-59662a79]{-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow-y:auto;padding:0;background-color:#fff;margin:8px auto 0;border-radius:8px;box-shadow:0 2px 12px rgba(0,0,0,.04);width:100%;max-width:1000px;box-sizing:border-box}.read-modal .modal-content .loading-state[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:200px;text-align:center;margin:0 auto}.read-modal .modal-content .loading-state p[data-v-59662a79]{margin-top:12px;font-size:14px;color:#666}.read-modal .modal-content .article-content .article-title[data-v-59662a79]{text-align:center;margin:0px auto 0;padding:0 0 10px 0;border-radius:8px;font-size:20px;font-weight:600;color:#333}.read-modal .modal-content .article-content .date-section[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;gap:15px;padding:8px 0;border-bottom:1px solid #f0f0f0;margin-bottom:12px;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.read-modal .modal-content .article-content .date-section .date-item[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;gap:4px}.read-modal .modal-content .article-content .date-section .date-item .date-icon[data-v-59662a79]{font-size:14px;color:#666}.read-modal .modal-content .article-content .date-section .date-item .date-label[data-v-59662a79]{font-size:12px;color:#666;font-weight:500}.read-modal .modal-content .article-content .date-section .date-item .date-value[data-v-59662a79]{font-size:12px;color:#333;font-weight:500}.read-modal .modal-content .article-content .tags-section[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;gap:10px;margin-bottom:15px;padding-bottom:12px;border-bottom:1px solid #f0f0f0;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.read-modal .modal-content .article-content .tags-section .tag-item[data-v-59662a79]{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background-color:#f0f7ff;border:1px solid #d0e6ff;border-radius:16px;padding:4px 12px;gap:4px}.read-modal .modal-content .article-content .tags-section .tag-item .tag-icon[data-v-59662a79]{font-size:14px;color:#4d9cff}.read-modal .modal-content .article-content .tags-section .tag-item .tag-text[data-v-59662a79]{font-size:13px;color:#4d9cff;font-weight:500}.read-modal .modal-content .article-content .content-section .text-item[data-v-59662a79]{margin-bottom:24px;line-height:1.8;font-size:16px;color:#333;word-wrap:break-word;text-align:justify;width:100%;box-sizing:border-box}.read-modal .modal-content .article-content .content-section .text-item .content-icon[data-v-59662a79]{display:none}.read-modal .modal-content .article-content .content-section .text-item p[data-v-59662a79]{margin:0;line-height:1.8;font-size:16px;color:#333;text-align:justify}.read-modal .modal-content .article-content .content-section .text-item p[data-v-59662a79]:first-child{margin-top:0}.read-modal .modal-content .article-content .content-section .text-item p[data-v-59662a79]:last-child{margin-bottom:0}.read-modal .modal-content .article-content .content-section .image-item-wrapper[data-v-59662a79]{margin-bottom:24px;text-align:center;width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.read-modal .modal-content .article-content .content-section .image-item-wrapper .image-item[data-v-59662a79]{display:inline-block;max-width:100%;width:100%;border-radius:8px;overflow:hidden;box-shadow:0 4px 12px rgba(0,0,0,.08);cursor:pointer;-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease, -webkit-transform .2s ease;box-sizing:border-box}.read-modal .modal-content .article-content .content-section .image-item-wrapper .image-item[data-v-59662a79]:hover{-webkit-transform:scale(1.02);transform:scale(1.02)}.read-modal .modal-content .article-content .content-section .image-item-wrapper .image-item img[data-v-59662a79]{max-width:100%;width:100%;height:auto;display:block;border-radius:8px;object-fit:contain;box-sizing:border-box}.read-modal .modal-content .article-content .empty-state[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:300px;text-align:center;margin:0 auto}.read-modal .modal-content .article-content .empty-state .empty-icon[data-v-59662a79]{font-size:48px;color:#ccc;margin-bottom:16px}.read-modal .modal-content .article-content .empty-state p[data-v-59662a79]{font-size:16px;color:#999}.image-preview-modal[data-v-59662a79]{background-color:#fff;border-radius:12px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,.12);max-width:90%;width:100%;margin:0 auto}.image-preview-modal .preview-header[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16px;border-bottom:1px solid #f0f0f0}.image-preview-modal .preview-header h3[data-v-59662a79]{margin:0;font-size:18px;font-weight:600;color:#333}.image-preview-modal .preview-content[data-v-59662a79]{position:relative;padding:20px;text-align:center;max-height:70vh;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.image-preview-modal .preview-content .preview-image[data-v-59662a79]{max-width:100%;max-height:60vh;width:auto;height:auto;border-radius:8px;box-shadow:0 4px 16px rgba(0,0,0,.1);object-fit:contain;display:block;margin:0 auto}.image-preview-modal .preview-content .image-counter[data-v-59662a79]{position:absolute;bottom:12px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:rgba(0,0,0,.6);color:#fff;padding:4px 12px;border-radius:12px;font-size:14px}.image-preview-modal .preview-footer[data-v-59662a79]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:16px;gap:12px}.image-preview-modal .preview-footer button[data-v-59662a79]{-webkit-box-flex:1;-webkit-flex:1;flex:1}@media(max-width: 768px){.read-modal[data-v-59662a79]{padding:0 10px}.read-modal .modal-header[data-v-59662a79]{padding:12px 10px;margin:0 auto}.read-modal .modal-content[data-v-59662a79]{margin:8px auto 0;padding:0px 15px;border-radius:8px}.read-modal .modal-content .article-content .date-section[data-v-59662a79]{gap:8px;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:8px 0;margin-bottom:12px}.read-modal .modal-content .article-content .tags-section[data-v-59662a79]{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.read-modal .modal-content .article-content .content-section .text-item[data-v-59662a79]{font-size:15px;margin-bottom:20px}.read-modal .modal-content .article-content .content-section .image-item-wrapper[data-v-59662a79]{margin-bottom:20px}.read-modal .modal-content .article-content .content-section .image-item-wrapper .image-item img[data-v-59662a79]{max-width:100%;width:100%;height:auto}.read-modal .modal-content .article-content .date-item .date-icon[data-v-59662a79]{font-size:12px}.read-modal .modal-content .article-content .date-item .date-label[data-v-59662a79]{font-size:11px}.read-modal .modal-content .article-content .date-item .date-value[data-v-59662a79]{font-size:11px}}
.user-role-detail-modal[data-v-062f4b41]{background:#fff;height:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.modal-header[data-v-062f4b41]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:15px 20px;background:#fff;color:#333;border-bottom:1px solid #eee;-webkit-flex-shrink:0;flex-shrink:0}.modal-header h2[data-v-062f4b41]{margin:0;font-size:1.4rem;font-weight:bold;-webkit-box-flex:1;-webkit-flex:1;flex:1;text-align:center}.header-placeholder[data-v-062f4b41]{display:none}.t-button{font-weight:normal}.drag-indicator[data-v-062f4b41]{display:none}.modal-body[data-v-062f4b41]{padding:20px;-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow-y:auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;gap:20px}.user-info[data-v-062f4b41]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;gap:15px;padding:15px;background:#f8f9ff;border-radius:10px;box-shadow:0 2px 8px rgba(102,126,234,.1)}.avatar[data-v-062f4b41]{width:60px;height:60px;border-radius:50%;overflow:hidden;-webkit-flex-shrink:0;flex-shrink:0}.avatar img[data-v-062f4b41]{width:100%;height:100%;object-fit:cover}.user-details[data-v-062f4b41]{-webkit-box-flex:1;-webkit-flex:1;flex:1}.user-name[data-v-062f4b41]{font-size:1.2rem;font-weight:bold;color:#333;margin-bottom:5px}.user-id[data-v-062f4b41]{font-size:.9rem;color:#666}.role-list[data-v-062f4b41]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;gap:15px}.role-item[data-v-062f4b41]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:15px;background:#fff;border-radius:10px;box-shadow:0 2px 10px rgba(0,0,0,.05);border:1px solid #eee}.role-info[data-v-062f4b41]{-webkit-box-flex:1;-webkit-flex:1;flex:1}.role-name[data-v-062f4b41]{font-size:1rem;font-weight:bold;color:#333;margin-bottom:3px}.role-desc[data-v-062f4b41]{font-size:.85rem;color:#666}.empty-state[data-v-062f4b41]{text-align:center;padding:40px 20px;color:#999;font-size:1rem}@media(max-width: 768px){.modal-header[data-v-062f4b41]{padding:12px 15px}.modal-header h2[data-v-062f4b41]{font-size:1.2rem}.modal-body[data-v-062f4b41]{padding:15px;gap:15px}.user-info[data-v-062f4b41]{padding:12px;gap:12px}.avatar[data-v-062f4b41]{width:50px;height:50px}.user-name[data-v-062f4b41]{font-size:1.1rem}.role-item[data-v-062f4b41]{padding:12px}.role-name[data-v-062f4b41]{font-size:.95rem}}.modal-footer[data-v-062f4b41]{padding:20px;border-top:1px solid #eee;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;gap:10px}.modal-footer .kick-button[data-v-062f4b41]{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:44px;font-size:16px;background-color:#e54545;color:#fff;border:none}.modal-footer .kick-button[data-v-062f4b41]:hover{background-color:#d43838}.modal-footer .transfer-button[data-v-062f4b41]{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:44px;font-size:16px;background-color:#007aff;color:#fff;border:none}.modal-footer .transfer-button[data-v-062f4b41]:hover{background-color:#0062cc}

.knowledge-map[data-v-5709b5da] {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.chart-header[data-v-5709b5da] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.chart-controls button[data-v-5709b5da] {
  margin-left: 10px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  cursor: pointer;
}
.chart-container[data-v-5709b5da] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  background: #f5f5f5;
}

