.common-banner {
    position: relative;
}

.common-banner i {
    display: block;
}

.common-banner i img {
    width: 100%;
}

.common-title {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 40px;
    width: 100%;
    color: #1e64b5;
    text-align: center;
}

.common-title .ch {
    font: 400 24px/30px '微软雅黑';
}

.common-title .en {
    font: 400 12px/16px '微软雅黑';
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .common-title {
        position: absolute;
        z-index: 10;
        left: 50%;
        top: auto;
        bottom: 121px;
        width: 1200px;
        margin-left: -600px;
        color: #1e64b5;
        text-align: left;
    }

    .common-title .ch {
        font: 400 36px/42px '微软雅黑';
    }

    .common-title .en {
        font: 400 14px/20px '微软雅黑';
        text-transform: uppercase;
    }

}


.common-main {
    padding: 10px 12px 12px;
}

.common-box {
    position: relative;
    z-index: 30;
    min-height: 420px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

.bread {
    width: 100%;
    padding: 5px;
    font: 400 14px/20px '微软雅黑';
    color: #000;
    text-align: center;
    background: #f8f8f8;
    border-bottom: 1px solid #787878;
}

.bread a {
    color: #000;
}

@media (min-width: 1200px) {
    article {
        padding: 0;
        background: #f7f7f7 url(../images/com_box_bg.png) no-repeat center bottom;
    }

    .common-main {
        position: relative;
        z-index: 50;
        width: 1200px;
        margin: 0 auto;
        padding: 0;
        background: #fff;
    }

    .common-main::before {
        content: '';
        position: absolute;
        z-index: 1;
        left: -24px;
        top: -50px;
        width: 112px;
        height: 280px;
        background: url(../images/shadow_left.png) no-repeat 0;
    }

    .common-main::after {
        content: '';
        position: absolute;
        z-index: 1;
        right: -24px;
        top: -50px;
        width: 112px;
        height: 280px;
        background: url(../images/shadow_right.png) no-repeat 0;
    }

    .bread {
        position: absolute;
        z-index: 30;
        left: 0;
        top: -48px;
        width: 100%;
        padding: 0 42px;
        font: 400 14px/48px '微软雅黑';
        color: #000;
        text-align: left;
        background: #f8f8f8;
        border-bottom: 1px solid #787878;
    }

    .bread a {
        color: #000;
    }

    .common-box {
        padding: 0;
        background: #fefdfd;
    }
}

@media (min-width: 1480px) {}


/* 二级导航 */

.common-nav {
    padding: 10px 10px 0;
}

.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: #1e64b5;
}

@media (min-width: 1200px) {
    .common-nav {
        position: absolute;
        z-index: 10;
        left: 50%;
        top: 0;
        width: 1280px;
        margin-left: -640px;
        padding: 0 0 0 40px;
        background: #1e64b5;
    }

    .common-nav ul {
        display: flex;
        text-align: left;
    }

    .common-nav ul li {
        width: auto;
        padding: 0 10px;
        background: url(../images/nav_li_border.png) no-repeat 0 center;
    }

    .common-nav ul li:nth-child(1) {
        background: none;
    }

    .common-nav ul li a {
        display: block;
        padding: 0 20px;
        font: 400 16px/36px '微软雅黑';
        color: #fff;
        background: none;
    }

    .common-nav ul li a:hover {
        color: #fff;
        background: #ec6f24;
    }

    .common-nav ul li.active a {
        color: #fff;
        background: #ec6f24;
    }
}


/* 网站翻页 */

.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 #e5e5e5;
    border-radius: 5px;
}

.pages-right a.page-num {
    color: #fff;
    background: #004fab;
    border-color: #004fab;
}

.pages-right a:first-child,
.pages-right a:last-child {
    display: none;
}

@media (min-width: 1200px) {
    .pages {
        justify-content: space-between;
        padding: 20px 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: #004fab;
        border-color: #004fab;
    }

}