article {
    padding: 80px 0 4px;
    background: no-repeat center center/cover;
}

.common-name {
    font-size: 18px;
    line-height: 24px;
    color: #016a32;
    text-align: center;
}

.common-detail {
    padding: 5px 0;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

.common-logo {
    text-align: center;
}

.common-logo img {
    width: 2rem;
}

.common-main {
    padding: 12px;
}

.common-box {
    min-height: 420px;
    margin: 0 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        position: relative;
        z-index: 5;
        padding: 11vw 0 0;
    }
    .common-name {
        font-size: 1.5vw;
        line-height: 1.6vw;
        color: #016a32;
        text-align: center;
    }
    .common-detail {
        padding: 0.6vw 0;
        font-size: 0.9vw;
        line-height: 1vw;
        text-align: center;
    }
    .common-logo {
        text-align: center;
    }
    .common-logo img {
        width: 4vw;
    }
    .common-main {
        width: 64vw;
        margin: 0 auto;
        padding: 3vw 0 0;
    }
    .common-box {
        padding: 0;
        background: none;
    }
}


/* 二级导航 */

.common-nav {
    padding: 2px;
}

.common-nav ul {
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
}

.common-nav ul li {
    width: 50%;
    padding: 2px;
}

.common-nav ul li a {
    display: block;
    font: 400 16px/30px "微软雅黑";
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #87c12e;
}

.common-nav ul li.active a {
    background: #87c12e;
}

.bread {
    padding: 5px 0;
    font-size: 12px;
    line-height: 16px;
    color: #333;
    text-align: center;
}

.bread a {
    color: #333;
}

@media (min-width: 1200px) {
    .common-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 0 2vw;
        padding: 0 1vw;
        background: #87c12e;
    }
    .common-nav ul {
        display: flex;
        justify-content: center;
    }
    .common-nav ul li {
        width: auto;
        padding: 0 0.2vw;
    }
    .common-nav ul li a {
        display: block;
        padding: 0 0.6vw;
        font: 400 0.9vw/3.6vw "微软雅黑";
        text-align: center;
        color: #fff;
        background: none;
        border: none;
    }
    .common-nav ul li a:hover {
        color: #016a32;
        background: #fff;
    }
    .common-nav ul li.active a {
        color: #016a32;
        background: #fff;
    }
    .bread {
        padding: 0;
        font-size: 0.8vw;
        line-height: 1vw;
        color: #fff;
    }
    .bread a {
        color: #fff;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    font: 400 14px/20px "微软雅黑";
    text-align: center;
}

footer p {
    padding: 0 2px;
    color: #000;
}

footer a {
    padding: 0 2px;
    color: #000;
}

@media (min-width: 1200px) {
    footer {
        position: relative;
        z-index: 10;
        display: flex;
        justify-content: center;
        padding: 1.5vw 0;
        font: 400 16px/30px "微软雅黑";
        background: #fff;
    }
    footer::before {
        content: '';
        position: absolute;
        z-index: 10;
        left: 50%;
        top: -0.4vw;
        width: 72vw;
        height: 0.5vw;
        margin-left: -36vw;
        background: url(../images/foot_border.png) no-repeat center 0/72vw;
    }
    footer p {
        padding: 0 5px;
        color: #000;
    }
    footer a {
        padding: 0 5px;
        color: #000;
    }
}


/* 网站翻页 */

.pages {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
    color: #2a4347;
}

.pages-left {
    display: none;
}

.pages-right {
    display: flex;
}

.pages-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    margin: 0 1px;
    font: 400 14px/30px "微软雅黑";
    color: #fff;
    border: 1px solid #fff;
}

.pages-right a.page-num {
    color: #fff;
    background: #87c12e;
    border: 1px solid #fff;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        padding: 2vw 1vw 2.5vw;
        color: #fff;
    }
    .pages-left {
        display: block;
        padding-right: 10px;
        font: 400 14px/30px "微软雅黑";
    }
    .pages-right a:first-child,
    .pages-right a:last-child {
        display: flex;
        width: auto;
        padding: 0 12px;
        justify-content: center;
        align-items: center;
    }
    .pages-right a:hover {
        color: #fff;
        background: #87c12e;
        border-color: #87c12e;
    }
}