/* 页脚样式 */
.footer {
    margin-top: auto;  /* 移除原来的 margin-top: 30px */
    padding: 30px 0;
    /* background: #f5f5f5;  */
}
 

.foot{
    width: 100%;
    /* background: #fff; */
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #e0e0e0; /* 添加顶部边框 */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
}
.foot_ul{
    width: 1226px;
    margin: 0 auto;
    /* border-bottom: 1px solid #e0e0e0; */
    padding: 27px 0;
    font-size: 0; /* 删除字体大小设置可能更好，除非有特定需求 */
    text-align: center; /* 确保li项水平分布 */
}
.foot_li{
    width: 33%; /* 调整宽度以适应三个列表项 */
    border-right: 1px solid #e0e0e0;
    height: 25px;
    font-size: 16px;
    line-height: 25px;
    display: inline-block;
    text-align: center;
    box-sizing: border-box; /* 确保padding和border包含在width和height内 */
}
.foot_fot{
    border-right: 0;
}
.copyright {
    color: #666;
    font-size: 12px;
    text-align: center; /*文本居中*/
    line-height: 1.5;
    padding-top: 20px; /* 增加顶部间距以便与上方内容分开*/
    width: 100%; 
    display: block; /*默认值，明确指出以避免任何样式冲突*/
}
