You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
1.9 KiB
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<div class="footer">
<div class="footer-content">
<div class="footer-links">
<a href="#" class="footer-link">关于我们</a>
<a href="#" class="footer-link">联系我们</a>
<a href="#" class="footer-link">隐私政策</a>
<a href="#" class="footer-link">使用条款</a>
</div>
<div class="footer-copyright">
<p>© 2025 版权所有 | 备案号黔ICP备XXXXXXXX号 | Powered by NoahLan</p>
</div>
</div>
</div>
<style>
.footer {
position: relative;
width: 100%;
padding: 1rem 2rem;
border-top: 1px solid rgba(0, 0, 0, 0.1);
transition: all var(--transition-speed);
}
[data-theme="dark"] .footer {
border-top-color: rgba(255, 255, 255, 0.1);
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.75rem;
}
.footer-logo {
display: flex;
align-items: center;
}
.footer-logo-img {
height: 2.5rem;
width: 2.5rem;
opacity: 0.7;
transition: opacity 0.3s ease;
}
.footer-logo-img:hover {
opacity: 1;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
}
.footer-link {
color: var(--text-color);
opacity: 0.7;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.2s ease;
}
.footer-link:hover {
opacity: 1;
text-decoration: underline;
}
.footer-copyright {
font-size: 0.8rem;
color: var(--text-color);
opacity: 0.6;
text-align: center;
}
@media (max-width: 768px) {
.footer {
padding: 0.75rem 1rem;
}
.footer-links {
gap: 0.75rem;
}
}
</style>