.common-banner {
    position: relative;
}

.common-banner img {
    width: 100%;
}

.common-font {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 0;
    width: 80%;
    height: 100%;
    margin: 0 0 0 -40%;
}

.common-font img {
    width: 75%;
}

@media (min-width: 1200px) {
    .common-font {
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .common-font img {
        width: auto;
    }
}


/* 二级主题 */
article {
    min-height: 420px;
    padding: 10px;
    background: #ffffff url(../images/public_bg.jpg) no-repeat center bottom/100%;
}

.common-top {
    position: relative;
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

.common-top span {
    display: block;
    font: bold 18px/30px '微软雅黑';
    color: #bc0000;
}

.common-top p {
    font: bold 12px/18px '微软雅黑';
    color: #000000;
}

.bread {
    display: none;
}

@media (min-width: 1200px) {
    article {
        position: relative;
        min-height: 300px;
        padding: 0;
    }

    .common-main {
        width: 1200px;
        margin: 0 auto;
        background: #f4f4f4;
    }

    .common-top {
        position: relative;
        padding: 24px 5px;
        border-bottom: 1px solid #333;
    }

    .common-top span {
        display: block;
        font: bold 24px/36px '微软雅黑';
        color: #bc0000;
    }

    .common-top p {
        font: bold 14px/24px '微软雅黑';
        color: #000000;
    }

    .bread {
        position: absolute;
        right: 5px;
        top: 40px;
        display: block;
        padding-top: 20px;
        font: bold 14px/24px '微软雅黑';
        color: #999999;
    }

    .bread a {
        color: #999999;
    }
}

/* 二级导航 */
.common-nav ul {
    display: flex;
    flex-wrap: wrap;
    padding: 1px;
}

.common-nav li {
    width: 33.33%;
    padding: 1px;
}

.common-nav li a {
    display: block;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #484848;
}

.common-box {
    background: #f4f4f4;
}

@media (min-width: 1200px) {
    .common-nav {
        width: 100%;
        margin-top: 20px;
    }

    .common-nav ul {
        display: flex;
        justify-content: center;
    }

    .common-nav li {
        width: auto;
        flex-grow: 1;
        padding: 0 1px;
    }

    .common-nav li a {
        display: block;
        padding-top: 3px;
        font: 400 18px/60px '微软雅黑';
        color: #fff;
        background: #3b3b3b;

    }

    .common-nav li a:hover {
        background: url(../images/common_li.jpg) no-repeat center center/cover;
    }

    .common-nav li.active a {
        background: url(../images/common_li.jpg) no-repeat center center/cover;
    }
}

/* 公共部分 */
.public {
    padding: 20px 10px;
    justify-content: center;
}

.public-logo {
    text-align: center;
}

.public-logo img {
    width: 60%;
}

.public-info {
    padding-left: 10px;
    font: 400 16px/24px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .public {
        display: flex;
        justify-content: center;
        padding: 160px 0 280px;
    }

    .public-logo img {
        width: auto;
    }
}


/* 网站翻页 */

.pages {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
    color: #999999;
    background: #f6f6f6;
}

.pages-left {
    display: none;
}

.pages-right {
    display: flex;
}

.pages-right a {
    margin: 0 2px;
    padding: 0 10px;
    font: 400 14px/30px '微软雅黑';
    color: #666666;
    border: 1px solid #666666;
    border-radius: 5px;
}

.pages-right a.page-num {
    color: #fff;
    background: #076400;
    border-color: #076400;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width:1200px) {
    .pages {
        align-items: center;
        margin: 10px auto 0;
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.8);
    }

    .pages-left {
        display: block;
        padding-right: 10px;
    }

    .pages-left span {
        font: 400 14px/36px '微软雅黑';
    }

    .pages-right a {
        margin: 0 4px;
        padding: 0 14px;
        font: 400 14px/36px '微软雅黑';
    }

    .pages-right a:first-child,
    .pages-right a:last-child {
        display: inline;
    }

    .pages-right a:hover {
        color: #fff;
        background: #076400;
        border-color: #076400;
    }
}