/* 页脚专属样式 */
footer {
    position: relative;
    background-image: url('../image/2026background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: #333; */
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info {
    width: 40%;
}

.footer-info h3 {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.footer-links {
    width: 50%;
}

.footer-links h3 {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.footer-links li {
    width: 50%;
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.record-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.record-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.7;
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .footer-info,
    .footer-links {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-info h3,
    .footer-links h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .footer-links ul {
        flex-direction: column;
    }
    
    .footer-links li {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .copyright {
        padding-top: 15px;
        font-size: 12px;
    }
}