.hidden {
    overflow: hidden;
}

#webHeader {
    height: 9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 0 0.5rem;
}

.weblogo {
    overflow: hidden;
}

.weblogo img {
    display: block;
    height: 3rem;
    margin: 0 0 0 1rem;
    float: left;
}

#webNav {
    display: flex;
    align-items: center;
}

#webNav ul {
    display: flex;
    flex: auto;
}

#webNav ul li {
    height: 2.5rem;
    flex: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#webNav ul li:after {
    content: '';
    display: block;
    height: 0.15rem;
    width: 0%;
    margin: 0 auto;
    background: #fff;
}

#webNav ul li.active:after {
    width: 40%;
}

#webNav ul li a {
    color: #fff;
    font-size: 1.3rem;
}

#webNav .navBtn {
    width: 1.8rem;
    height: 1.8rem;
    margin: 0 1rem;
    background: url(https:/www.songbei.gov.cn/hebsbq/xhtml/css/navBtn.png) no-repeat center center;
    background-size: 100%;
}

#webFooter {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem 0;
}

#webFooter dl {
    display: flex;
    border-bottom: 1px dashed #fff;
    padding: 0 0 0.5rem;
}

#webFooter dl dd {
    flex: 1;
}

#webFooter dl dd a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#webFooter dl dd a img {
    height: 3rem;
}

#webFooter dl dd a span {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
}

#webFooter .copyright {
    padding: 1rem 0;
}

#webFooter .copyright div {
    display: flex;
    justify-content: center;
}

#webFooter .copyright div span {
    flex: 1;
    color: #fff;
    font-size: 1rem;
    line-height: 2rem;
}

#webFooter .copyright div:nth-last-child(1), #webFooter .copyright div:nth-last-child(2) {
    text-align: center;
}

#webHeader, #webFooter {
    display: none;
}
@media screen and (max-width: 640px) {
    #header, #footer {
        display: none;
    }
    #webHeader, #webFooter {
        display: flex;
    }
}