/* news_list.css */
*{
    box-sizing: border-box;
}
html,body{
    height: 100%;
}
body{
    background-color: #F7F8FA;
}
.header{
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.1);
}
/* aside */
#channel-nav{
    width: 1200px;
    height: 63px;
    background-color: #F7F8FA;
    position: fixed;
    top: 80px;
    left: 50%;
    z-index: 99;
    /* transform: translateX(-50%); */
    margin-left: -600px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}
#channel-nav span {
    display: block;
    width: auto;
    height: 53px;
    line-height: 53px;
    text-align: center;
    margin-right: 0;
}
#channel-nav span a {
    color: #2B2929;
}
#channel-nav span.act{
    background-color: transparent;
    position: relative;
    color: #2B2929;
}
#channel-nav span.act a{
    color: #e80000;
}
#channel-nav span.act::after{
    content: '';
    width: 100%;
    height: 3px;
    background-color: #e80000;
    position: absolute;
    left: 0;
    bottom: 0;
}
.news-list-header{
    width: 1200px;
    /* height: 110px; */
    height: 50px;
    position: fixed;
    top: 143px;
    left: 50%;
    z-index: 9;
    background-color: #F7F8FA;
    transform: translateX(-50%);
}
.news-list-header .crumbs-nav-container{
    width: 100%;
    height: 50px;
    line-height: 20px;
    padding: 15px 0;
    font-size: 14px;
}
.news-list-header .crumbs-nav-container span{
    color: #2B2929;
}
.news-list-header .crumbs-nav-container a{
    color: #4376FD;
}
.news-list-header .classify-nav-container{
    width: 100%;
    height: 30px;
    position: relative;
    display: none;
}
.news-list-header .classify-nav-container .classify-nav{
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: flex-start;
}
.news-list-header .classify-nav-container .classify-nav span{
    height: 25px;
    color: #2B2929;
    font-size: 18px;
    line-height: 25px;
    margin-right: 30px;
    position: relative;
    cursor: pointer;
}
.news-list-header .classify-nav-container .classify-nav span.act{
    color: #e80000;
}
.news-list-header .classify-nav-container .classify-nav span.act::after{
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -5px;
    background-color: #e80000;
    border-radius: 2px;
}
/* list */
.news-list-container{
    width: 1200px;
    height: auto;
    min-height: calc(100% - 220px);
    margin: 0 auto;
    padding-top: 193px;
}
.news-list-container .result-count{
    width: 100%;
    height: 40px;
    line-height: 20px;
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
}
.news-list-container .result-count span{
    font-size: 14px;
    color: #999999;
}
.news-list-container .list-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.news-list-container .list-container .no-data{
    width: 100%;
    padding: 40px;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    color: #2B2929;
}
.news-list-container .list-container .list-item{
    width: calc((100% - 40px) / 5);
    height: auto;
    margin-bottom: 15px;
    margin-right: 10px;
}
.news-list-container .list-container .list-item:nth-child(5n){
    margin-right: 0;
}
.news-list-container .list-container .list-item .cover-wrap{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    background-color: #efefef;
    position: relative;
    padding-top: 56.25%;
    aspect-ratio: 16/9;
    z-index: 0;
}
.news-list-container .list-container .list-item .cover-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
    position: absolute;
    left: 0;
    top: 0;
}
.news-list-container .list-container .list-item .cover-wrap .replace-img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 56.25%;
    aspect-ratio: 16/9;
}
/* 竖版视频 */
.news-list-container .list-container .short-list-item .cover-wrap{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    background-color: #efefef;
    position: relative;
    padding-top: 166.67%;
    aspect-ratio: 3/5;
    z-index: 0;
}
.news-list-container .list-container .list-item .cover-wrap .replace-img img{
    width: 40% !important;
    height: auto !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.news-list-container .list-container .list-item .cover-wrap .replace-img img:hover{
    transform: translate(-50%, -50%);
}
.news-list-container .list-container .list-item .cover-wrap .cover-info{
    width: 100%;
    height: 36px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: none;
}
.news-list-container .list-container .list-item .title-wrap{
    width: 100%;
    height: 44px;
    line-height: 22px;
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}
.news-list-container .list-container .list-item .title-wrap a{
    color: #2B2929;
}
.news-list-container .list-container .list-item .author-info-wrap{
    width: 100%;
    height: 40px;
    display: flex;
}
.news-list-container .list-container .list-item .author-info-wrap .author-avatar{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 10px;
    background-color: #efefef;
}
.news-list-container .list-container .list-item .author-info-wrap .author-avatar img{
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.news-list-container .list-container .list-item .author-info-wrap .author-name{
    flex: 1;
    height: 40px;
    line-height: 40px;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list-container .list-container .list-item .author-info-wrap .author-name a{
    color: #2B2929;
}
.news-list-container .list-container .list-item .author-info-wrap .publish-time{
    width: 60px;
    height: 40px;
    line-height: 40px;
    text-align: right;
    font-size: 14px;
    color: #999999;
}

/* 分页器 */
.pagination-container{
    width: 100%;
    height: 76px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}
.pagination-container span{
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 34px;
    border: 1px solid #EFEFEF;
    color: #999;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}
.pagination-container span:hover{
    background-color: #efefef;
}
.pagination-container span.act{
    border: 1px solid #e80000;
    background-color: #e80000;
    color: #fff;
}
.pagination-container span.prev,.pagination-container span.next{
    color: #999;
    font-size: 12px;
}
.pagination-container span.prev{
    margin-right: 5px;
}
.pagination-container span.next{
    margin-left: 5px;
}
.pagination-container .skip-to{
    width: 100px;
    height: 36px;
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}
.pagination-container .skip-to input#skip_to_page{
    width: 48px;
    height: 36px;
    border: 1px solid #EFEFEF;
    line-height: 34px;
    text-align: center;
    color: #999;
    font-size: 14px;
    margin: 0 5px;
}
@media screen and (min-width: 1800px){
    
}
@media screen and (max-width: 1799.9px) and (min-width: 1100px){
    .header .header-container{
        width: calc(100% - 200px);
    }
    .news-list-header{
        width: calc(100% - 200px);
        height: 50px;
        top: 133px;
    }
    .news-list-header .crumbs-nav-container{
        height: 50px;
        padding: 15px 0;
    }
    .news-list-container{
        width: calc(100% - 200px);
        padding-top: 183px;
    }
    #channel-nav{
        width: calc(100% - 200px);
        height: 53px;
        background-color: #F7F8FA;
        position: fixed;
        top: 80px;
        left: 50%;
        z-index: 99;
        transform: translateX(-50%);
        margin-left: 0;
        display: flex;
    }
    #channel-nav span {
        display: block;
        width: auto;
        height: 53px;
        line-height: 53px;
        text-align: center;
    }
    #channel-nav span.act{
        background-color: transparent;
        position: relative;
        color: #2B2929;
    }
    #channel-nav span.act a{
        color: #e80000;
    }
    #channel-nav span.act::after{
        content: '';
        width: 100%;
        height: 3px;
        background-color: #e80000;
        position: absolute;
        left: 0;
        bottom: 0;
    }
}
@media screen and (max-width: 1366.9px) and (min-width: 1100px){
    #channel-nav{
        width: calc(100% - 200px);
        height: 53px;
        background-color: #F7F8FA;
        position: fixed;
        top: 80px;
        left: 50%;
        z-index: 99;
        transform: translateX(-50%);
        margin-left: 0;
        display: flex;
        justify-content: space-between;
    }
    #channel-nav span {
        display: block;
        width: auto;
        height: 53px;
        line-height: 53px;
        text-align: center;
        margin-right: 0;
    }
}
@media (max-width: 1099.9px){
    .header .header-container{
        width: 1000px;
    }
    .header .header-container .left-container{
        width: 140px;
    }
    .header .header-container .right-container{
        width: 210px;
    }
    .header .header-container .search-container{
        width: 650px;
        max-width: 650px;
        padding: 22px 115px;
    }
    .news-list-header{
        width: 1000px;
        height: 50px;
        top: 133px;
    }
    .news-list-header .crumbs-nav-container{
        height: 50px;
        padding: 15px 0;
    }
    .news-list-container{
        width: 1000px;
        padding-top: 183px;
    }
    #channel-nav{
        width: 1000px;
        height: 53px;
        background-color: #F7F8FA;
        position: fixed;
        top: 80px;
        left: 50%;
        z-index: 99;
        /* transform: translateX(-50%); */
        margin-left: -500px;
        display: flex;
        justify-content: space-between;
    }
    #channel-nav span {
        display: block;
        width: auto;
        height: 53px;
        line-height: 53px;
        text-align: center;
        margin-right: 0;
    }
    #channel-nav span.act{
        background-color: transparent;
        position: relative;
        color: #2B2929;
    }
    #channel-nav span.act a{
        color: #e80000;
    }
    #channel-nav span.act::after{
        content: '';
        width: 100%;
        height: 3px;
        background-color: #e80000;
        position: absolute;
        left: 0;
        bottom: 0;
    }
}