article {
    padding: 60px 0 10px;
    background: no-repeat center center/cover;
}

.common-main {
    padding: 12px;
}

.common-title {
    position: relative;
}

.common-title .ch {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.2rem;
    font: bold 20px/30px '微软雅黑';
    color: #00936f;
    background: url(../images/com_title_bg.png) no-repeat center center/auto 100%;
    text-shadow: #fff 1px 0 0,
        #fff 0 1px 0,
        #fff -1px 0 0,
        #fff 0 -1px 0;
}

.common-title .en {
    padding: 0.4rem 0;
    text-align: center;
}

.common-title .en img {
    width: 90%;
}

.common-box {
    min-height: 420px;
    margin: 0 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        padding: 120px 0 60px;
    }

    .common-main {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }

    .common-title {
        position: relative;
        padding-bottom: 75px;
    }

    .common-title .ch {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
        width: 320px;
        height: 90px;
        margin: 0 auto;
        font: bold 42px/48px '微软雅黑';
        color: #00936f;
        background: url(../images/com_title_bg.png) no-repeat center center;
    }

    .common-title .en {
        position: absolute;
        left: 0;
        top: 120px;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .common-title .en img {
        width: auto;
    }

    .common-bg {
        position: relative;
        z-index: 10;
        padding: 25px;
        background: rgba(255, 255, 255, 0.5);
    }

    .common-box {
        margin: 0;
        padding: 0;
        background: #fff;
    }

}


/* 二级导航 */

.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: #c50413;
}

@media (min-width: 1200px) {
    .common-nav {
        padding: 0;
        background: #00936f;
    }

    .common-nav ul {
        display: flex;
        justify-content: center;
    }

    .common-nav ul li {
        width: auto;
        padding: 30px 50px 20px;
    }

    .common-nav ul li a {
        display: block;
        padding-bottom: 10px;
        font: bold 18px/24px "微软雅黑";
        text-align: center;
        color: #fff;
        background: url(../images/com_nav_li.jpg) no-repeat 0 bottom/0 4px;
        transition: 0.6s;
    }

    .common-nav ul li a:hover {
        color: #fff;
        background-color: transparent;
        background-size: 100% 4px;
    }

    .common-nav ul li.active a {
        color: #fff;
        background-color: transparent;
        background: url(../images/com_nav_li.jpg) no-repeat 0 bottom/100% 4px;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    background: #00936f;
}

footer p {
    padding: 0 5px;
    font: 400 14px/20px "微软雅黑";
    color: #fff;
    text-align: center;
}

@media (min-width: 1200px) {
    footer {
        display: flex;
        justify-content: center;
    }

    footer p {
        padding: 0 10px;
        font: 400 14px/36px "微软雅黑";
        color: #fff;
    }
}


/* 网站翻页 */

.pages {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
    color: #189c77;
}

.pages-left {
    display: none;
}

.pages-right {
    display: flex;
}

.pages-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    margin: 0 1px;
    font: 400 16px/36px "微软雅黑";
    color: #189c77;
    background: #fff;
}

.pages-right a.page-num {
    color: #fff;
    background: #189c77;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        margin: 20px 0 0;
        padding: 15px;
        background: rgba(255, 255, 255, 0.5) url(../images/page_bg.png) no-repeat 15px center/auto 50px;
    }

    .pages-left {
        display: block;
        padding: 0 10px;
        font: 400 16px/36px "微软雅黑";
        
    }

    .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: #00936f;
    }

}