/* 只限制正文容器，不干涉顶部全屏banner */
html > body > div.main > .row-b1 > .wp {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}
/* 全新无浮动通栏内容容器 */
html > body > div.main > .row-b1 > .wp .detail-full {
    width: 100% !important;
    float: none !important;
    overflow: hidden !important;
}

/* 新闻详情主体 */
.m-news1 {
    width: 100%;
}
/* 标题居中放大 */
.m-news1 h1 {
    font-size: 28px !important;
    color: #222 !important;
    text-align: center !important;
    margin: 40px 0 15px !important;
    font-weight: 500 !important;
}
/* 作者/点击/时间 居中浅灰 */
.m-news1 .desc {
    text-align: center !important;
    font-size: 14px !important;
    color: #888 !important;
    margin-bottom: 35px !important;
}
.m-news1 .desc span {
    margin: 0 12px;
}
/* 正文舒适排版 */
.m-news1 .txt {
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.9 !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid #eee;
}
.m-news1 .txt p {
    margin-bottom: 18px;
}
.m-news1 .txt img {
    max-width: 100%;
    display: block;
    margin: 15px auto;
}
/* 上下篇 */
.m-news1 .ul-arrow {
    margin-top: 30px;
    list-style: none;
    padding: 0;
    font-size: 16px;
}
.m-news1 .ul-arrow li {
    padding: 10px 0;
}
.m-news1 .ul-arrow a {
    color: #007ccb;
    text-decoration: none;
}
.m-news1 .ul-arrow a:hover {
    color: #134268;
}

/* 移动端适配 */
@media (max-width:768px) {
    html > body > div.main > .row-b1 > .wp {
        padding: 0 20px !important;
    }
    .m-news1 h1 {
        font-size: 22px;
    }
    .m-news1 .txt {
        font-size: 15px;
    }
}