article {
    padding: 60px 0 10px;
    background: no-repeat center center/cover;
}

.common-main {
    padding: 12px;
}

.common-title {
    font: 400 24px/30px '微软雅黑';
    color: #333;
    text-align: center;
}

.bread {
    padding: 10px 0 20px;
    font: 400 12px/18px '微软雅黑';
    color: #333;
    text-align: center;
}

.bread a {
    color: #000;
}

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

.slide-fix{
    display: none;
}
@media (min-width: 1200px) {
    article{
        padding: 180px 0 100px;
        border-bottom: 15px solid #3cb8b6;
    }
    .common-main {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }

    .common-title{
        font: 400 48px/54px '微软雅黑';

    }

    .bread{
        padding: 20px 0 40px;
        font: 400 14px/20px '微软雅黑';
    }
    
    .common-box {
        padding: 0;
    }

    .slide-fix{
        display: block;
        top: 35%;
        bottom: auto;
    }
}

/* 二级导航 */

.common-nav {
    padding: 2px;
}

.common-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    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 {
        padding: 0 0 50px;
    }

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

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

    .common-nav ul li a {
        display: block;
        width: 164px;
        font: 400 16px/56px '微软雅黑';
        color: #000;
        background: url(../images/part2_nav_li.png) no-repeat -162px center;
        transition: 0.6s;
    }

    .common-nav ul a span {
        display: block;
        padding-left: 50px;
        text-align: left;
        transition: 0.6s background;
    }

    .common-nav ul a:hover {
        color: #fff;
        background-position: 0 center;
    }

    .common-nav ul a:hover span {
        padding-left: 65px;
        background: url(../images/part2_nav_icon.png) no-repeat 15px center;
    }
    .common-nav ul a:hover {
        color: #fff;
        background-position: 0 center;
    }

    .common-nav ul a:hover span {
        padding-left: 65px;
        background: url(../images/part2_nav_icon.png) no-repeat 15px center;
    }


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

    .common-nav ul li.active a span {
        padding-left: 65px;
        background: url(../images/part2_nav_icon.png) no-repeat 15px center;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
}

footer p {
    padding: 0 5px;
    font: 400 14px/20px "微软雅黑";
    color: #333;
    text-align: center;
}

@media (min-width: 1200px) {
    footer {
       /* width: 500px; */
        padding-left: 30px;
        background: url(../images/foot_line.png) no-repeat 0 15px;
    }

    footer p {
        padding: 0 10px;
        font: 400 14px/24px "微软雅黑";
        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: #535353;
    border: 1px solid #535353;
}

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

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

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        margin-top: 10px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.8);
    }

    .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: #007836;
        border-color: #007836;
    }
}