article {
    padding: 60px 0 10px;
    background: no-repeat center bottom/cover;
}

.common-main {
    padding: 12px;
}

.common-title {
    text-align: center;
}

.common-title .ch {
    font-size: 18px;
    line-height: 20px;
    color: #007c3e;
}

.common-title .ch span {
    color: #c7a359;
}

.common-title .en {
    padding: 5px 0 0;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}

.bread {
    padding: 5px 0;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    text-align: center;
}

.bread a {
    color: #000;
}

.common-box {
    min-height: 420px;
    margin: 0 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        padding: 10vw 0 6vw;
    }
    .common-main {
        width: 64vw;
        margin: 0 auto;
        padding: 0;
    }
    .common-title {
        text-align: center;
    }
    .common-title .ch {
        font-size: 1.8vw;
        line-height: 2vw;
        color: #007c3e;
    }
    .common-title .ch span {
        color: #c7a359;
    }
    .common-title .en {
        padding: 0.2vw 0 0;
        font-size: 0.9vw;
        line-height: 1.2vw;
        text-transform: uppercase;
    }
    .bread {
        padding: 1vw 0 1.5vw;
        font-size: 14px;
        line-height: 20px;
        color: #000;
        text-align: center;
    }
    .bread a {
        color: #000;
    }
    .common-box {
        margin: 0;
        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);
}

.common-nav ul li.active a {
    background: #007c3e;
}

@media (min-width: 1200px) {
    .common-nav {
        padding: 0 0 2.5vw;
    }
    .common-nav ul {
        display: flex;
        justify-content: center;
    }
    .common-nav ul li {
        width: auto;
        padding: 0 1vw;
    }
    .common-nav ul li a {
        display: block;
        padding: 0 1vw;
        font: 400 1vw/1.5vw "微软雅黑";
        text-align: center;
        color: #fff;
        background: #c7a359;
        border-radius: 5px;
    }
    .common-nav ul li a:hover {
        color: #fff;
        background: #007c3e;
    }
    .common-nav ul li.active a {
        color: #fff;
        background: #007c3e;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.2rem 0;
    font-size: 14px;
    line-height: 20px;
    background: #007c3e;
}

footer p {
    padding: 0 5px;
    color: #fff;
}

footer a {
    padding: 0 5px;
    color: #fff;
}

@media (min-width: 1200px) {
    footer {
        display: flex;
        justify-content: center;
        padding: 1vw 0;
        font-size: 14px;
        line-height: 2vw;
        background: #007c3e;
    }
    footer p {
        padding: 0 5px;
        color: #fff;
    }
    footer a {
        padding: 0 5px;
        color: #fff;
    }
}


/* 网站翻页 */

.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: #333;
    background: #fff;
    border: 1px solid #333;
}

.pages-right a.page-num {
    color: #fff;
    background: #007c3e;
    border: 1px solid #000;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        padding: 1.2vw 1vw;
        background: rgba(255, 255, 255, 0.8);
    }
    .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: #007c3e;
        border-color: #007c3e;
    }
}