27 lines
502 B
Plaintext
27 lines
502 B
Plaintext
<footer>
|
||
<div>© 2026 Uroboros</div>
|
||
<a href="https://beian.miit.gov.cn" target="_blank">备案号:鄂ICP备2023000060号-2</a>
|
||
</footer>
|
||
|
||
<style>
|
||
footer {
|
||
flex-shrink: 0;
|
||
min-height: 0;
|
||
height: 84px;
|
||
padding-bottom: 24px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
font-size: 13px;
|
||
gap: 12px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
@media (max-width: 640px) {
|
||
footer {
|
||
height: 64px;
|
||
padding-bottom: 0;
|
||
}
|
||
}
|
||
</style>
|