article {
    padding: 80px 0 4px;
    background: no-repeat center center/cover;
}

.common-main {
    padding: 12px;
}

.common-title {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    text-align: center;
    background: url(../images/com_line.png) no-repeat center bottom/72px;
}

.bread {
    padding: 0.2rem 0;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    text-align: center;
}

.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 {
        padding: 10vw 0 0;
    }
    .common-main {
        width: 62.5vw;
        margin: 0 auto;
        padding: 0;
    }
    .common-title {
        font-size: 2.4vw;
        line-height: 2.4vw;
        color: #000;
        text-align: center;
        background: url(../images/com_line.png) no-repeat center bottom/9.4vw;
    }
    .bread {
        padding: 1vw 0 0;
        font-size: 14px;
        line-height: 20px;
        color: #000;
        text-align: center;
    }
    .bread a {
        color: #000;
    }
    .common-box {
        min-height: 480px;
        margin: 0;
        padding: 0;
        background: none;
        border: 1px solid #000;
        border-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: #008c3e;
}

@media (min-width: 1200px) {
    .common-nav {
        padding: 2.5vw 0;
    }
    .common-nav ul {
        display: flex;
        justify-content: center;
    }
    .common-nav ul li {
        width: auto;
        padding: 0 0.5vw;
    }
    .common-nav ul li a {
        display: block;
        position: relative;
        z-index: 10;
        width: 7.5vw;
        font: 400 1vw/2vw "微软雅黑";
        text-align: center;
        color: #fff;
        background: #000;
    }
    .common-nav ul li a::before {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 10px;
        width: 100%;
        height: 10px;
        background: url(../images/three.png) no-repeat center 0;
        opacity: 0;
    }
    .common-nav ul li a:hover {
        color: #fff;
        background: #008c3e;
    }
    .common-nav ul li a:hover::before {
        bottom: -10px;
        opacity: 1;
    }
    .common-nav ul li.active a {
        color: #fff;
        background: #008c3e;
        opacity: 1;
    }
    .common-nav ul li.active a::before {
        bottom: -10px;
        opacity: 1;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
    font: 400 14px/20px "微软雅黑";
    background: #008c3e;
}

footer p {
    padding: 0 5px;
    color: #fff;
}

footer a {
    padding: 0 5px;
    color: #fff;
}

@media (min-width: 1200px) {
    footer {
        display: flex;
        justify-content: center;
        padding: 1vw 0;
        font: 400 14px/20px "微软雅黑";
        background: #008c3e;
    }
    footer p {
        padding: 0 5px;
        color: #fff;
    }
    footer a {
        padding: 0 5px;
        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;
    border: 1px solid #333;
}

.pages-right a.page-num {
    color: #fff;
    background: #008c3e;
    border: 1px solid #000;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        padding: 2vw 1vw 5vw;
    }
    .pages-left {
        display: block;
        padding-right: 10px;
        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: #fff;
        background: #008c3e;
        border-color: #008c3e;
    }
}