/* banner */
.banner {
    width: 100%;
    height: 360rem;
    background-image: url(/images/about/about-page-pic1.png);
    background-size: 100% 360rem;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -2.5rem;
}
    .banner .content {
        position: absolute;
        bottom: 0;
        height: 300rem;
        background-image: linear-gradient(0, #000000e0, transparent);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        text-align: center;
    }
        .banner .content p:first-child {
            font-size: 61rem;
            color: #C02310;
            font-weight: 300;
            margin-top: 50rem;
            font-family: SourceHanSansCN-Light;
        }
.banner .content p:first-child span{
    margin: 0 20rem;
}
.banner .content p:last-child {
    font-size: 130rem;
    color: #fff;
    /* font-weight: bold; */
    font-family: knockouthtf49liteweight;
    /*margin-bottom: 20rem;*/
}
/* 新闻列表 */
.newsList{
    margin-top: 140rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.newsList .item{
    display: flex;
    justify-content: flex-end;
    width: calc(50% - 20rem);
    margin-bottom: 40rem;
    cursor:pointer;
}
.newsList .item .date{
    margin: 0 40rem;
}
.newsList .item .date::before{
    content: "";
    display: block;
    width: 80rem;
    height: 4rem;
    background-color: #BB2310;
}
.newsList .item .date .day{
    font-size: 35rem;
    color: #000;
}
.newsList .item .date .yearMonth{
    font-size: 15rem;
}
.newsList .item .content{
    width: 650rem;
    height: 456rem;
    position: relative;
}
.newsList .item .content img {
    object-fit:cover; 
}
.newsList .item .content .explain{
    width: calc(100% - 100rem);
    height: 76rem;
    background-color: rgba(0, 0, 0, .7);
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 30rem 50rem;
}
.newsList .item .content .explain::before{
    content: "";
    display: block;
    background-color: #BB2310;
    width: 30rem;
    height: 30rem;
    position: absolute;
    top: 0;
    left: 0;
}
.newsList .item .content .explain .bigTitle{
    font-weight: 500;
    font-size: 21rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
    .newsList .item .content .explain .smallTitle {
        font-size: 17rem;
        line-height: 25rem;
        margin-top: 10rem;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2; /* 这里是超出几行省略 */
        overflow: hidden;
        font-family: 'SourceHanSansCN-Normal';
 
        font-weight: 400;
    }
.newsList .item:nth-child(2n){
    flex-direction: row-reverse;
}
/* 分页 */
.pages{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 144rem;
    margin-bottom: 200rem;
}
.pages .left,
.pages .right{
    margin: 0 40rem;
    width: 15rem;
}
.pages>div{
    width: 48rem;
    height: 20rem;
    line-height: 20rem;
    text-align: center;
    font-size: 18rem;
    cursor:pointer;
}
.pages .active{
    font-size: 22rem;
    font-weight: bold;
}