/* Footer */
.footer {
    width: 100%;
    margin-top: 50px;
    padding: 60px 0;
    background-color: #004397;
    color: #FFF;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
}

.footer a {
    color: #FFF;
    margin: 20px;
    text-decoration: none;
    /* 增加更好的链接样式 */
    transition: color 0.3s ease;
    /* 平滑的颜色过渡效果 */
}

.footer a:hover {
    color: #e2593a;
}