/* 新闻列表 */
.news-main-imgs{
    width:calc(100% - 23em);
    margin:10em auto;
    height:calc(100% - 10em);
    /* max-width: 75em; */
    margin-bottom: 0px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,.1);
    border-radius: 0px;
}
.news-main-imgs .main-img{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    width:calc(100% - 25em);
    background-color: #fff;
    overflow: hidden;
}
.news-main-imgs .main-img>img{
    height:100%;
}
.news-info-box{
    position: absolute;
    top:0px;
    right:0px;
    width:25em;
    height:100%;
    background: rgba(255,255,255,.8);
}
.news-info-box>h3{
    width:100%;
    line-height: 1.6em;
    font-size: 1.4em;
    font-weight: bold;
    padding:0em 2em;
    padding-top:2.5em;
    text-align: center;
    color:#0B4891;
}
.news-info-box>p{
    width:100%;
    line-height: 1.6em;
    font-size: 1em;
    padding:1em 1.5em;
    text-align: left;
    color:#666;
    max-height:calc(100vh - 30em);
    overflow-y:auto;
}
.news-info-box>a{
    font-size: 0.875em;
    color:#0B4891;
    position: absolute;
    bottom:1.5em;
    right:1.5em;
}
.news-add-imgs{
    width:calc(100% - 15em);
    padding:1em;
    max-width: 75em;
    margin:auto;
}
.news-add-imgs>a{
    padding:0.3em;
}
.news-list{
    margin:0em;
    padding-top:2em;
}
.news-list>.news-item{
    border-bottom:1px solid #f8f8f8;
    padding:1em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: all .3s;
    cursor: pointer;
}
.news-list>.news-item:hover{
    background: #fafafa;
}
.news-list>.news-item>.right-item>h3{
    font-size: 1.25em;
    color:#0B4891;
    line-height: 3em;
    margin:0;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-list>.news-item>.right-item>p{
    font-size: 0.875em;
    color:#828384;
    line-height: 1.5em;
    padding-bottom:2em;
    margin:0;
}
.news-list>.news-item>.right-item>a{
    position: absolute;
    font-size: 0.875em;
    color:#828384;
    line-height: 1.5em;
    bottom:0em;
    right:0em;
}
.news-list>.news-item>.right-item>a:hover{
    color: #0B4891;
}
.news-item>.right-item{
    width:calc(100% - 14em);
    height:10em;
    padding-left:2em;
    position: relative;
}
.news-item>.left-item{
    width:14em;
    height:10em;
    overflow: hidden;
    text-align: center;
}
.news-item>.left-item>img{
    height:100%;
}
/* 新闻详情 */
.news-detail-box{
    width:100%;
    padding-top:1em;
}
.news-detail-title{
    width:100%;
    line-height:2.5em;
    font-size: 1.25em;
    font-weight: bold;
    color:#0B4891;
    text-align: center;
    padding:0em 4em;
    padding-bottom: 3em;
    position: relative;
    margin:0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-detail-title>.news-date{
    position: absolute;
    bottom:2.5em;
    left:50%;
    margin-left:-5em;
    font-size: 0.875rem;
    line-height: 1em;
    color:#0B4891;
    font-weight: normal;
}
.news-detail-guide,.news-detail-content{
    font-size: 0.875em;
    line-height: 1.6em;
    color:#666;
}
.news-detail-img{
    width:100%;
    display: block;
    margin-bottom:1em;
}
.news-content{
    padding:0em 0.5em;
}
.news-content img{
    max-width:100%;
}
@media screen and (max-width:960px){
    .news-item>.right-item{
        width:100%;
        height:auto;
        padding:0em 0.2em;
    }
    .news-item>.left-item{
        width:100%;
        height:auto;
        padding:0em 0.2em;
    }
    .news-item>.left-item>img{
        width:100%;
    }
    .news-add-imgs{
        width:100%;
    }
    .news-detail-guide,.news-detail-content,.news-detail-img{
        padding:0em 1.4em;
    }
    .news-main-imgs{
        width:100%;
        margin:0px;
        height:100%;
        border-radius: 0px;
        box-shadow: none;
    }
    .news-main-imgs .main-img{
        height:100%;
        width:100%;
    }
    .news-info-box{
        position: absolute;
        top:0px;
        right:0px;
        width:100%;
        height:100%;
        background: rgba(255,255,255,0);
    }
    .news-list{
        padding:0px;
    }
    .news-info-box>h3{
        position: absolute;
        bottom:3em;
        left:0px;
        width:100%;
        color:#fff;
        padding:0em;
        text-shadow: 2px 2px 5px #0B4891;
    }
    .news-info-box>a{
        font-size: 0.875em;
        color:#eee;
        position: absolute;
        bottom:1em;
        right:1.5em;
    }
    .news-info-box>p{
        display:none;
    }
}