article {
    padding: 60px 0 10px;
    background: no-repeat center center/cover;
}

.common-main {
    padding: 12px;
}

.common-title {
    padding: 0.2rem 0;
    text-align: center;
}

.common-title .ch {
    margin-bottom: 0.2rem;
    font: bold 0.6rem/0.8rem '微软雅黑';
    color: #474747;
    text-align: center;
}

.common-title .en {
    width: 7rem;
    margin: 0 auto;
    font: 600 0.4rem/0.8rem '微软雅黑';
    color: #fff;
    background: #0071da;
    border-radius: 0.2rem;
}

.common-box {
    min-height: 420px;
    margin: 0 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

.com-jx {
    display: none;
}

@media (min-width: 1200px) {
    article {
        position: relative;
        padding: 180px 0 120px;
    }

    .common-main {
        position: relative;
        z-index: 8;
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }

    .common-title {
        padding: 0 0 18px;
        text-align: center;
        background: url(../images/com_border.png) no-repeat center bottom;
    }

    .common-title .ch {
        margin-bottom: 30px;
        font: bold 42px/48px '微软雅黑';
        color: #474747;
        text-align: center;
    }

    .common-title .en {
        width: 380px;
        margin: 0 auto;
        font: 600 20px/42px '微软雅黑';
        color: #fff;
        background: #0071da;
    }

    .common-box {
        margin: 0;
        padding: 0;
        background: rgba(0, 113, 218, 0.8);
    }

    .com-jx {
        display: block;
        position: absolute;
        z-index: 1;
        right: 0;
        bottom: 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: #c50413;
}

@media (min-width: 1200px) {
    .common-nav {
        padding: 25px 0;
    }

    .common-nav ul {
        display: flex;
        justify-content: center;
    }

    .common-nav ul li {
        width: auto;
        padding: 0 30px;
    }

    .common-nav ul li a {
        display: block;
        font: bold 16px/36px "微软雅黑";
        text-align: center;
        color: #000;
        background: #ae7678;
    }

    .common-nav ul li a p {
        padding: 0 25px;
        background: #fff;
        transform: translate3d(4px, -4px, 0);
        transition: 0.5s;
    }

    .common-nav ul li a:hover p {
        color: #fff;
        background: #0071da;
        transform: translate3d(0, 0, 0);
    }

    .common-nav ul li.active p {
        color: #fff;
        background: #0071da;
        transform: translate3d(0, 0, 0);
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    background: #000;
}

footer p {
    padding: 0 5px;
    font: 400 14px/20px "微软雅黑";
    color: #fff;
    text-align: center;
}

@media (min-width: 1200px) {
    footer {
        display: flex;
        justify-content: center;
        background: #000;
    }

    footer p {
        padding: 0 10px;
        font: 400 16px/30px "微软雅黑";
        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-radius: 5px;
}

.pages-right a.page-num {
    color: #fff;
    background: #0071da;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        padding: 20px 0;
    }

    .pages-left {
        display: block;
        padding: 0 10px;
        font: 400 14px/30px "微软雅黑";
        background: #fff;
        border-radius: 10px;
    }

    .pages-right a:first-child,
    .pages-right a:last-child {
        display: flex;
        width: auto;
        padding: 0 12px;
        justify-content: center;
        align-items: center;
    }

}