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

.common-main {
    padding: 12px;
}

.bread {
    font: 400 12px/18px '微软雅黑';
    color: #8a8a8a;
    text-align: center;
}

.bread a {
    color: #8a8a8a;
}

.slide-img {
    padding: 5px 2px;
}

.slide-img img {
    width: 100%;
}

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

@media (min-width: 1200px) {
    header {
        background-image: url(../images/com_head.png);
    }

    .head {
        border: 0;
    }

    article {
        padding: 200px 0 60px;
    }

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

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

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

    .slide {
        width: 313px;
    }

    .section {
        width: 868px;
        padding: 30px 0;
        background: url(../images/com_bg_top.png) no-repeat center 0,
            url(../images/com_bg_bottom.png) no-repeat center bottom;
    }

    .common-box {
        padding: 0 30px;
        background: url(../images/com_bg_left.png) repeat-y 0 0,
            url(../images/com_bg_right.png) repeat-y right 0;
    }
}


/* 二级导航 */

.common-nav {
    padding: 2px;
}

.common-nav ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 2px;
}

.common-nav li {
    width: 50%;
    padding: 2px;
}

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

.nav-li-icon {
    display: none;
}

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

@media (min-width: 1200px) {
    .common-nav {
        padding: 5px 0 0;
    }

    .common-nav ul {
        display: block;
    }

    .common-nav li {
        width: auto;
        padding: 0;
        background: url(../images/com_nav_li.png) no-repeat 0 0;
    }

    .common-nav a {
        display: flex;
        align-items: center;
        height: 61px;
        padding: 0 60px;
        font: 400 16px/36px "微软雅黑";
        text-align: center;
        color: #545454;
        background: none;
    }

    .nav-li-icon {
        display: block;
        position: relative;
        width: 60px;
        height: 45px;
        text-align: left;
    }

    .nav-li-icon span {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }

    .common-nav p {
        width: 120px;
        text-align: left;
    }

    .nav-li-arrow {
        width: 15px;
        height: 15px;
        background: url(../images/com_arrow.png) no-repeat center center;
    }

    .common-nav a:hover {
        color: #e40000;
    }

    .common-nav a:hover i {
        opacity: 0;
    }

    .common-nav a:hover span {
        opacity: 1;
    }

    .common-nav a:hover .nav-li-arrow {
        background-image: url(../images/com_arrowa.png);
    }
}

/* 网站页脚 */

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

footer p {
    padding: 0 5px;
    color: #fff;
    text-align: center;
}

@media (min-width: 1200px) {
    footer {
        display: flex;
        justify-content: center;

        font: 400 12px/42px '微软雅黑';
        color: #ce9b00;
        background: #500d00;
    }
}


/* 网站翻页 */

.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: #000;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

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

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

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        padding: 10px 30px;
    }

    .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: #c50413;
    }
}