.Header__name {
   opacity: 0; /* 50%透明度 */
  color: black;
    }
/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* 产品分类容器样式 */
.product-categories {
  display: flex;
  flex-wrap: wrap; /* 自动换行 */
  gap: 12px; /* 链接之间的间距 */
  padding: 16px 0; /* 上下内边距 */
}

/* 产品分类链接样式 */
.product-category {
  flex: 1; /* 核心：每个框平均分配容器宽度 */
  min-width: 0; /* 允许内容自动换行，避免宽度溢出 */
  height: 150px; /* 固定高度，确保所有框高度一致 */
  display: inline-flex;
  align-items: center; /* 文字垂直居中 */
  justify-content: center; /* 文字水平居中 */
  padding: 0 16px; /* 左右内边距（根据内容调整） */
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap; /* 文字不换行（可选，根据内容长度调整） */
      font-size: 16px;
    font-weight: bold;
    color: #333333;
}

/* 链接 hover 状态（鼠标悬浮） */
.product-category:hover {
  background-color: #e0e0e0; /*  hover 时背景变深一点 */
  color: #2a9d54; /* 绿色文字，图中图标有绿色元素 */
}

/* 链接 active 或点击后的状态（如果需要点击后保持变色，可结合 JS，这里先写 hover 和 focus） */
.product-category:focus,
.product-category:active {
  background-color: #333333; /* 点击后背景变绿色 */
  color: white; /* 文字变白 */
  outline: none; /* 去除焦点 outline */
}
/* FAQ 区域样式 */
.faq-section {
    margin-bottom: 40px;
}

.faq-title {
    color: #0a6640;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.faq-question-prefix {
    color: #0a6640;
    font-weight: bold;
    margin-right: 5px;
}

.faq-question {
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0a6640;
}

/* 区域标题样式 */
.section-title {
    color: #0a6640;
    font-size: 24px;
    margin: 30px 0 20px;
    text-align: center;
}

/* 资源卡片样式 */
.resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.resource {
    background-color: #0a6640;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.resource:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 36px;
    color: #0a6640;
    margin-bottom: 15px;
}

.resource-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.resource-desc {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.resource-desc:hover {
    color: #e0e0e0;
    text-decoration: underline;
}
