
/* Vant 风格移动端样式 */
.mobile-header-vant[data-v-770f3d02] {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
}
.mobile-footer[data-v-770f3d02] {
  padding: 8px 0 0;
}
.mobile-nav-bar[data-v-770f3d02] {
  display: flex;
  align-items: center;
  padding: 12px 0px 12px 0px;
  height: 44px;
  margin-top: 8px;
}

/* 返回图标圆形背景 */
.nav-back-icon-wrapper[data-v-770f3d02] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--control-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.nav-back-icon-wrapper[data-v-770f3d02]:hover {
  background-color: var(--bg-hover);
}
.nav-back-icon[data-v-770f3d02] {
  font-size: 22px;
  color: #323233;
}
.nav-title[data-v-770f3d02] {
  font-size: 20px;
  font-weight: bold;
  color: #323233;
  cursor: pointer;
  margin-left: 4px;
  flex: 1; /* 让标题占据剩余空间，将搜索按钮推到右侧 */
}
.search-btn-text[data-v-770f3d02] {
  color: #1989fa;
  font-size: 14px;
  font-weight: 500;
}

/* 分类滑动栏样式 */
.category-slider[data-v-770f3d02] {
  display: flex;
  overflow-x: auto;
  padding: 4px 18px;
  margin: 0 -18px;
  gap: 12px;
  -webkit-overflow-scrolling: touch; /* 平滑滚动 */
  scrollbar-width: none; /* Firefox 隐藏滚动条 */
}
.category-slider[data-v-770f3d02]::-webkit-scrollbar {
  display: none; /* Chrome/Safari 隐藏滚动条 */
}
.category-card[data-v-770f3d02] {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #f2f3f5;
  border-radius: 20px;
  font-size: 14px; /* 统一文字大小 */
  color: #323233;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.category-card[data-v-770f3d02]:active {
  transform: scale(0.95);
}

