article {
    padding: 100px 0 10px;
    background: no-repeat center center/cover;
}

.common-main {
    padding: 0 0 10px;
}

.common-box {
    min-height: 420px;
    margin: 10px 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

.common-title {
    font: 400 24px/30px "微软雅黑";
    color: #c50413;
    text-align: center;
}

.common-bread {
    padding: 0 0 20px;
    font: 400 12px/18px "微软雅黑";
    color: #c50413;
    text-align: center;
}

.common-bread a {
    color: #c50413;
}

@media (min-width: 1200px) {
    article {
        padding: 200px 0 75px;
    }
    .common-main {
        position: relative;
        z-index: 1;
        width: 1200px;
        min-height: 900px;
        margin: 0 auto;
    }
    .common-title {
        font: 400 48px/54px "微软雅黑";
        color: #c50413;
        text-align: center;
    }
    .common-bread {
        padding: 0 0 50px;
        font: 400 14px/20px "微软雅黑";
        color: #c50413;
        text-align: center;
    }
    .common-bread a {
        color: #c50413;
    }
    .common-box {
        margin: 0;
        padding: 0;
        background: none;
    }
}


/* 二级导航 */

.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 50px;
    }
    .common-nav ul {
        display: flex;
        justify-content: center;
    }
    .common-nav ul li {
        width: 105px;
        margin: 0 18px;
        padding: 0;
    }
    .common-nav ul li a {
        display: block;
        font: 400 18px/36px "微软雅黑";
        text-align: center;
        color: #fff;
        background: #000;
    }
    .common-nav ul li a:hover {
        color: #fff;
        background: #c50413;
    }
    .common-nav ul li.active a {
        color: #fff;
        background: #c50413;
    }
}


/* 网站页脚 */

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: #f3f1e5;
        border-bottom: 8px solid #c1192e;
    }
    footer p {
        padding: 0 10px;
        font: 400 16px/36px "微软雅黑";
        color: #000;
    }
}


/* 网站翻页 */

.pages {
    display: flex;
    justify-content: center;
    margin: 5px 0 0;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background: #c1192e;
}

.pages-left {
    display: none;
}

.pages-right {
    display: flex;
}

.pages-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    margin: 0 1px;
    font: 400 14px/24px "微软雅黑";
    color: #fff;
    border: 1px solid #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: 18px 50px;
        background: #c1192e;
    }
    .pages-left {
        display: block;
        padding-right: 10px;
        font: 400 14px/30px "微软雅黑";
    }
    .pages-right a {
        width: 32px;
        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: #c50413;
        background: #fff;
    }
}