footer {
    margin-top: 40px;
}

footer .footer-top .one {
    padding-bottom: 29px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

footer .footer-top .one img {
  width: 15%;
  object-fit: cover;
}

footer .footer-top .one .fotvav {
    width: 50%;
    height: 64px;
    line-height: 64px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    align-items: end
}

footer .footer-top .one .fotvav a {
    display: block;
    width: 33.3333%;
    float: left;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}

footer .footer-top .one .fotvav a:before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #92775b;
    margin-right: 14px
}



footer .footer-bottom .two {
    margin: 30px 0 25px;
    overflow: hidden
}

footer .footer-bottom .two .left {
    width: 47%;
    float: left
}

footer .footer-bottom .two .left .fotewm {
    float: left;
    width: 156px
}

footer .footer-bottom .two .left .fotewm .kuang {
    width: 122px;
    height: 122px;
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px;
    float: left
}

footer .footer-bottom .two .left .fotewm img {
    max-width: 100%;
    max-height: 100%
}

footer .footer-bottom .two .left .fotewm p {
    width: 20px;
    float: left;
    height: 122px;
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-left: 14px;
    line-height: 15px;
    display: flex;
    display: -webkit-flex;
    align-items: center
}

footer .footer-bottom .two .left .ftlxfs dd {
    width: 100%;
    overflow: hidden;
    margin: 4px 0 26px
}

footer .footer-bottom .two .left .ftlxfs dd em {
    display: block;
    width: 41px;
    height: 43px;
    border-radius: 5px;
    background: #cac7c4;
    float: left;
    margin-right: 13px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center
}

footer .footer-bottom .two .left .ftlxfs dd em i {
    color: #004C90;
    font-size: 20px;
}

footer .footer-bottom .two .left .ftlxfs dd .lxzi {
    float: left;
    font-size: 14px;
    color: #333;
    width: calc(100% - 54px)
}

footer .footer-bottom .two .left .ftlxfs dd p {
    font-size: 15px;
    color: #999;
    max-height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word
}

footer .footer-bottom .two .left .ftlxfs dd p a {
    text-decoration: none;
    color: #999;
    transition: 0.4s;
}

footer .footer-bottom .two .left .ftlxfs dd p a:hover {
    color: #004C90;
}

footer .footer-bottom .two ul.right {
    width: 50%;
    float: right;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end
}

footer .footer-bottom .two ul.right li {
    width: 33.3333%;
    float: left
}

footer .footer-bottom .two ul.right li a {
    font-size: 15px;
    color: #999;
    margin-bottom: 14px;
    padding-left: 36px;
    max-width: 100%;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    display: block;
    text-align: right;
    transition: all .4s ease;
    text-decoration: none;
}

footer .footer-bottom .two ul.right li a:hover {
    color: #004C90
}
footer .DiFont{
    background-color: #004C90;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}


.goTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    z-index: 110;
    /* 新增：初始隐藏 + 过渡动画（控制显示/隐藏） */
    opacity: 0; /* 初始透明 */
    visibility: hidden; /* 初始隐藏（避免点击空白区域） */
    transform: translateY(20px); /* 初始向下偏移，增强动画感 */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* 新增：滚动200px后显示的类 */
.goTop.show {
    opacity: 1; /* 完全显示 */
    visibility: visible; /* 恢复可见性 */
    transform: translateY(0); /* 回到正常位置 */
}

.goTop button {
    width: 100%;
    height: 100%;
    background-color: #004C90;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer; /* 新增：鼠标悬浮变指针，提示可点击 */
    transition: background-color 0.3s ease; /* 新增：hover过渡更平滑 */
}

/* 修复：原选择器 .go-top-wrap .go-top-btn 与HTML结构不匹配，改为实际的 .goTop button */
.goTop button:hover {
    background-color: #222;
    color: #fff;
}

.goTop button::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    -o-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite; 
    animation-delay: 2.5s; /* 原有间隔时间保留 */
    opacity: 0;
    background: #004C90;
    border-radius: 0px; /* 原有方形涟漪保留，如需圆形可改为50% */
}

