/*footer {*/
/*    background: #044296;*/
/*    color: #eef3ff;*/
/*    border-radius: 48px 48px 0 0;*/
/*    !*margin-top: 60px;*!*/
/*    padding: 56px 32px 32px;*/
/*    width: 100% !important;*/
/*    position: relative;*/
/*}*/

/*.footer-wrap {*/
/*    max-width: 1500px;*/
/*    margin: 0 auto;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 32px;*/
/*}*/

/*!* ========= 展开/收起按钮样式 ========= *!*/
/*.footer-toggle-btn {*/
/*    position: absolute;*/
/*    top: -20px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 8px;*/
/*    background: #044296;*/
/*    color: white;*/
/*    border: 1px solid rgba(255, 255, 255, 0.3);*/
/*    border-radius: 40px;*/
/*    padding: 8px 20px;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    z-index: 10;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.footer-toggle-btn:hover {*/
/*    background: #1a5bbf;*/
/*    border-color: rgba(255, 255, 255, 0.5);*/
/*    gap: 12px;*/
/*}*/

/*.footer-toggle-btn .toggle-icon {*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.footer-toggle-btn.active .toggle-icon {*/
/*    transform: rotate(180deg);*/
/*}*/

/*.footer-toggle-btn.active .toggle-text {*/
/*    content: "收起";*/
/*}*/

/*!* 可折叠内容区域 - 初始收起状态 *!*/
/*.footer-collapsible {*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    opacity: 0;*/
/*}*/

/*!* 展开状态 *!*/
/*.footer-collapsible.expanded {*/
/*    max-height: 2000px; !* 足够大以容纳所有内容 *!*/
/*    opacity: 1;*/
/*    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;*/
/*}*/

/*.footer-top-row {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.25);*/
/*}*/

/*.footer-logo img {*/
/*    width: 200px;*/
/*    height: 80px;*/
/*    background: transparent;*/
/*    display: block;*/
/*}*/

/*.footer-nav-horizontal {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 28px;*/
/*    align-items: center;*/
/*}*/

/*.footer-nav-horizontal a {*/
/*    color: white;*/
/*    text-decoration: none;*/
/*    font-size: 1rem;*/
/*    transition: opacity 0.2s;*/
/*    white-space: nowrap;*/
/*}*/

/*.footer-nav-horizontal a:hover {*/
/*    opacity: 0.8;*/
/*    text-decoration: none;*/
/*}*/

/*.footer-main-content {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 160px;*/
/*    justify-content: space-between;*/
/*    margin-top: 20px;*/
/*}*/

/*.footer-left {*/
/*    flex: 1.2;*/
/*    min-width: 260px;*/
/*}*/

/*.footer-info p {*/
/*    margin-top: 25px;*/
/*    font-size: 1rem;*/
/*    line-height: 1.5;*/
/*}*/

/*.footer-qrcodes {*/
/*    display: flex;*/
/*    gap: 24px;*/
/*    margin-top: 24px;*/
/*}*/

/*.qr-item img {*/
/*    width: 100px;*/
/*    background: white;*/
/*    border-radius: 12px;*/
/*    padding: 6px;*/
/*}*/

/*.qr-item p {*/
/*    text-align: center;*/
/*    font-size: 1rem;*/
/*    margin-top: 6px;*/
/*}*/

/*.footer-right {*/
/*    flex: 2;*/
/*    min-width: 280px;*/
/*}*/

/*.footer-links {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 35px;*/
/*}*/

/*.footer-col h4 {*/
/*    font-weight: 700;*/
/*    margin-bottom: 18px;*/
/*    font-size: 1rem;*/
/*    color: #fff;*/
/*}*/

/*.footer-col {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 10px; !* 竖排间距，可自己调 *!*/
/*}*/

/*.footer-col a {*/
/*    display: block;*/
/*    opacity: 0.8;*/
/*    font-size: 0.85rem;*/
/*    line-height: 1.9;*/
/*    list-style: none;*/
/*    cursor: pointer;*/
/*    text-decoration: none;*/
/*    color: #fff;*/
/*}*/

