.site-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__inner.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 保证多列布局 */
.text-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* 每个栏目 */
.footer-column {
  flex: 1 1 calc(50% - 20px); /* 移动端默认两列 */
  box-sizing: border-box;
  margin-bottom: 20px;
  min-width: 140px;
}

.footer-column h6 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

/* 底部版权 */
.region--footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
  margin-top: 30px;
}

/* PC端四列 */
@media (min-width: 1025px) {
  .footer-column {
    flex: 1 1 calc(25% - 20px);
  }
}

/* 超小屏手机：一列
@media (max-width: 480px) {
  .footer-column {
    flex: 1 1 100%;
  }
}
 */