.footer {
    /* 确保定位在最底层 */
    position: fixed;
    bottom: 10px !important;  /* 增加具体数值 */
    left: 50%;
    transform: translateX(-50%);
    /* 清除可能继承的样式 */
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    /* 字体控制 */
    font-size: 12px !important;
    color: #666 !important;
    text-align: center !important;  /* 新增居中样式 */
    /* 层级设置 */
    z-index: 0;  /* 高于其他元素 */
    /* 尺寸控制 */
    width: auto;
    white-space: nowrap;
    background-color: #0056b3;
}

.footer a {
    /* 强制覆盖所有状态下的颜色 */
    color: #666 !important;
    text-decoration: none !important;
    font-size: inherit !important;
    opacity: 0.8;
}

.footer a:hover {
    text-decoration: underline;
}	
