.m-top {
    position: relative;
}

article {
    padding: 20px 0 0;
}

.common-main {
    padding: 0 0 10px;
}

.common-box {
    min-height: 420px;
    margin: 10px 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1200px) {
    article {
        min-height: 950px;
        padding: 100px 0 30px;
    }

    .common-main {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }

    .common-box {
        min-height: 600px;
        margin: 0;
        padding: 20px;
    }

}

/* 二级标题 */
.common-logo {
    padding: 10px 0 0;
    text-align: center;
}

.common-logo img {
    width: 100px;
}

.common-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    padding: 10px 0;
    text-align: center;
    background: url(../images/com_title_bg.png) no-repeat center 0/90% 100%;
}

.common-title {
    width: 100%;
    font: 400 24px/30px '微软雅黑';
    color: #e63a30;
}

.common-detail {
    font: bold 14px/18px '微软雅黑';
    text-align: center;
}

@media (min-width: 1200px) {

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

    .common-logo img {
        width: auto;
    }

    .common-top {
        margin: 10px 0 40px;
        padding: 0;
        text-align: center;
        background: url(../images/com_title_bg.png) no-repeat center 0;
    }

    .common-title {
        font: 400 42px/54px '微软雅黑';
        color: #e63a30;
    }

    .common-detail {
        font: bold 14px/18px '微软雅黑';
    }
}


.common-nav {
    padding: 2px;
}

.common-nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.common-nav ul li {
    width: 49.5%;
    padding: 2px 0;
}

.common-nav ul li a {
    display: block;
    font: 400 14px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
}

.common-nav ul li.active a {
    background: #c01a20;
}

@media (min-width: 1200px) {

    .common-nav {}

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

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

    .common-nav ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 66px;
        height: 128px;
        padding: 0 50px 0 40px;
        font: 400 14px/16px '微软雅黑';
        color: #000;
        background: url(../images/common_li_bg.png) no-repeat 0 0;
    }

    .common-nav ul li a:hover {
        color: #e63a30;
    }

    .common-nav ul li.active {
        background: none;
    }

    .common-nav ul li.active a {
        color: #e63a30;
        background: url(../images/common_li_bg.png) no-repeat 0 0;
    }
}


/* 网站页脚 */
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 5px 0;
    background: #3a3a3a;
}

footer p {
    position: relative;
    z-index: 10;
    padding: 0 5px;
    font: 400 12px/20px '微软雅黑';
    color: #fff;
}

@media (min-width: 1200px) {
    .public {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 120px 0 0;
        background: url(../images/dou.png) no-repeat center 0;
    }

    footer {
        padding: 0;
    }

    footer p {
        font: 400 12px/36px '微软雅黑';
    }
}



/* 网站翻页 */

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

.pages-left {
    display: none;
}

.pages-right {
    display: flex;
}

.pages-right a {
    margin: 0 2px;
    padding: 0 10px;
    font: 400 14px/30px '微软雅黑';
    color: #707070;
    background: #fff;
    border-radius: 5px;
}

.pages-right a.page-num {
    color: #fff;
    background: #008a00;
    border-color: #008a00;
}

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

@media (min-width:1200px) {
    .pages {
        justify-content: space-between;
        margin: 15px 0 0;
        padding: 15px 20px;
        /* background: #fff; */
    }

    .pages-left {
        display: block;
        padding-right: 10px;
    }

    .pages-left span {
        font: 400 14px/30px '微软雅黑';
    }

    .pages-right a {
        margin: 0 1px;
        padding: 0 10px;
        font: 400 14px/30px '微软雅黑';
    }

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

    .pages-right a:hover {
        color: #fff;
        background: #008a00;
        border-color: #008a00;
    }
}