/*.footer-bottom {*/
/*    text-align: center;*/
/*    margin-top: 48px;*/
/*    padding-top: 20px;*/
/*    border-top: 1px solid rgba(255, 255, 255, 0.1);*/
/*    font-size: 1rem;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/

/*!* 响应式适配 *!*/
/*@media (max-width: 992px) {*/
/*    footer {*/
/*        padding: 56px 20px 20px;*/
/*    }*/

/*    .footer-main-content {*/
/*        gap: 40px;*/
/*    }*/

/*    .footer-links {*/
/*        gap: 20px;*/
/*    }*/

/*    .footer-nav-horizontal {*/
/*        gap: 16px;*/
/*    }*/

/*    .footer-nav-horizontal a {*/
/*        font-size: 0.85rem;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .footer-top-row {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*    }*/

/*    .footer-nav-horizontal {*/
/*        justify-content: center;*/
/*    }*/

/*    .footer-main-content {*/
/*        flex-direction: column;*/
/*        gap: 30px;*/
/*    }*/

/*    .footer-links {*/
/*        flex-direction: column;*/
/*    }*/

/*    .footer-bottom {*/
/*        flex-direction: column;*/
/*        gap: 10px;*/
/*        text-align: center;*/
/*    }*/
/*}*/

/*!* ========= 页脚渐入动画 ========= *!*/
/*@keyframes fadeInLeft {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateX(-40px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*@keyframes fadeInUp {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(40px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*@keyframes fadeInRight {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateX(40px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

/*!* 初始状态：隐藏且动画暂停 *!*/
/*.footer-left,*/
/*.footer-logo,*/
/*.footer-nav-horizontal,*/
/*.footer-right .footer-links .footer-col:nth-child(1),*/
/*.footer-right .footer-links .footer-col:nth-child(2),*/
/*.footer-right .footer-links .footer-col:nth-child(3),*/
/*.footer-right .footer-links .footer-col:nth-child(4) {*/
/*    opacity: 0;*/
/*    animation-fill-mode: forwards;*/
/*    animation-duration: 0.6s;*/
/*    animation-timing-function: ease-out;*/
/*    animation-play-state: paused;*/
/*}*/

/*!* 只在展开状态下才触发动画 *!*/
/*.footer-collapsible.expanded .footer-logo.animate {*/
/*    animation-name: fadeInLeft;*/
/*    animation-play-state: running;*/
/*    animation-delay: 0.1s;*/
/*}*/

/*.footer-collapsible.expanded .footer-left.animate {*/
/*    animation-name: fadeInUp;*/
/*    animation-play-state: running;*/
/*    animation-delay: 0.5s;*/
/*}*/

/*.footer-collapsible.expanded .footer-nav-horizontal.animate {*/
/*    animation-name: fadeInRight;*/
/*    animation-play-state: running;*/
/*    animation-delay: 0.2s;*/
/*}*/

/*.footer-collapsible.expanded .footer-right .footer-links .footer-col:nth-child(1).animate {*/
/*    animation-name: fadeInUp;*/
/*    animation-play-state: running;*/
/*    animation-delay: 0.6s;*/
/*}*/

/*.footer-collapsible.expanded .footer-right .footer-links .footer-col:nth-child(2).animate {*/
/*    animation-name: fadeInRight;*/
/*    animation-play-state: running;*/
/*    animation-delay: 0.9s;*/
/*}*/

/*.footer-collapsible.expanded .footer-right .footer-links .footer-col:nth-child(3).animate {*/
/*    animation-name: fadeInRight;*/
/*    animation-play-state: running;*/
/*    animation-delay: 1.2s;*/
/*}*/

/*.footer-collapsible.expanded .footer-right .footer-links .footer-col:nth-child(4).animate {*/
/*    animation-name: fadeInRight;*/
/*    animation-play-state: running;*/
/*    animation-delay: 1.5s;*/
/*}*/

