chore: initialize tuhui repository

This commit is contained in:
Codex
2026-03-08 19:28:32 +08:00
commit ee10c46aae
189 changed files with 17754 additions and 0 deletions

View File

@@ -0,0 +1,159 @@
.footer {
margin-top: auto;
}
.footer-main {
background: #f5f5f5;
padding: 40px 0;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-links-group {
display: flex;
gap: 24px;
margin-bottom: 12px;
}
.footer-link {
color: #666;
font-size: 14px;
transition: color 0.2s;
}
.footer-link:hover {
color: #ff5a5a;
}
.footer-contact {
margin-bottom: 20px;
}
.contact-title {
font-size: 14px;
color: #333;
margin: 0 0 12px;
font-weight: 500;
}
.email-input {
background: white;
border-radius: 8px;
max-width: 360px;
}
.email-input .ant-input {
color: #666;
}
.footer-qrcodes {
display: flex;
gap: 24px;
}
.qrcode-item {
text-align: center;
}
.qrcode-placeholder {
width: 100px;
height: 100px;
background: white;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
border: 1px solid #e8e8e8;
}
.qrcode-icon {
font-size: 48px;
color: #ccc;
}
.qrcode-text {
font-size: 12px;
color: #999;
}
.footer-partners {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #e8e8e8;
display: flex;
flex-wrap: wrap;
gap: 12px 20px;
}
.partner-link {
font-size: 12px;
color: #999;
transition: color 0.2s;
}
.partner-link:hover {
color: #ff5a5a;
}
.footer-bottom {
background: #3d3d3d;
padding: 20px 0;
}
.copyright-text {
color: #999;
font-size: 12px;
line-height: 1.8;
margin: 0 0 8px;
}
.email-link {
color: #ff5a5a;
}
.email-link:hover {
text-decoration: underline;
}
.copyright-links {
color: #999;
font-size: 12px;
margin: 0;
}
.copyright-links a {
color: #999;
transition: color 0.2s;
}
.copyright-links a:hover {
color: #ff5a5a;
}
@media (max-width: 768px) {
.footer-main {
padding: 30px 0;
}
.footer-links-group {
justify-content: center;
}
.footer-qrcodes {
justify-content: center;
}
.footer-partners {
justify-content: center;
}
.copyright-text,
.copyright-links {
text-align: center;
}
}