.home-intro-simple {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  color: #333;
}

.home-intro-simple h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.home-intro-simple p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

/* 核心理念 / 亮点 */
.home-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  max-width: 200px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: #4CAF50;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.feature p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* 页脚样式 */
.home-footer {
  margin-top: 80px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  opacity: 0.7; /* 视觉上不抢眼 */
}

.home-footer a {
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.home-footer a:hover {
  color: #4CAF50; /* 悬停时突出显示 */
}

.footer-icon {
  width: 20px;
  height: 20px;
  color: #555;
}

