/* footer.css */

/* 页脚样式 */
.site-footer {
    background-color: #f8f8f8; /* 页脚背景色 */
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #e7e7e7;
    font-family: Arial, sans-serif;
}
a{
    font-size: 20px;
}
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left .footer-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-left .footer-row span {
    width: 30%;
}

.footer-left a {
    text-decoration: none;
    color: #333;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-right {
    text-align: right;
    font-size: 14px;
    color: #666;
}

.footer-right div {
    margin-bottom: 5px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {
        text-align: left;
        margin-top: 20px;
    }
    .footer-left .footer-row {
        flex-direction: column;
    }
    .footer-left .footer-row span {
        width: 100%;
        margin-bottom: 5px;
    }
}
