.com-banner {
    position: relative;
}

.com-banner {
    position: relative;
    border-bottom: 2px solid #2a417e;
}

.com-img {
    position: relative;
    z-index: 1;
}

.com-img img {
    width: 160%;
    margin-left: -30%;
}

.com-font {
    position: absolute;
    z-index: 10;
    left: 0.2rem;
    bottom: 0;
    padding: 0.2rem 0;
    color: #fff;
    background: url(../images/com_line.jpg) no-repeat 0 0;
}

.com-font p {
    font-weight: bold;
    font-size: 0.3rem;
    line-height: 0.36rem;
    color: #fff;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .com-banner {
        position: relative;
        border-bottom: 8px solid #2a417e;
    }
    .com-img {
        position: relative;
        z-index: 1;
    }
    .com-img img {
        width: 100%;
        margin: 0;
    }
    .com-font {
        left: 18vw;
        width: 62vw;
        padding: 1.8vw 0;
        color: #fff;
        background: url(../images/com_line.jpg) no-repeat 0 0;
    }
    .com-font p {
        font-size: 1.5vw;
        line-height: 1.8vw;
    }
}

article {
    padding: 0;
}

.com-top {
    padding: 1px 16px 0.2rem;
    background: #eff6fc;
}

.com-top-line {
    margin: 0.2rem 0;
}

.com-top-title {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: #000;
    text-align: center;
}

.bread {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    text-align: center;
}

.bread a {
    color: #000;
}

.common-main {
    padding: 12px;
}

.common-box {
    min-height: 420px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        padding: 0 2.5vw;
    }
    .com-top {
        padding: 1.4vw 0;
        background: #eff6fc;
    }
    .com-top-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 62.5vw;
        margin: 0 auto;
    }
    .com-top-title {
        font-size: 1.2vw;
        line-height: 1.5vw;
        color: #000;
    }
    .bread {
        font-size: 14px;
        line-height: 20px;
        color: #000;
    }
    .bread a {
        color: #000;
    }
    .common-main {
        width: 62.5vw;
        margin: 0 auto;
        padding: 3vw 0;
    }
    .common-box {
        padding: 0;
    }
}


/* 二级导航 */

.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: #2a417e;
}

@media (min-width: 1200px) {
    .common-nav {
        width: 62.5vw;
        margin: 0 auto;
        padding: 1.2vw 0 0;
    }
    .common-nav ul {
        display: flex;
        justify-content: start;
    }
    .common-nav ul li {
        width: auto;
        padding: 0 1.6vw 0 0;
    }
    .common-nav ul li a {
        display: block;
        min-width: 6vw;
        padding: 0 1.2vw;
        font: 400 1vw/1.4vw "微软雅黑";
        text-align: center;
        color: #fff;
        background: #434343;
        border-radius: 1vw;
    }
    .common-nav ul li a:hover {
        color: #fff;
        background: #2a417e;
    }
    .common-nav ul li.active a {
        color: #fff;
        background: #2a417e;
    }
}


/* 网站翻页 */

.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: #2a417e;
    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.2vw 0 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: #2a417e;
        border-color: #2a417e;
    }
}