 
.footernew {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.footernew .w1200{
    padding: 16px 2px;
    display: flex;
}

.footernew_left {
    width: 100%;
    /* 左侧占70% */
}



/* 确保响应式布局 */
@media (max-width: 1200px) {
    .footernew {
        width: 100%;
        padding: 0 20px;
    }
}
.footernew_left .logo {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    margin-top:16px;
}

.footernew_left .logo img {
    display: block; /* 移除图片的默认行内特性 */
    margin: auto; /* 自动边距实现居中 */
}


.footernew_left_top  .mianNav{
    width:80%;
    margin-top: 5px;
    margin-left: 1px;
}

.footernew_left_top .mianNav ul li a {
    color: #fff !important;
    font-size: 18px;

} 
.footernew_left_copyright{
    display: block;
    margin-left: 35%;
}



.footernew{
    background-color: #165ea2;
    color:#fff;
}
.footernew_right {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 上下居中 */
    align-items: flex-start; /* 靠左对齐 */
    padding-left: 20px; /* 可选：添加左侧内边距 */
}

/* 如果footernew_right内有多个子元素，确保它们垂直排列 */
.footernew_right > * {
    margin: 5px 0; /* 子元素之间的垂直间距 */
    text-align: left; /* 文本靠左 */
    font-size: 14px;
    line-height: 25px;
}

.footernew_right p {
    margin: 0;
    color: #fff;
}

.footernew_right strong {
    color: #fff;
    font-weight: 600;
    margin-right: 5px;
}

.footernew_message a{
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
     padding:8px; 
     /* 添加内边距让背景效果更明显  */
    border-radius: 4px; /* 圆角 */
}

/* 悬停时的下划线动画 */
.footernew_message a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #5a7bc8;
    transition: all 0.3s ease;
}

.footernew_message a:hover::after {
    width: 100%;
}

/* 悬停时的背景和文字颜色变化 */
.footernew_message a:hover {
    color: #334f9c !important; /* 蓝色字体 */
    background: #fff; /* 白色背景 */
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* 添加阴影 */
}

/* 悬停时的背景高亮效果 - 移除之前的半透明背景 */
.footernew_message a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.footernew_message a:hover::before {
    opacity: 0; /* 移除之前的背景效果 */
}

/* 移除之前的发光效果 */
.footernew_message a:hover {
    text-shadow: none; /* 移除发光效果 */
}

/* 地图图标的特殊样式 */
.footernew_message a img {
    transition: all 0.3s ease;
    vertical-align: middle;
}

.footernew_message a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footernew_right a {
        font-size: 14px;
        padding: 1px 4px;
    }
    
    .footernew_right a:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .footernew_message a {
        font-size: 13px;
        padding: 1px 3px;
    }
    
    .footernew_message a::after {
        height: 1px;
        bottom: -1px;
    }
}






/* footernew_left_top 下的导航菜单样式 */
.footernew_left_top .nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /* 菜单项之间的间距 gap: 10px; */
}

.footernew_left_top .nav .nLi {
    position: relative;
    transition: all 0.3s ease;
}

.footernew_left_top .nav .nLi a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 10px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

/* 悬停时的下划线动画 */
.footernew_left_top .nav .nLi a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #5a7bc8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footernew_left_top .nav .nLi:hover a::after {
    width: 100%;
}

/* 悬停时的文字颜色变化 */
.footernew_left_top .nav .nLi:hover a {
    color: #5a7bc8;
    transform: translateY(-2px);
}

/* 悬停时的背景光效 */
.footernew_left_top .nav .nLi::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.footernew_left_top .nav .nLi:hover::before {
    width: 120px;
    height: 40px;
}

/* 悬停时的缩放效果 */
.footernew_left_top .nav .nLi:hover {
    transform: scale(1.05);
}

/* 悬停时的阴影效果 */
.footernew_left_top .nav .nLi:hover a {
    text-shadow: 0 0 10px rgba(90, 123, 200, 0.5);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footernew_left_top .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footernew_left_top .nav .nLi a {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .footernew_left_top .nav .nLi:hover a {
        transform: translateY(-1px);
    }
    
    .footernew_left_top .nav .nLi:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .footernew_left_top .nav {
        gap: 15px;
    }
    
    .footernew_left_top .nav .nLi a {
        font-size: 14px;
        padding: 6px 0;
    }
}

.footernew_message{
    display: block;
    font-size: 13px;
    line-height: 0.3;
    margin-left: 16%;
}

.footernew_message a{
    color: #fff !important;
}

/* 优化 footernew_message 中 strong 标签的显示效果 */
.footernew_message strong {
    color: #f7f7f3; /* 金色，让标签更突出 */
    font-weight: 700; /* 加粗字体 */
    font-size: 14px; /* 稍微增大字体 */
    text-shadow: 0 1px 2px rgb(249 244 244 / 43%); /* 添加文字阴影 */
    letter-spacing: 0.5px; /* 增加字间距 */
    margin: 8px 0 8px 8px; /* 右侧间距 */
    display: inline-block; /* 块级显示 */
    position: relative; /* 相对定位 */
}


/* 响应式设计 */
@media (max-width: 768px) {
    .footernew_message strong {
        font-size: 13px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .footernew_message strong {
        font-size: 12px;
        margin-right: 4px;
        letter-spacing: 0.3px;
    }
}


/* footer_copyright 样式 */
.footer_copyright {
    width: 100%;
    background-color: #165ea2; /* 与 footernew 背景颜色一致 */
    color: #fff;
    text-align: center;
    padding: 15px 0;

}

.footer_copyright p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .footer_copyright {
        padding: 12px 0;
    }
    
    .footer_copyright p {
        font-size: 13px;
    }
 
}

@media (max-width: 480px) {
    .footer_copyright {
        padding: 10px 0;
    }
    
    .footer_copyright p {
        font-size: 12px;
    }
    
  
}

