* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

html,
body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 导航 */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #191919;
}

h3 {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
}

nav {
    display: flex;
    gap: 2px;
}

nav a {
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    color: #b98b4b;
}

/* 移动端导航按钮 */
.nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* 页面标题 */
.page-title {
    padding: 30px 0;
    text-align: center;
    background: #f8f9fa;
}

.page-title h1 {
    font-size: 26px;
    color: #b98b4b;
}

/* 底部 */
footer {
    background: #b98b4b;
    color: #fff;
    padding: 30px 0;
}

.footer-wrap {
    /* height: 300px; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex-wrap: wrap;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    place-items: center;
}

.footer-info .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.footer-info div img {
    height: 77px;
    padding-top: 18px;
    padding-bottom: 13px;
    padding-right: 5px;
}

.footer-info p {
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-wrap .mapBox {
    display: flex;
    justify-content: center;
    height: 300px;
}

.footer-wrap .mapBox-content {
    max-width: 450px;
    width: 100%;
    height: 100%;
}

/* 响应式 */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        display: none;
        z-index: 99;
    }

    nav.show {
        display: flex;
    }

    nav a {
        padding: 12px 20px;
        border-bottom: 1px solid #f5f5f5;
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 22px;
    }

    .footer-wrap {
        flex-direction: column;
        text-align: center;
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-info {
        grid-template-columns: repeat(1, 1fr);
    }
}