@charset "gb2312";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
body{
    background: #fefaf9;
}
.topHeader {
    box-shadow: 0px 8px 8px rgb(0 0 0 / 20%);
}
.newsTxtDiv{
    width: 100%;
    height: 100%;
    background: url(../img/news-bg.jpg) no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 25px;
}
.newsTxtList{
    width: 77.3%;
    height: 100%;
    margin: 0 auto;
}
.newsTxtList li{
    display: flex;
    flex-direction: column;
    padding: 72px 90px;
    padding-right: 35px;
    margin-bottom: 18px;
    background: #fff;
    cursor: pointer;
}
.newsTxtList li .newsPic{
    width: 42.3%;
    height: 302px;
    object-fit: cover;
}
.titleCon{
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}
.titleCon .icon{
    width: 15px;
    height: 15px;
    background: #080403;
    margin-right: 22px;
}
.titleCon .title{
    font-size: 22px;
    color: #000100;
    line-height: 23px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.newsTxtList li .time{
    font-size: 20px;
    color: #686765;
    line-height: 21px;
}
.newsTxtList li .content{
    width: 100%;
    font-size: 17px;
    line-height: 30px;
    color: #8e8d8b;
    margin-top: 30px;
    max-height: 54px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.commonBottom{
    width: 100%;
    height: 216px;
    background: url(../img/news-bottom.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}
.mobileTopHeader,
.topPoster,
.newsPicCon,
.nextBtn{
    display: none;
}
.topHeader,
.newsTxtDiv{
    display: block;
}


@media (max-width: 500px){
    body{
        background: #ececec;
    }
    .nextBtn{
        display: block;
    }
    .mobileTopHeader{
        display: flex;
    }
    .topHeader,
    .newsTxtDiv{
        display: none;
    }
    .topPoster{
        display: block;
        height: 128px;
    }
    .newsPicCon{
        display: block;
        background: url(../img/news-bg.jpg) no-repeat;
        background-size: cover;
        padding: 0 10px;
    }
    .mobileNavPath{
        font-size: 12px;
        color: #000;
        line-height: 28px;
        height: 28px;
        margin-bottom: 10px;
    }
    .mobileNewsTxtList{
        margin: 0 10px 0 0;
    }
    .mobileNewsTxtList li{
        min-height: 70px;
        background: #f8f8f8;
        padding: 8px;
        margin-bottom: 20px;
    }
    .mobileNewsTxtList li .title{
        font-size: 12px;
        color: #000;
        line-height: 13px;
        font-weight: bold;
    }
    .mobileNewsTxtList li .content{
        font-size: 12px;
        height: 42px;
        color: #666;
        line-height: 21px;
        max-height: 40px;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        margin: 10px 0;
    }
    .mobileNewsTxtList li .newsTime{
        display: flex;
        align-items: center;
    }
    .mobileNewsTxtList li .newsTime .ico_clock{
        display: block;
        width: 14px;
        height: 14px;
        background: url(../img/ico_clock.png) no-repeat;
        background-size: contain;
        margin-right: 4px;
    }
    .mobileNewsTxtList li .newsTime p{
        font-size: 12px;
        color: #000;
        line-height: 13px;
    }
    .nextBtn{
        font-size: 12px;
        color: #000;
        font-weight: bold;
        line-height: 19px;
        margin-bottom: 10px;
        text-align: center;
    }
    .commonBottom{
        width: 100%;
        height: 105px;
        background: url(../img/news-bottom.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
    }
}