.com-banner {
    position: relative;
}

.com-banner i {
    display: block;
}

.com-banner i img {
    width: 100%;
}

.com-logo {
    position: absolute;
    z-index: 10;
    left: 0.4rem;
    top: 0.6rem;
}

.com-logo img {
    width: 0.8rem;
}

@media (min-width: 1200px) {
    .com-logo {
        left: 20vw;
        top: 8vw;
    }

    .com-logo img {
        width: 10vw;
    }
}

article {
    padding: 0 0 10px;
}

.common-main {
    padding: 12px;
}

.common-name {
    text-align: center;
    background: url(../images/com_title.png) no-repeat center center/6rem;
}

.common-name .ch {
    font-size: 18px;
    line-height: 24px;
    color: #000;
}

.common-name .ch span {
    color: #b40d0f;
}

.common-name .en {
    font-size: 12px;
    line-height: 20px;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bread {
    padding: 0.2rem 0;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    text-align: center;
}

.bread a {
    color: #000;
}

.common-box {
    min-height: 420px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        padding: 3vw 0 2vw;
    }

    .common-main {
        width: 62vw;
        margin: 0 auto;
        padding: 0;
    }

    .common-name {
        text-align: center;
        background: url(../images/com_title.png) no-repeat center center/24vw;
    }

    .common-name .ch {
        font-size: 1.8vw;
        line-height: 2.4vw;
        color: #000;
    }

    .common-name .ch span {
        color: #b40d0f;
    }

    .common-name .en {
        font-size: 12px;
        line-height: 20px;
        color: #000;
        letter-spacing: 8px;
        text-transform: uppercase;
    }

    .bread {
        padding: 1vw 0 3vw;
        font-size: 14px;
        line-height: 16px;
        color: #000;
        text-align: center;
    }

    .bread a {
        color: #000;
    }

    .common-box {
        padding: 0;
        background: #f6f7f9;
    }
}


/* 二级导航 */

.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: #8e090a;
}

@media (min-width: 1200px) {
    .common-nav {
        padding: 0;
    }

    .common-nav ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        border: 1px solid #000;
        border-radius: 0;
    }

    .common-nav ul li {
        width: 50%;
        flex-grow: 1;
        padding: 0;
    }

    .common-nav ul li a {
        display: block;
        font-size: 0.9vw;
        line-height: 2.4vw;
        text-align: center;
        color: #000;
        background: none;
    }

    .common-nav ul li a span {
        display: block;
    }

    .common-nav ul li a:hover {
        background: #b40d0f;
    }

    .common-nav ul li a:hover span {
        color: #fff;
        background: url(../images/com_shape.png) no-repeat center bottom;
    }

    .common-nav ul li.active a {
        background: #b40d0f;
    }

    .common-nav ul li.active a span {
        color: #fff;
        background: url(../images/com_shape.png) no-repeat center bottom;
    }
}


/* 网站翻页 */

.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: #b40d0f;
    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: 1.5vw 1vw;
    }

    .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: #b40d0f;
        border-color: #b40d0f;
    }
}