<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 最新资讯 */

.NewsAll .newAll-c {
    width: 1400px;
    margin: auto;
}

/* 新闻标题 */
.NewsAll .title {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 38px;
}
.NewsAll .content .title-l h2{
    text-align: center;
    color: #222222;
    font-size: 24px;
    margin-bottom: 30px;
}
.NewsAll .content .title-l p{
    color: #888888;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}
.NewsAll .title .title-r{
    background-color: #dbdbdb;
    width: 54px;
    height: 54px;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 12px;
    color: #222222;
}
.NewsAll .title .title-r:hover {
    transform: scale(1.2);
}

/* 新闻内容 */
.NewsAll .content {
    margin-top: 40px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e4e4e4 ;
}

/* 五张图片 */
.NewsAll .content .imgs{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.NewsAll .content .imgs .ll{ 
    width: 50%;
}
.NewsAll .content .imgs .ll img{ 
    width: 100%;
}
.NewsAll .content .imgs .rr{
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.NewsAll .content .imgs .rr img{ 
    width: 48%;
}


.NewsAll .content .longtitle {
    text-align: center;
    color: #222222;
    font-size: 24px;
    margin-top: 38px;
   padding-bottom: 40px;
    border-bottom: 1px solid #e3e3e3;
}
.NewsAll .content .words {
    margin-top: 40px;
    color: #919191;
    line-height: 33px;
    /* 首行缩进 */
    /* text-indent:34px; */
}
.NewsAll .content .words p img {
    width: 1400px;
    margin-bottom: 20px;
}



/* 新闻结尾 按钮自带的 */
.NewsAll .last .article_page {
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
    margin-bottom: 120px;
}
.NewsAll .last .fl p,
.NewsAll .last .cc,
.NewsAll .last .fr p{
    border: 1px solid #e6e6e6;
    width: 190px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    cursor: pointer;
    color: #222222;
    transition: all 0.5s ease-out;
}
.NewsAll .last .fl p:hover{
    transform: scale(1.1);
    color: #fff;
    background-color: #e37518;
}
.NewsAll .last .cc:hover{
    transform: scale(1.1);
    color: #fff;
    background-color: #e37518;
}
.NewsAll .last .fr p:hover{
    transform: scale(1.1);
    color: #fff;
    background-color: #e37518;
}




/* 适应1200-1400的屏幕 */
@media screen and (min-width:1200px) and (max-width:1400px) {
    .NewsAll .newAll-c {
        width: 1200px;
        margin: auto;
    }
}


/* 手机端 */
@media screen and (max-width: 550px) {
    .NewsAll .newAll-c {
        width: 100%;
    }
    .NewsAll .content .words {
        padding: 0 10px;
    }
    .NewsAll .last .fl p, .NewsAll .last .cc, .NewsAll .last .fr p {
        width: 110px;
    }
}
</pre></body></html>