.common-main {
    padding: 12px;
}

.common-title {
    margin: 0 4px;
    font-size: 18px;
    line-height: 42px;
    color: #fff;
    text-align: center;
    background: #01843e;
}

.common-box {
    min-height: 420px;
    padding: 0 10px 10px;
    margin: 0;
}

.common-top {
    display: flex;
    justify-content: space-between;
    background: url(../images/com_line.jpg) repeat-x 0 bottom/100% 4px;
}

.common-top p {
    padding: 0 0 4px;
    font-size: 16px;
    line-height: 36px;
    color: #01843e;
    background: url(../images/red.jpg) no-repeat 0 bottom/100% 4px;
}

.bread {
    font-size: 14px;
    line-height: 36px;
    color: #999999;
}

.bread a {
    color: #999;
}

@media (min-width: 768px) {
    article {
        padding: 0;
        background: #ededed;
    }
    .common-main {
        display: flex;
        justify-content: space-between;
        width: 1270px;
        margin: 0 auto;
        padding: 35px;
        background: rgba(255, 255, 255, 0.95);
    }
    .common-slide {
        width: 265px;
    }
    .common-title {
        margin: 0;
        font-size: 24px;
        line-height: 72px;
        color: #fff;
        text-align: center;
        background: #01843e;
    }
    .common-box {
        width: 900px;
        margin: 0;
        padding: 5px 0 0;
    }
    .common-top {
        display: flex;
        justify-content: space-between;
        background: url(../images/com_line.jpg) repeat-x 0 bottom;
    }
    .common-top p {
        padding: 0 0 8px;
        font-size: 18px;
        line-height: 36px;
        color: #01843e;
        background: url(../images/red.jpg) no-repeat 0 bottom/100% 8px;
    }
    .bread {
        font-size: 14px;
        line-height: 36px;
        color: #999999;
    }
    .bread a {
        color: #999;
    }
}


/* 二级导航 */

.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: #01843e;
}

@media (min-width: 768px) {
    .common-nav {
        padding: 0;
    }
    .common-nav ul {
        display: block;
    }
    .common-nav ul li {
        width: auto;
        padding: 0 0 3px;
        background: #fff;
    }
    .common-nav ul li a {
        display: block;
        padding: 15px 0 15px 20px;
        font: 400 16px/30px "微软雅黑";
        text-align: left;
        color: #000;
        background: #f5f5f5 url(../images/com_arrow.png) no-repeat 240px center;
    }
    .common-nav ul li a:hover {
        color: #000;
        background: #acd3be url(../images/com_arrow.png) no-repeat 240px center;
    }
    .common-nav ul li.active a {
        color: #000;
        background: #acd3be url(../images/com_arrow.png) no-repeat 240px center;
    }
}


/* 网站翻页 */

.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;
    background: #fff;
    border: 1px solid #333;
}

.pages-right a.page-num {
    color: #fff;
    background: #01843e;
    border: 1px solid #000;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 768px) {
    .pages {
        justify-content: space-between;
        padding: 1.5vw 0;
    }
    .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: #01843e;
        border-color: #01843e;
    }
}