﻿
.fot-footer {
    width: 100%;
    color: #fff;
    bottom: 0;
    left: 0;
}

.fot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fot-main-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.fot-news-section {
    flex: 7;
}

.fot-qa-section {
    flex: 3;
}

.fot-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #000;
}

.fot-news-list,
.fot-qa-list {
    list-style: none;
}

.fot-news-item,
.fot-qa-item {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

    .fot-news-item:last-child,
    .fot-qa-item:last-child {
        border-bottom: none;
    }

.fot-news-link,
.fot-qa-link {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .fot-news-link:hover,
    .fot-qa-link:hover {
        color: #000;
    }

.fot-navigation {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.fot-nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.fot-nav-link {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .fot-nav-link:hover {
        color: #fff;
    }

.fot-copyright,
.fot-beian {
    font-size: 12px;
    color: #888;
    margin: 5px 0;
}

.fot-beian-link {
    color: #888;
    text-decoration: none;
}

    .fot-beian-link:hover {
        color: #fff;
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .fot-main-content {
        flex-direction: column;
    }

    .fot-news-section,
    .fot-qa-section {
        flex: none;
    }

    .fot-nav-links {
        gap: 10px;
    }

    body {
        padding-bottom: 450px;
    }
}
