﻿.site-footer {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
  margin-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.02);
}

.site-footer img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.site-footer img:hover {
  transform: scale(1.1);
}

.site-footer a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 4px;
}

.site-footer a:hover {
  color: #333;
  background-color: rgba(0,0,0,0.03);
}

.site-footer .banquan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* 添加分隔符 */
.site-footer a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -10px;
  color: #ddd;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .site-footer {
    padding: 12px 15px;
    gap: 10px;
  }
  
  .site-footer a {
    font-size: 13px;
    padding: 3px 8px;
  }
  
  .site-footer img {
    width: 20px;
    height: 20px;
  }
  
  .site-footer a:not(:last-child)::after {
    right: -8px;
  }
}