

/* 毛玻璃背景 */
.glass-bg[data-v-6c8c6f16] {
  position: fixed;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  filter: blur(50px);
  z-index: -1;
}
html[data-v-6c8c6f16], body[data-v-6c8c6f16] {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-y: hidden;
}

/* 内容区域 */
.main-container[data-v-6c8c6f16] {
  margin: 10px auto; 
  color: #000;
  font-size: 14px;
  width: 85%;
  padding: 20px;
  height: 100vh;
}

/** 页面通用样式 */
.app-container[data-v-6c8c6f16] {
  padding-top: 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* height: 100vh; */
  /* height: 100vh; */
  background-color: transparent;
  font-family: "Segoe UI", "Microsoft YaHei", "Arial", sans-serif;
}

/* 内容区域 */
.content-container[data-v-6c8c6f16] {
  margin: 10px auto; 
  color: #000;
  font-size: 14px;
  padding: 20px;
  margin-bottom: 30px;
}
.iframe-modal-overlay[data-v-6c8c6f16] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200; /* 确保在 MenuBar 和主内容之上 */
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn-6c8c6f16 0.3s ease-out;
}
@keyframes fadeIn-6c8c6f16 {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

/* 遮罩背景（点击 可关闭） */
.iframe-modal-backdrop[data-v-6c8c6f16] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* iframe 模态框容器 */
.iframe-modal[data-v-6c8c6f16] {
  position: relative;
  width: 98vw;
  height: 95vh;
  max-width: 100%; 
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 1);
  overflow: hidden; /* 改为 hidden，避免滚动条闪现 */
  animation: smoothPopIn-6c8c6f16 0.35s cubic-bezier(0.0, 0.0, 0.2, 1) forwards;
  padding-bottom: 20px;
}
@keyframes smoothPopIn-6c8c6f16 {
from {
    transform: scale(0.96);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}
.iframe-close-btn[data-v-6c8c6f16] {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  justify-content: center;
  align-items: center;
}
.iframe-close-btn[data-v-6c8c6f16]:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* iframe 内容 */
.modal-iframe[data-v-6c8c6f16] {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/******************************** 分类栏的样式 ********************************/
/* 分类筛选栏 */
.filter-bar[data-v-6c8c6f16] {
  margin: 10px auto; /* 水平居中 */
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #000;
  font-size: 14px;
  padding: 20px;
  border-radius: 12px; /* 可选：加圆角更美观 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* 可选：轻微阴影 */
}

/* 分类行：标题 + 标签在同一行 */
.category-row[data-v-6c8c6f16] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.category-title[data-v-6c8c6f16] {
  color: #4CAF50;
  font-weight: bold;
  font-size: 14px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4CAF50;
  border-radius: 12px;
  padding: 4px 10px;
  flex-shrink: 0;
  min-width: 40px; 
  text-align: center;
}

/* 标签列表：允许换行，占据剩余空间 */
.tags-list[data-v-6c8c6f16] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  align-content: flex-start;
}
.tag[data-v-6c8c6f16] {
  color: #000;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.tag[data-v-6c8c6f16]:hover {
  background: rgba(76, 175, 80, 1);
  color: white;
}
.tag.active[data-v-6c8c6f16] {
  background: #4CAF50;
  color: white;
}
.category-title[data-v-6c8c6f16] {
  color: #4CAF50;
  font-weight: bold;
  font-size: 14px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4CAF50;
  border-radius: 12px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 8px;
}
.loading[data-v-6c8c6f16] {
  text-align: center;
  color: #555;
  padding: 20px;
}
.results h3[data-v-6c8c6f16] {
  margin-bottom: 16px;
  color: #4CAF50;
}
.results ul[data-v-6c8c6f16] {
  list-style: none;
  padding: 0;
}
.results li[data-v-6c8c6f16] {
  margin: 8px 0;
  padding: 8px;
  background: #f5f5f5;
  border-radius: 6px;
}
.no-results[data-v-6c8c6f16] {
  text-align: center;
  color: #999;
  padding: 40px;
}


/******************************** 卡片样式 ********************************/
.items-container[data-v-6c8c6f16] {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* 整体分组容器 */
.grouped-results[data-v-6c8c6f16] {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  justify-content: center;
  overflow-y: hidden;
}
.grouped-items-container[data-v-6c8c6f16] {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* 单个分类区块 */
.category-section[data-v-6c8c6f16] {
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 区块头部：标题 + 更多按钮 */
.section-header[data-v-6c8c6f16] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.section-title[data-v-6c8c6f16] {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

/* “更多”按钮 - 右上角 */
.more-btn[data-v-6c8c6f16] {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f0f5ff;
  color: #007bff;
  border: 1px solid #cfe0ff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.more-btn[data-v-6c8c6f16]:hover {
  background: #e0ecff;
  border-color: #a0c4ff;
}
.item[data-v-6c8c6f16] {
  display: flex;
  flex-direction: column;
  width: 300px;
  /* height: 200px; */
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.item[data-v-6c8c6f16]:hover {
  transform: translateY(-5px);
}
.image-container[data-v-6c8c6f16] {
  aspect-ratio: 16 / 9; 
  width: 100%;
  height: 100%;
  min-height: 50%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 2px 3px 8px 2px rgba(0, 0, 0, 0.35);
}
.item-image[data-v-6c8c6f16] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.item:hover .item-image[data-v-6c8c6f16] {
  transform: scale(1.05);
}
.item-text[data-v-6c8c6f16] {
  margin-top: 12px;
  text-align: center;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.item-text[data-v-6c8c6f16]:hover {
  color: #4CAF50;
}

/* 响应式设计 */
@media (max-width: 768px) {
.item[data-v-6c8c6f16] {
    width: calc(50% - 20px);
}
}
@media (max-width: 480px) {
.item[data-v-6c8c6f16] {
    width: 100%;
}
}
a[data-v-6c8c6f16] {
  text-decoration: none;
}
a[data-v-6c8c6f16]:link, a[data-v-6c8c6f16]:visited, a[data-v-6c8c6f16]:hover, a[data-v-6c8c6f16]:active {
  color: inherit;
}

/** 页面加载完毕后信息框弹窗 */
.instructions-modal-overlay[data-v-6c8c6f16] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
}
.instructions-modal[data-v-6c8c6f16] {
  background: #ffffff;
  border-radius: 16px;
  padding: 0; /* 外层不再设 padding */
  max-width: 50%;
  max-height: 80vh;
  overflow: hidden; /* 关键：隐藏溢出，保留圆角 */
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  color: #333;
}
.instructions-content[data-v-6c8c6f16] {
  padding: 30px; /* 原来的 padding 移到内层 */
  max-height: calc(80vh - 2 * 30px); /* 保证不超过外层高度 */
  overflow-y: auto; /* 滚动只在内层发生 */
}
.instructions-modal[data-v-6c8c6f16] p{
  line-height: 1.6;
  margin-bottom: 12px;
}
.instructions-modal[data-v-6c8c6f16] h1 {
  line-height: 1.6;
  margin: 16px 0 12px;
  color: #4CAF50;
  font-size: 30px;
}
.instructions-modal[data-v-6c8c6f16] h2 {
  line-height: 1.6;
  margin: 16px 0 12px;
  /* color: #4CAF50; */
  font-size: 28px;
}
.instructions-modal[data-v-6c8c6f16] h3 {
  line-height: 1.6;
  margin: 16px 0 12px;
  /* color: #4CAF50; */
  font-size: 24px;
}
.instructions-modal[data-v-6c8c6f16] h4 {
  line-height: 1.6;
  margin-bottom: 12px;
  /* color: #4CAF50; */
  font-size: 18px;
}
.close-btn[data-v-6c8c6f16] {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.close-btn[data-v-6c8c6f16]:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}