footer {
    background: #044296;
    color: #eef3ff;
    border-radius: 48px 48px 0 0;
    padding: 20px 0;
    width: 100% !important;
    position: relative;
    /* 背景图片设置 */
    background-image: url('/img/company.jpg');
    background-size: cover;
    /*background-position: center center;*/
    /*background-repeat: no-repeat;*/
}

/* 半透明遮罩层 - 确保文字清晰 */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 40, 100, 0.55); /* 保留原有蓝色调，增加透明度让背景图透出 */
    border-radius: 48px 48px 0 0;
    pointer-events: none;
}

/* 所有内容层级高于遮罩 */
.footer-wrap, .footer-toggle-btn {
    position: relative;
    z-index: 2;
}

.footer-wrap {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* 展开/收起按钮样式 */
.footer-toggle-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #044296;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 0.9rem;
}

.footer-toggle-btn:hover {
    background: #1a5bbf;
    border-color: rgba(255, 255, 255, 0.5);
    gap: 12px;
}

.footer-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.footer-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* 可折叠内容区域 */
.footer-collapsible {
    max-height: none;
    opacity: 1;
    overflow: visible;
}

.footer-top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 20px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.footer-logo img {
    width: 200px;
    height: 80px;
    background: transparent;
    display: block;
}

.footer-nav-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
}

.footer-nav-horizontal a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.footer-nav-horizontal a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* 主内容区域 - 双栏增加间距 */
.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    margin: 16px 0 8px;
}

.footer-left {
    flex: 2;
    min-width: 280px;
}

.footer-right {
    flex: 1;
    min-width: 260px;
}

/* 信息区块 - 增加间距 */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-section {
    margin-bottom: 4px;
}

.info-section strong {
    font-size: 1rem;
    color: #fff;
    display: block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    border-left: 3px solid #ffd966;
    padding-left: 12px;
}

.info-section p, .info-section div {
    line-height: 1.7;
    font-size: 0.9rem;
    color: #eef3ff;
}

/* 标题行样式 */
.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}

/* 资质列表样式 - 增加行间距 */
.qual-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0 0;
}

.qual-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.65;
    font-size: 0.85rem;
    color: #eef3ff;
}

.qual-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd966;
    font-weight: bold;
    font-size: 1rem;
}

/* 数据行样式 */
.data-line {
    line-height: 1.8;
    margin-bottom: 8px;
}

/* 高亮数字 */
.highlight-number {
    color: #ffd966;
    font-weight: 600;
}

/* 二维码区域 */
.footer-qrcodes {
    display: flex;
    gap: 28px;
    /*margin-top: 24px;*/
    padding-top: 8px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 90px;
    background: white;
    border-radius: 12px;
    padding: 6px;
}

.qr-item p {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 8px;
    color: #eef3ff;
}

/* 底部版权 */
.footer-bottom {
    text-align: center;
    /*margin-top: 40px;*/
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: #c8dcf5;
}

/* 响应式适配 */
@media (max-width: 992px) {
    footer {
        display: none;
    }

    .footer-main-content {
        gap: 32px;
    }

    .footer-nav-horizontal {
        gap: 16px;
    }

    .footer-nav-horizontal a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    footer {
        display: none;
    }

    .footer-top-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav-horizontal {
        justify-content: center;
    }

    .footer-main-content {
        flex-direction: column;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-qrcodes {
        justify-content: center;
    }
}

/* ========== 动画定义 ========== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-140px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(140px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(140px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== 初始状态全部隐藏（保留） ========== */
.footer-logo,
.footer-nav-horizontal,
.footer-left .info-section:nth-child(1),
.footer-left .info-section:nth-child(2),
.footer-right .info-section:nth-child(1),
.footer-right .info-section:nth-child(2),
.footer-right .info-section:nth-child(3),
.footer-right .footer-qrcodes,
.footer-bottom {
    opacity: 0;
}