/* 用来优化小工具中页脚右侧快捷链接的显示方式 */
.footer-right-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
.footer-right-links a {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
}
.footer-right-links a:hover {
  color: #409EFF;
  text-decoration: underline;
}
/* 移动端自动换行 */
@media (max-width:768px) {
  .footer-right-links {
    justify-content: flex-start;
  }
}
/* 用来优化小工具中页脚右侧快捷链接的显示方式 */