/* 基础样式 */
.footer-component {
  background-color: #ffffff;
  color: #333;
  font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  padding: 40px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-logo-container {
  margin-bottom: 15px;
}

.footer-logo {
  height: 2.5rem; /* 保持与原来文本LOGO相似的视觉高度 */
  width: auto;
  display: block;
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #444;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #666;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.footer-links-container .footer-link {
  display: block;
  color: #1890FF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-container .footer-link:hover {
  color: #1890FF;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1890FF;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(90deg, #1890FF, #722ED1);
  transform: translateY(-3px);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: #666;
  transition: fill 0.3s ease;
}

.social-link:hover .social-icon {
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright, .record {
  font-size: 0.8rem;
  color: #999;
  margin: 5px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}