/* 选中状态样式 */
.category-card.active[data-v-770f3d02] {
  background: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.category-icon[data-v-770f3d02] {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.category-card.active .category-icon[data-v-770f3d02] {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* 暗黑模式适配 */
@media (prefers-color-scheme: dark) {
.nav-back-icon-wrapper[data-v-770f3d02] {
    background-color: #2c2c2e;
}
.nav-back-icon-wrapper[data-v-770f3d02]:hover {
    background-color: #3a3a3c;
}
.nav-back-icon[data-v-770f3d02] {
    filter: brightness(0) invert(1);
}
.nav-title[data-v-770f3d02] {
    color: #e5e5e7;
}
.category-card[data-v-770f3d02] {
    background: #2c2c2e;
    color: #e5e5e7;
}
.category-card.active[data-v-770f3d02] {
    background: #ffffff !important;
    color: #000000 !important;
}
.category-card.active .category-icon[data-v-770f3d02] {
    filter: brightness(0);
}
}
.category-name[data-v-770f3d02] {
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px; /* 统一文字大小 */
}
.top-bar[data-v-770f3d02] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: var(--bg-primary);
  z-index: 100;
  padding-top: 8px;
}

/* Mobile Redesign Styles */
.top-bar.mobile-redesign[data-v-770f3d02] {
  flex-direction: column;
  height: auto;
  padding: 0;
  align-items: stretch;
  background: var(--bg-primary); /* Assume match background or specific color */
}
.mobile-header-row[data-v-770f3d02] {
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
}
.back-btn[data-v-770f3d02] {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  cursor: pointer;
}
.mobile-title[data-v-770f3d02] {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}
.mobile-search-row[data-v-770f3d02] {
  margin-top: 8px;
}
.fake-search-box[data-v-770f3d02] {
  background: var(--input-bg); /* Use input background color */
  border-radius: 20px; /* Rounded corners */
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  border: 1px solid var(--border-secondary);
}
.search-icon-small[data-v-770f3d02] {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  margin-right: 8px;
}
.placeholder-text[data-v-770f3d02] {
  color: var(--text-secondary);
  font-size: 14px;
}
.left-section[data-v-770f3d02] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.desktop-footer[data-v-770f3d02] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img[data-v-770f3d02] {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.logo-img[data-v-770f3d02]:hover {
  opacity: 0.7;
}
.logo-text[data-v-770f3d02] {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: opacity 0.2s;
}
.logo-text[data-v-770f3d02]:hover {
  opacity: 0.7;
}
.right-section[data-v-770f3d02] {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  padding-top: 4px;
}
.desktop-slot-wrapper[data-v-770f3d02] {
  margin-left: 12px;
}
.mobile-slot-wrapper[data-v-770f3d02] {
  margin-left: auto;
}
.search-bar[data-v-770f3d02] {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 4px;
}
.search-bar input[data-v-770f3d02] {
  width: 340px;
  height: 36px;
  padding: 0 36px 0 36px;
  border: none;
  background: var(--input-bg);
  border-radius: 18px;
  outline: none;
  margin-left: 20px;
  margin-top: 0;
  color: var(--text-primary);
}
.search-bar[data-v-770f3d02]::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 8px;
  width: 20px;
  height: 20px;
  background-image: url(/static/img/ic_public_input_search.1c969537.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.clear-btn[data-v-770f3d02] {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.clear-btn[data-v-770f3d02]:hover {
  opacity: 1;
}
.suggestions-list[data-v-770f3d02] {
  position: absolute;
  top: 100%;
  left: 20px;
  right: 0;
  background: var(--suggestion-bg);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-medium);
  margin-top: 4px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
}
.suggestion-item[data-v-770f3d02] {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  color: var(--text-primary);
}
.suggestion-item[data-v-770f3d02]:hover {
  background-color: var(--suggestion-hover-bg);
}
.settings-btn-wrapper[data-v-770f3d02] {
  position: relative;
}
.settings-btn[data-v-770f3d02] {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-secondary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  transition: background-color 0.2s;
}
.settings-btn[data-v-770f3d02]:hover {
  background: var(--bg-hover);
}
.settings-btn img[data-v-770f3d02] {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.settings-btn:hover img[data-v-770f3d02] {
  opacity: 1;
}

/* 设置表单样式 */
.settings-form[data-v-770f3d02] {
  padding: 20px;
}
.setting-item[data-v-770f3d02] {
  margin-bottom: 24px;
}
.setting-label[data-v-770f3d02] {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 500;
}

/* 设置提示弹窗样式 */
.custom-tooltip[data-v-770f3d02] {
  position: absolute;
  top: 100%;
  right: 0;
  background: #000000;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  margin-top: 8px;
  white-space: nowrap;
  pointer-events: none;
}
.tooltip-arrow[data-v-770f3d02] {
  position: absolute;
  top: -6px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: #000000;
  transform: rotate(45deg);
  z-index: -1;
}
.tooltip-content[data-v-770f3d02] {
  font-size: 12px;
  color: #ffffff;
}

/* 移动端样式 */
.top-bar.mobile[data-v-770f3d02] {
  padding: 0 18px;
}
.menu-btn[data-v-770f3d02] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--control-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-right: 12px;
}
.menu-btn[data-v-770f3d02]:hover {
  background-color: var(--bg-hover);
}
.mobile-title[data-v-770f3d02] {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: opacity 0.2s;
}
.mobile-title[data-v-770f3d02]:hover {
  opacity: 0.7;
}
.search-icon[data-v-770f3d02] {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--control-bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  transition: background-color 0.2s;
}
.search-icon[data-v-770f3d02]:hover {
  background-color: var(--bg-hover);
}
.search-icon img[data-v-770f3d02] {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.search-icon:hover img[data-v-770f3d02] {
  opacity: 1;
}


.status-info[data-v-4671ccae] {
  display: flex;
  flex-direction: column;
}
.timer[data-v-4671ccae] {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}
.global-ffmpeg-progress[data-v-4671ccae] {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999; /* Increased z-index to ensure it's above everything including modals */
  width: 90%;
  max-width: 400px;
  pointer-events: none;
  animation: slideDown-4671ccae 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother animation */
}
@keyframes slideDown-4671ccae {
from {
    opacity: 0;
    transform: translate(-50%, -30px);
}
to {
    opacity: 1;
    transform: translate(-50%, 0);
}
}
.progress-box[data-v-4671ccae] {
  background: rgba(255, 255, 255, 0.98); /* Slightly more opaque */
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.1); /* Richer shadow */
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
.global-ffmpeg-progress[data-v-4671ccae] {
    top: 20px; /* Higher on mobile */
    width: 95%;
}
}
.progress-header[data-v-4671ccae] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.title-section[data-v-4671ccae] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.loading-title[data-v-4671ccae] {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.spinner[data-v-4671ccae] {
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0052d9;
  border-radius: 50%;
  animation: spin-4671ccae 1s linear infinite;
}
@keyframes spin-4671ccae {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.percentage[data-v-4671ccae] {
  font-size: 14px;
  font-weight: 700;
  color: #0052d9;
  font-variant-numeric: tabular-nums;
}
.progress-bar-bg[data-v-4671ccae] {
  height: 6px;
  background-color: #f0f2f5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar-fill[data-v-4671ccae] {
  height: 100%;
  background: linear-gradient(90deg, #0052d9, #0077fa);
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 4px rgba(0, 82, 217, 0.3);
}
.loading-hint[data-v-4671ccae] {
  font-size: 12px;
  color: #666;
  margin: 0;
  text-align: left;
}


.tool-bottom-bar[data-v-da8d231c] {
  width: 100%;
  min-height: 44px;
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background: #ffffff; */
  box-sizing: border-box;
}
.link-row[data-v-da8d231c] {
  display: flex;
  align-items: center;
  gap: 4px;
    margin-top: 4px;
  margin-bottom: 4px;
}
.link-text[data-v-da8d231c] {
  font-size: 14px;
  color: #2f7dff;
  text-decoration: none;
  line-height: 1;
}
.divider[data-v-da8d231c] {
  font-size: 14px;
  color: #999;
}
.footer-text[data-v-da8d231c] {
  display: flex;
  align-items: center;
}
.provider-text[data-v-da8d231c] {
  font-size: 15px;
  color: #666;
  line-height: 1;
}
.action-text[data-v-da8d231c] {
  font-size: 15px;
  color: #2f7dff;
  line-height: 1;
  cursor: pointer;
}
.agreement-content[data-v-da8d231c] {
  max-height: 75vh;
  overflow-y: auto;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.agreement-content p[data-v-da8d231c] {
  margin-bottom: 10px;
  text-align: justify;
}
.agreement-content p[data-v-da8d231c]:last-child {
  margin-bottom: 0;
}
.agreement-content h3[data-v-da8d231c] {
  font-size: 16px;
  margin: 16px 0 8px;
  color: #2979ff;
}
.agreement-content ul[data-v-da8d231c] {
  padding-left: 20px;
  margin-bottom: 16px;
}
.agreement-content li[data-v-da8d231c] {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}
.agreement-content .meta[data-v-da8d231c] {
  text-align: center;
  color: #999;
  font-size: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.agreement-content strong[data-v-da8d231c] {
  font-weight: 600;
  color: #333;
}
.agreement-content h4[data-v-da8d231c] {
  font-size: 14px;
  margin: 12px 0 6px;
  color: #333;
  font-weight: 600;
}
.agreement-content .table-container[data-v-da8d231c] {
  margin: 12px 0;
  overflow-x: auto;
}
.agreement-content table[data-v-da8d231c] {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 12px;
}
.agreement-content th[data-v-da8d231c], .agreement-content td[data-v-da8d231c] {
  border: 1px solid #eee;
  padding: 6px;
  text-align: left;
}
.agreement-content th[data-v-da8d231c] {
  background: #f7f8fa;
  color: #333;
  font-weight: 600;
}
.agreement-content td[data-v-da8d231c] {
  color: #555;
}


.segment-button-container[data-v-7d149b86] {
  width: 100%;
  height: 42px; /* 38 + 2 * edgeSpace */
}
.segment-button[data-v-7d149b86] {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--control-bg);
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 2px;
}
.slider-background[data-v-7d149b86] {
  position: absolute;
  height: 38px;
  background-color: white;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
  top: 2px;
}
.text-layer[data-v-7d149b86] {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
}
.segment-item[data-v-7d149b86] {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #666;
  font-weight: 500;
}
.segment-item.active[data-v-7d149b86] {
  color: #333;
  font-weight: 600;
}
.segment-item[data-v-7d149b86]:hover {
  color: #333;
}


.search-input-wrapper[data-v-0f11e4d2] {
  flex: 1;
  min-width: 0;
  height: 40px;
  background-color: var(--control-bg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
}
.search-icon[data-v-0f11e4d2] {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  margin-right: 8px;
}
.search-input[data-v-0f11e4d2] {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--text-primary);
  height: 100%;
}
.clear-icon[data-v-0f11e4d2] {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  cursor: pointer;
}

/* 内联搜索按钮（参考 TopToolbar） */
.search-right-action[data-v-0f11e4d2] {
  display: flex;
  align-items: center;
  height: 28px;
  padding: 0 4px 0 10px;
  margin-left: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.search-divider[data-v-0f11e4d2] {
  width: 1px;
  height: 16px;
  background-color: #cccccc;
  margin-right: 12px;
}
.search-btn-text[data-v-0f11e4d2] {
  color: var(--theme-primary);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}


.error-layout[data-v-13103aa8] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 20px;
}
.error-layout.layout-center[data-v-13103aa8] {
  text-align: center;
}
.error-layout.layout-left[data-v-13103aa8] {
  text-align: left;
  justify-content: flex-start;
}
.error-layout.layout-full[data-v-13103aa8] {
  min-height: 400px;
}
.error-content[data-v-13103aa8] {
  max-width: 400px;
  width: 100%;
}

/* 错误图标 */
.error-icon[data-v-13103aa8] {
  margin-bottom: 16px;
}
.custom-icon[data-v-13103aa8] {
  width: 64px;
  height: 64px;
  opacity: 0.8;
  margin: 0 auto;
  display: block;
}
.default-icon[data-v-13103aa8] {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  color: var(--error-color, #e74c3c);
  opacity: 0.8;
}
.default-icon svg[data-v-13103aa8] {
  width: 100%;
  height: 100%;
}

/* 错误标题 */
.error-title[data-v-13103aa8] {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  text-align: center;
}

/* 错误描述 */
.error-description[data-v-13103aa8] {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

/* 自定义内容 */
.error-custom-content[data-v-13103aa8] {
  margin-bottom: 20px;
  text-align: center;
}

/* 操作按钮 */
.error-actions[data-v-13103aa8] {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.error-actions.layout-left[data-v-13103aa8] {
  justify-content: flex-start;
}

/* 按钮样式覆盖 */
.error-actions[data-v-13103aa8] .t-button {
  border-radius: 20px;
  background-color: var(--brand-primary) !important;
  color: var(--text-inverse) !important;
  border: none !important;
}
.error-actions[data-v-13103aa8] .t-button:hover {
  background-color: var(--brand-primary-hover, var(--brand-primary)) !important;
  opacity: 0.9;
}
.error-actions[data-v-13103aa8] .t-button:focus {
  box-shadow: 0 0 0 2px rgba(var(--brand-primary-rgb, 26, 115, 232), 0.2) !important;
}

/* 尺寸变体 */
.error-layout.size-small .error-icon[data-v-13103aa8] {
  margin-bottom: 12px;
}
.error-layout.size-small .custom-icon[data-v-13103aa8],
.error-layout.size-small .default-icon[data-v-13103aa8] {
  width: 48px;
  height: 48px;
}
.error-layout.size-small .error-title[data-v-13103aa8] {
  font-size: 16px;
  margin-bottom: 6px;
}
.error-layout.size-small .error-description[data-v-13103aa8] {
  font-size: 13px;
  margin-bottom: 16px;
}
.error-layout.size-large .error-icon[data-v-13103aa8] {
  margin-bottom: 20px;
}
.error-layout.size-large .custom-icon[data-v-13103aa8],
.error-layout.size-large .default-icon[data-v-13103aa8] {
  width: 80px;
  height: 80px;
}
.error-layout.size-large .error-title[data-v-13103aa8] {
  font-size: 20px;
  margin-bottom: 10px;
}
.error-layout.size-large .error-description[data-v-13103aa8] {
  font-size: 15px;
  margin-bottom: 24px;
}

/* 类型特定样式 */
.error-layout.type-network .default-icon[data-v-13103aa8] {
  color: var(--warning-color, #f39c12);
}
.error-layout.type-server .default-icon[data-v-13103aa8] {
  color: var(--error-color, #e74c3c);
}
.error-layout.type-permission .default-icon[data-v-13103aa8] {
  color: var(--warning-color, #f39c12);
}
.error-layout.type-notfound .default-icon[data-v-13103aa8] {
  color: var(--text-secondary);
  opacity: 0.6;
}
.error-layout.type-timeout .default-icon[data-v-13103aa8] {
  color: var(--warning-color, #f39c12);
}

/* 响应式设计 */
@media (max-width: 768px) {
.error-layout[data-v-13103aa8] {
    padding: 16px;
    min-height: 150px;
}
.error-layout.layout-full[data-v-13103aa8] {
    min-height: 300px;
}
.error-content[data-v-13103aa8] {
    max-width: 100%;
}
.error-title[data-v-13103aa8] {
    font-size: 16px;
}
.error-description[data-v-13103aa8] {
    font-size: 13px;
}
.custom-icon[data-v-13103aa8],
  .default-icon[data-v-13103aa8] {
    width: 48px;
    height: 48px;
}
.error-layout.size-large .custom-icon[data-v-13103aa8],
  .error-layout.size-large .default-icon[data-v-13103aa8] {
    width: 64px;
    height: 64px;
}
}


.empty-state[data-v-10ceb45f] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  text-align: center;
}
.empty-text[data-v-10ceb45f] {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.empty-subtext[data-v-10ceb45f] {
  font-size: 14px;
  color: var(--text-tertiary);
}


.member-content[data-v-26227396] {
  padding: 20px;
  text-align: center;
  color: #646566;
}

