/* 底部信息栏 */
.footer-info {
    background: #8B4513;
    color: #fff;
    padding: 40px 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
    align-items: center;
}

/* 左侧：快捷导航 */
.info-left {
    flex: 2;
}

.info-left h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    display: inline-block;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px 20px;
}

.nav-grid a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-grid a:hover {
    color: #FFD700;
}

/* 中间：公园地址 */
.info-center {
    flex: 1.5;
}

.info-center h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    display: inline-block;
}

.info-center p {
    font-size: 14px;
    line-height: 2;
    color: #fff;
}

.info-center .phone {
    margin-bottom: 10px;
}

.info-center .address {
    margin-bottom: 0;
}

/* 右侧：单位图标 */
.info-right {
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-right img {
    width: 60px;
    height: auto;
}

/* 底部版权区 */
.footer {
    background: #fff;
    color: #666;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-bottom span {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .footer-info {
        padding: 20px 0;
        background: #A0522D;
    }

    .info-content {
        flex-direction: column;
        gap: 0;
        align-items: center;
        text-align: center;
    }

    .info-left {
        display: none;
    }

    .info-center {
        flex: 1;
        width: 100%;
        order: 1;
    }

    .info-center h3 {
        display: none;
    }

    .info-center p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
        padding: 0 15px;
    }

    .info-center .phone {
        margin-bottom: 8px;
    }

    .info-center .address {
        margin-bottom: 8px;
    }

    .info-right {
        flex: 1;
        width: 100%;
        order: 3;
        margin-top: 15px;
    }

    .info-right img {
        width: 50px;
        height: 50px;
    }

    .footer {
        background: #A0522D;
        padding: 15px 0;
        border-top: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom div,.footer-bottom span{
        font-size: 12px;
        color: #fff;
        white-space: normal;
    }
    .footer-bottom div img{
        width: 30px;
        height: auto;
    }
}
