/* 底部整体容器 */
.footer {
    background-color: #f5f5f5; /* 底部背景色，可按需改 */
    padding: 15px 10px;
    text-align: center; /* 内容居中 */
    font-size: 14px;
    color: #666;
}

/* 版权信息 */
.footer-info {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* 站点地图 */
.footer-Sitemap a {
    color: #333; /* 链接颜色 */
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.footer-Sitemap a:hover {
    color: #007bff; /*  hover 时变色，可改 */
}

/* 底部标签栏 */
.footer-tab {
    display: flex;
    justify-content: center;
    gap: 10px; /* 项目之间间距 */
    flex-wrap: wrap; /* 适配小屏幕，自动换行 */
}

.footer-tab-item {
    flex: 1;
    min-width: 80px;
}
.footer-tab-item a {
    display: block;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd; /* 边框 */
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.footer-tab-item a:hover {
    background-color: #f0f0f0;
    color: #007bff;
}

