article {
    position: relative;
    padding: 45px 0 10px;
    background: no-repeat center center/cover;
}

.common-main {
    position: relative;
    z-index: 10;
    padding: 12px;
}

.common-title {
    padding: 0 0 20px;
    text-align: center;
}

.common-title img {
    width: 5rem;
}

.common-box {
    min-height: 420px;
    margin: 0 4px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
}
.bread{
    display:none;
}
@media (min-width: 1200px) {
    article {
        min-height: 950px;
        padding: 170px 0 0;
    }

    .common-main {
        position: relative;
        z-index: 1;
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }

    .common-title {
        padding: 0 0 30px;
        text-align: center;
    }

    .common-title img {
        width: auto;
    }

    .common-box {
        position: relative;
        z-index: 1;
        margin: 0;
        padding: 60px;
        background: rgba(255, 255, 255, 0.85);
    }
    .bread{
        display:block;
        padding:0  0 30px;
        font:400 16px/30px '微软雅黑';
        color:#000;
        text-align:center;
    }
    .bread a{
        color:#000;
    }
}



/* 二级导航 */

.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: #ea0000;
}

@media (min-width: 1200px) {
    .common-nav {
        position: relative;
        z-index: 10;
        margin-bottom: -45px;
        padding: 0;
    }

    .common-nav ul {
        display: flex;
        justify-content: center;

    }

    .common-nav ul li {
        width: auto;
        padding: 10px;
    }

    .common-nav ul li a {
        display: block;
        width: 140px;
        padding: 0 10px;
        font: bold 18px/56px '微软雅黑';
        color: #fff;
        background: #009944;
        border: 3px solid #fff;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 15px;
        transform: skew(-20deg, 0deg);
        transition: 0.3s;
    }

    .common-nav ul li a span {
        display: block;
        text-align: center;
        transform: skew(20deg, 0deg);
    }

    .common-nav ul li a:hover {
        background: #ea0000;
    }

    .common-nav ul li a:hover span {
        background: url(../images/part2_icon.png) no-repeat right center;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    background: #424242;
}

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 5px;
        font: 400 14px/36px "微软雅黑";
        color: #fff;
    }
}


/* 网站翻页 */

.pages {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}

.pages-left {
    display: none;
}

.pages-right {
    display: flex;
}

.pages-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    margin: 0 3px;
    font: 400 14px/40px "微软雅黑";
    color: #000;
    background: #fff;
    border-radius: 5px;
}

.pages-right a.page-num {
    color: #fff;
    background: #c50413;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 1200px) {
    .pages {
        justify-content: center;
        margin: 30px 0 0;
        padding: 10px 0;
        color: #000;
        background: rgba(255, 255, 255, 0.8);
    }

    .pages-left {
        display: block;
        padding-right: 10px;
        font: 400 14px/38px "微软雅黑";
    }

    .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: #c50413;
    }
}