.m-top {
    position: relative;
}

.com-banner {
    position: relative;
    z-index: 5;
}

.com-banner img {
    width: 100%;
}

.common-top {
    padding: 10px;
}

.common-title {
    font-size: 18px;
    line-height: 30px;
    color: #00934e;
    text-align: center;
}

.common-title span {
    color: #db5f2c;
}

.com-ad {
    padding: 10px 0;
    text-align: center;
}

.com-ad-big {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    background: url(../images/com_ad_line.png) no-repeat center center/250%;
}

.com-ad-big span {
    color: #db5f2c;
}

.bread {
    font-size: 12px;
    line-height: 20px;
    color: #000;
    text-align: center;
}

.bread a {
    color: #000;
}

.common-main {
    position: relative;
    padding: 1vw 0 0;
    background: #f9f9f9;
}

.common-main {
    padding: 12px;
}

.common-box {
    min-height: 420px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        position: relative;
    }
    .common-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        z-index: 20;
        left: 50%;
        top: -4vw;
        width: 62.5vw;
        height: 4vw;
        overflow: hidden;
        margin-left: -31.25vw;
        padding: 0 1.5vw;
        background: rgba(255, 255, 255, 0.8);
    }
    .common-title {
        padding-left: 1.2vw;
        font-size: 1.2vw;
        line-height: 1.5vw;
        color: #00934e;
        background: url(../images/com_line.png) no-repeat 0 center/0.5vw;
    }
    .common-title span {
        color: #db5f2c;
    }
    .com-ad {
        padding: 2.4vw 0;
        text-align: center;
    }
    .com-ad-big {
        padding: 0 1vw;
        font-size: 1.5vw;
        line-height: 1.6vw;
        color: #000;
        background: url(../images/com_ad_line.png) no-repeat center center;
    }
    .com-ad-big span {
        color: #db5f2c;
    }
    .bread {
        margin: 0.5vw 0 0;
        font-size: 14px;
        line-height: 20px;
        color: #000;
        text-align: center;
    }
    .bread a {
        color: #000;
    }
    .common-main {
        position: relative;
        padding: 1vw 0 0;
        background: #f9f9f9;
    }
    .common-box {
        width: 62.5vw;
        margin: 0 auto;
        padding: 0;
        background: none;
    }
}

@media (min-width: 1480px) {}


/* 二级导航 */

.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: #db5f2c;
}

@media (min-width: 1200px) {
    .common-nav {
        padding: 0;
    }
    .common-nav ul {
        display: flex;
    }
    .common-nav ul li {
        width: auto;
        padding: 0 1.5vw;
    }
    .common-nav ul li a {
        display: block;
        padding: 1vw 0;
        font-size: 1vw;
        line-height: 2vw;
        text-align: center;
        color: #000;
        background: none;
    }
    .common-nav ul li a:hover {
        color: #00934e;
        background: url(../images/com_nav_li.png) no-repeat center 0, url(../images/com_nav_li.png) no-repeat center bottom;
    }
    .common-nav ul li.active a {
        color: #00934e;
        background: url(../images/com_nav_li.png) no-repeat center 0, url(../images/com_nav_li.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: #db5f2c;
    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: #db5f2c;
        border-color: #db5f2c;
    }
}