article {
    padding: 60px 0 10px;
    background: no-repeat center bottom/cover;
}

.common-main {
    padding: 12px;
}

.common-title {
    padding-left: 20px;
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    color: #228d00;
    letter-spacing: 20px;
    background: url(../images/com_circle.png) no-repeat center center/auto 36px;
}

.common-x {
    padding: 0.1rem 0;
    text-align: center;
}

.common-en {
    padding-left: 4px;
    font-size: 12px;
    line-height: 16px;
    color: #723346;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bread {
    padding: 0.4rem 0 0.2rem;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    text-align: center;
}

.bread a {
    color: #000;
}

.common-box {
    min-height: 420px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        padding: 10vw 0 5vw;
    }
    .common-main {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
    .common-title {
        padding-left: 42px;
        font-size: 30px;
        line-height: 72px;
        text-align: center;
        color: #228d00;
        letter-spacing: 42px;
        background: url(../images/com_circle.png) no-repeat center center;
    }
    .common-x {
        padding: 0.2vw 0;
        text-align: center;
    }
    .common-en {
        padding-left: 4px;
        font-size: 12px;
        line-height: 16px;
        color: #723346;
        text-align: center;
        letter-spacing: 4px;
        text-transform: uppercase;
    }
    .bread {
        padding: 1vw 0 2.4vw;
        font-size: 14px;
        line-height: 20px;
        color: #000;
        text-align: center;
    }
    .bread a {
        color: #000;
    }
    .common-box {
        position: relative;
        z-index: 1;
        margin: -1.2vw 0 0;
        padding: 0;
    }
}


/* 二级导航 */

.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: #228d00;
}

@media (min-width: 1200px) {
    .common-nav {
        position: relative;
        z-index: 58;
        padding: 0 2vw;
        background: #228d00;
        border-radius: 1.2vw;
    }
    .common-nav ul {
        display: flex;
        justify-content: space-around;
    }
    .common-nav ul li {
        width: auto;
        padding: 0;
    }
    .common-nav ul li a {
        display: block;
        position: relative;
        font: 400 0.9vw/2.4vw "微软雅黑";
        text-align: center;
        color: #93c882;
        background: none;
    }
    .common-nav ul li a:hover {
        color: #fff;
    }
    .common-nav ul li a:hover::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -16px;
        width: 100%;
        height: 16px;
        background: url(../images/com_nav_li.png) no-repeat center 0;
    }
    .common-nav ul li.active a {
        color: #fff;
        background: none;
    }
    .common-nav ul li.active a::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -16px;
        width: 100%;
        height: 16px;
        background: url(../images/com_nav_li.png) no-repeat center 0;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    font-size: 12px;
    line-height: 20px;
    background: #228d00;
}

footer p {
    padding: 0 2px;
    color: #fff;
}

footer a {
    padding: 0 2px;
    color: #fff;
}

@media (min-width: 1200px) {
    footer {
        padding: 1vw 0;
        font-size: 0.9vw;
        line-height: 1.2vw;
    }
    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: #228d00;
    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: 1vw 2vw;
        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: #228d00;
        border-color: #228d00;
    }
}