.footer {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    line-height: 26px;
    font-size: 14px;
}

.footer .footer_list{
    background: #015293;
    width: auto;
    color: #fff;
    text-align: left;
    height: auto;
    padding: 10px;
}

.footer .footer_list a{
    color: #fff;
}

.footer_list_con{
    width: 100%;
    margin: 15px auto;
}

.footer_list_con .h2{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-indent: 10px;
}

/* 保留原有的 footer_list_left 和 footer_list_right */
.footer_list_left{
    width: 50%;
    text-align: left;
    float: left;
    line-height: 32px;
}

.footer_list_left li{
    display: inline;
    margin: 0 10px;
    float: left;
    width: 120px;
}

.footer_list_left_mobile{
    float: left;
    width: 320px;
    text-align: left;
    display: none;
} 

.footer_list_right{
    width: 50%;
    text-align: left;
    float: left;
    line-height: 32px;
}

.footer_list_right li{
    display: inline;
    margin: 0 10px;
    float: left;
    width: 480px;
}

.footer_list_center{
    float: left;
    width: 320px;
    text-align: left;
}

.footer_list_right_mobile{
    float: right;
    width: 320px;
    text-align: left;
    display: none;
}

/* 新增的 footer_list_top 和 footer_list_bottom */
.footer_list_top{
    width: 100%;
    text-align: center; /* 新增：使内容居中对齐 */
    float: none;
    line-height: 32px;
    margin-bottom: 20px;
}

.footer_list_top ul{
    list-style-type: none;
    padding: 0;
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: center; /* 居中对齐内容 */
    align-items: center; /* 垂直居中对齐 */
}

.footer_list_top li{
    margin: 10px;
    float: none; /* 取消浮动 */
}

.footer_list_top_mobile{
    float: none;
    width: 100%;
    text-align: left;
    display: none;
} 

.footer_list_bottom {
    clear: both; /* 清除浮动，使内容独占一行 */
    width: 100%; /* 确保宽度覆盖整个容器 */
    text-align: left; /* 文字左对齐 */
    float: none; /* 取消浮动 */
    line-height: 32px; /* 维持原有行高 */
}

.footer_list_bottom p{
    margin: 0;
    padding: 5px 0;
}

.footer_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* 确保父容器占满整个宽度 */
}

.footer_item {
    flex: 1; /* 每个项目占据相等的空间 */
    text-align: center; /* 文本水平居中对齐 */
}

.home-icon {
    width: 20px; /* 图标宽度 */
    height: 20px; /* 图标高度 */
    margin-right: 5px; /* 图标与文字之间的间距 */
    vertical-align: middle; /* 垂直居中对齐 */
}

.footer p{
    text-align: center;
    line-height: 20px;
    text-transform: uppercase;
    color: #000;
}

.footer a:hover{
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* 添加分隔线 */
.footer_list_separator {
    display: none; /* 默认隐藏 */
}



/* 小屏幕下显示分隔线 */
@media (max-width: 768px) {
    .nav_list ul{width: 100%;}			
    .nav_list li{margin: 2px 10px 12px;}
    .nav_list{padding: 15px 0; padding-top: 0px;}
            
    /*.footer{height:600px;}*/
    .footer_list_right{float:none;width:100%;}
    .footer_list_con{width:100%;}
    .footer_list_left{width:100%;}
    
    .footer_list_separator {
        display: inline-block;
        vertical-align: middle;
        width: 1px;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }    

    /* 小屏幕下 .footer_list_top 的样式调整 */
    .footer_list_top ul {
        flex-wrap: wrap; /* 允许换行 */
    }

    .footer_list_top li {
        margin: 10px;
        width: auto; /* 自动宽度 */
        flex: 1 1 auto; /* 允许项目自适应宽度 */
        max-width: 140px; /* 最大宽度限制 */
        text-align: center; /* 文本居中对齐 */
    }
}

