

.query-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.query-banner {
    flex: 0 1 auto;
    /* background-size: cover; */
    background-position: center;
    height: 170px; /* 根据需要调整高度 */
    background: url(../images/bg.jpg) no-repeat center center / cover;
    /* background: url(../images/bg.jpg) no-repeat / cover center center; */
}
.query-banner h2{
    color: #0f9cbc;
    text-align: center;
    padding: 60px 0;
}

.banner-zhiye{
    flex: 0 1 auto;
    /* background-size: cover; */
    background-position: center;
    height: 170px; /* 根据需要调整高度 */
    background: url(../images/dg-bg.jpg) no-repeat center center / cover;
}

.query-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding: 10px 20px 0 20px;
    text-align: center;
}

.query-content img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.footer {
    flex: 0 1 auto;
    background-color: #f1f1f1;
    width: 100%;
    /* padding: 10px; */
    text-align: center;
}

.menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .menu-button {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
    }
}