/* 原有涟漪动画关键帧保留，无需修改 */
@keyframes ripple {
    0%, 35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}

@media screen and (max-width:1400px) {
    footer .footer-top .one .fotvav a{
        width: 47%;
    }
    footer .footer-bottom .two ul.right li{
        width: 50%;
    }
    footer .footer-top .one{
        justify-content: end;
        position: relative;
    }
    footer .footer-top .one img{
        position: absolute;
        left: 0;
        width: 15%;

    }
}
@media screen and (max-width:1200px) {
    footer .footer-top .one img{
        height: calc(100% - 29px);
        width: auto;
    }
}
@media screen and (max-width:991px) {
    footer .footer-bottom .two ul.right li:nth-child(1){
        display: none;
    }
    footer .footer-bottom .two ul.right li:nth-child(2){
        width: 100%;
    }
    footer .footer-top .one .fotvav a:nth-child(1){
        display: none;
    }
}

@media screen and (max-width:768px) {
    footer .footer-bottom .two .left{
        width: 100%;
    }
    footer .footer-bottom .two .left .ftlxfs { 
        display: flex;
        flex-wrap: wrap; /* 关键：允许子元素换行 */
        /* 可选：移除默认内边距/外边距，避免布局偏差 */
        margin: 0;
        padding: 0;
    }
    
    footer .footer-bottom .two .left .ftlxfs dd {
        width: 50%; /* 每行显示2个dd，超出自动换行 */
        /* 可选：添加间距控制 */
        box-sizing: border-box; /* 避免padding影响宽度计算 */
        padding: 0 10px; /* 示例：左右间距 */
    }
    footer .footer-bottom .two .left .ftlxfs dd p{
        -webkit-line-clamp: 4;
        max-height: 85px;
    }
    footer .footer-top .one .fotvav a{display: none;}
    footer .footer-bottom .two ul.right{display: none;}
}

@media screen and (max-width:576px) { 
    footer .footer-bottom .two .left .ftlxfs dd{
        width: 100%;
    }
}


.iPhoneZz{
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
    right: -140%;
    /* 毛玻璃效果核心属性 */
    backdrop-filter: blur(8px); /* 模糊程度，数值越大越模糊 */
    background-color: rgba(32, 32, 32, 0.3); /* 使用rgba保持半透明 */
    /* 兼容旧版浏览器 */
    -webkit-backdrop-filter: blur(8px);
    transition: 0.5s;
}
.iPhoneZz.active{
    right: 0;
}
.iPhone {
    position: fixed;
    width: 400px;
    height: 100%;
    right: -140%;
    top: 0;
    background-color: #fff;
    z-index: 10001;
    border-left: 1px solid #ccc; 
    transition: 0.5s;
}
.iPhone.active{
    right: 0;
}
@media screen and (max-width:400px) {
    .iPhone{
        width: 100%;
    }
}
.iPhone .iPhone-Head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 10px 20px; 
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06); 

}
.iPhone .iPhone-Head img{
    height: 100%;
}
.iPhone .iPhone-Head button{
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #00000048;
    border-radius: 99px; 

}
.iPhone .iPhone-Head button i{
    font-size: 25px; 
}
.iPhone .iPhone-Main{
    padding: 0 20px;
}
.iPhone .iPhone-Main ul{
    padding: 0;
    margin: 0;
}
.iPhone .iPhone-Main ul a{
    text-decoration: none;
}
.iPhone .iPhone-Main ul li a{
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #d4d4d4;
    color: #545454;
}
.iPhone .iPhone-Main ul li .select { 
    height: 0;
    overflow: hidden;
    /* 只保留基础样式，动画完全由JS控制高度过渡 */
    transition: height 0.3s ease-out; /* 统一过渡曲线，确保双向一致 */
}
 