article {
    padding: 60px 0 4px;
    background: no-repeat center center/cover;
}

.rice {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 60px;
}

.rice img {
    width: 3rem;
}

.dn {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 80px;
}

.dn img {
    width: 4rem;
}

.common-main {
    padding: 12px;
}

.common-top {
    position: relative;
    z-index: 20;
    text-align: center;
}

.common-name {
    color: #000;
}

.common-name .ch {
    font-size: 18px;
    line-height: 20px;
}

.common-name .en {
    font-size: 14px;
    line-height: 30px;
}

.bread {
    margin: 1vw 0 0;
    font-size: 14px;
    line-height: 24px;
    color: #000;
}

.bread a {
    color: #000;
}

.common-box {
    min-height: 420px;
    margin: 0 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1200px) {
    article {
        position: relative;
        padding: 8vw 0 0;
    }
    .rice {
        position: absolute;
        z-index: 1;
        left: 4vw;
        top: -2vw;
    }
    .rice img {
        width: 45.6vw;
    }
    .dn {
        position: absolute;
        z-index: 2;
        right: 8.2vw;
        top: 4.2vw;
    }
    .common-main {
        position: relative;
        z-index: 10;
        width: 64vw;
        margin: 0 auto;
        padding: 0 0 3vw;
    }
    .common-top {
        display: flex;
        justify-content: space-between;
    }
    .common-name {
        color: #000;
    }
    .common-name .ch {
        font-size: 1.8vw;
        line-height: 2vw;
    }
    .common-name .en {
        font-size: 14px;
        line-height: 30px;
    }
    .bread {
        margin: 1vw 0 0;
        font-size: 14px;
        line-height: 24px;
        color: #000;
    }
    .bread a {
        color: #000;
    }
    .common-box {
        margin: 0 2px;
        padding: 0;
        border-radius: 5px;
    }
}


/* 二级导航 */

.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: #c50413;
}

@media (min-width: 1200px) {
    .common-nav {
        padding: 0;
    }
    .common-nav ul {
        display: flex;
        justify-content: center;
    }
    .common-nav ul li {
        width: auto;
        padding: 0 1vw;
    }
    .common-nav ul li a {
        display: block;
        font-size: 1vw;
        line-height: 1;
        color: #000;
        writing-mode: vertical-lr;
        background: none;
    }
    .common-nav ul li a:hover {
        color: #d70115;
    }
    .common-nav ul li.active a {
        color: #d70115;
        background: none;
    }
}


/* 网站页脚 */

footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    border-top: 1px solid #d70115;
}

footer p {
    padding: 0 2px;
    color: #000;
}

footer a {
    padding: 0 2px;
    color: #000;
}

@media (min-width: 1200px) {
    footer {
        display: flex;
        justify-content: center;
        padding: 1.2vw 0;
        font-size: 0.9vw;
        line-height: 1vw;
        background: #ffffff;
        border-top: 0.3vw solid #d70115;
    }
    footer p {
        padding: 0 5px;
    }
    footer a {
        padding: 0 5px;
    }
}


/* 网站翻页 */

.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: #d70115;
    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: #d70115;
        border-color: #d70115;
    }
}