/* ========================
   页脚区域样式
   - 作用位置：页面最底部
   - 用途：友情链接和ICP备案信息
   ======================== */

/* 页脚整体容器（深色背景，占满横向区域） */
.site-footer {
    width: 100%;
    background-color: #333333;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 10px;
    margin-bottom: 100px;
    /* 底部留出白色空白区域 */
}

/* 页脚内容容器（限制内容宽度并居中，与 page-container 保持一致） */
.footer-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 上半部分：友情链接区域（多列布局） */
.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 0 0 30px;
    gap: 30px;
}

/* 每个友情链接列 */
.footer-column {
    flex: 1;
    min-width: 0;
}

/* 列标题样式 */
.footer-title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

/* 链接列表 */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* 分隔线 */
.footer-divider {
    height: 1px;
    background-color: #555555;
    margin: 0 0 20px;
}

/* 下半部分：ICP备案号区域（居中） */
.footer-bottom {
    text-align: center;
    padding: 0;
}

.footer-icp {
    margin: 0 0 8px;
    font-size: 14px;
    color: #cccccc;
}

.footer-copyright {
    margin: 0;
    font-size: 14px;
    color: #cccccc;
}

/* 页脚底部白色空白区域 */
.footer-spacer {
    width: 100%;
    height: 100px;
    background-color: #f5f5f5;
    /* 与页面背景色一致 */
}