/* Footer Styles */
.site-footer {
    background-color: #ffffff;
    color: #191919;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    box-sizing: border-box;
}

.site-footer .site-info {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

/* Footer内容样式 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* 移动端响应式设置 - 左右边距10px */
@media (max-width: 768px) {
    .footer-content {
        padding: 0 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-text {
        margin-bottom: 10px;
    }
}

/* PC端响应式设置 - 左右边距77px */
@media (min-width: 769px) {
    .footer-content {
        padding: 0 77px;
    }
}

.footer-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.footer-text span {
    color: #191919;
}

.footer-text a {
    color: #191919;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: #191919;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-text {
        flex-direction: column;
        gap: 10px;
    }
}