body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.site-footer {
  background-color: #111; /* 暗背景色 */
  color: #ddd; /* 文本颜色 */
  padding: 20px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 20px;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-section h4 {
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 281px; /* 或根据您的Logo实际尺寸调整 */
  height:71px;
  margin-top: 20px;
}

.footer-social a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  
}
 .gallery-container {
            text-align: center;
            margin: 20px;
        }
        .gallery-title {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
        }
        .image-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
      .image-grid img {
    width: 300px;
    height: 300px;
    object-fit: cover; /* 保持图片比例并填充整个区域 */
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
