article {
    padding: 60px 0 10px;
    background: no-repeat center center/cover;
}

.common-main {
    padding: 10px;
}

.common-top {
    padding: 20px 0 10px;
}

.common-title {
    padding: 2rem 0 0;
    background: url(../images/common_title.png) no-repeat center 0/6rem;
}

.common-title p {
    width: 4.6rem;
    margin: 0.1rem auto;
    font: 400 18px/30px '微软雅黑';
    color: #000;
    background: url(../images/common_line.png) no-repeat right center;
}

.bread {
    display: none;
}

.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 {
        position: relative;
        padding: 180px 0 120px;
    }

    .common-main {
        width: 1200px;
        margin: 0 auto;
        background: url(../images/common_icon.png) no-repeat 0 0;
    }

    .common-top {
        display: flex;
        justify-content: space-between;
        padding: 0 0 60px;
    }

    .common-title {
        padding: 80px 0 0 135px;
        background: url(../images/common_title.png) no-repeat 0 0;
    }

    .common-title p {
        width: auto;
        font: 400 24px/36px '微软雅黑';
        color: #000;
        background: url(../images/common_line.png) no-repeat 110px center;
    }

    .bread {
        display: block;
        font: 400 12px/18px '微软雅黑';
        color: #000;
    }

    .bread a {
        color: #000;
    }

    .common-box {
        margin: 0;
        padding: 80px 50px 20px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid #9a000b;
    }
}


/* 二级导航 */

.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 {
        margin: 0;
        padding: 0 0 40px;
    }

    .common-nav ul {
        display: flex;
        justify-content: center;
    }

    .common-nav ul li {
        width: auto;
        padding: 0 0 0 48px;
    }


    .common-nav ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 108px;
        padding: 0 5px;
        font: bold 16px/1 '微软雅黑';
        color: #000;
        text-align: center;
        background: none;
        border: 3px solid #000;
    }

    .common-nav ul li a:hover {
        color: #fff;
        background: #99020a;
        border-color: #bc454b;
    }

    .common-nav ul li.active a {
        color: #fff;
        background: #99020a;
        border-color: #bc454b;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    background: #313634;
}

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: #9a000b;
    }

    footer p {
        padding: 12px 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: 30px;
    margin: 0 1px;
    font: 400 14px/30px "微软雅黑";
    color: #c50413;
    background: #fff;
}

.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: space-between;
        padding: 20px 0;
    }

    .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: 4px 12px;
        justify-content: center;
        align-items: center;
    }

    .pages-right a:hover {
        color: #fff;
        background: #c50413;
    }
}