.about-cont {
    padding: 240px 0 120px;
}


.news-tit {
    font-size: 130px;
    font-weight: 600;
    color: #ffffff;
}



/* 新闻列表 */
.news-list {
    padding: 60px 0 50px;
    list-style: none;
}

.news-item {
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s all;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px;
}

.news-item:hover .news-title {
    color: #ffffff;
}

/* 新闻日期 */
.news-date {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    width: 16%;
    flex-shrink: 0;
    padding: 5px 0;
}

/* 新闻标题 */
.news-title {
    flex: 1;
    padding: 0 20px;
}

.news-title h5 {
    font-size: 26px;
    line-height: 1.5;
    color: #fff;
}

.news-title p {
    width: 100%;
    font-size: 20px;
    color: #f5f5f5;
    margin-top: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    opacity: .8;
}

/* 图片 */
.news-arrow {
    width: 16%;
}

.news-arrow img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.news-item:hover .news-arrow {
    transform: translateX(5px);
    color: #fff;
}






/* 分页 */

.layui-laypage a,
.layui-laypage span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0;
    margin: 0 10px;
    border-radius: 50%;
    background-color: transparent;
    color: #ffffff;
    opacity: .6;
    border-width: 0;
    font-size: 20px;
}

.layui-laypage .layui-laypage-curr {
    opacity: 1 !important;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background: linear-gradient(to top left, #304689, #ad0f16);
    border-radius: 50%;
}

.layui-laypage a:hover,
.layui-laypage span:hover {
    color: #ffffff;
}

.layui-laypage>a:first-child,
.layui-laypage>a:first-child em {
    color: #be0707;
    opacity: 1;
}

.layui-laypage>a:last-child,
.layui-laypage>a:last-child em {
    color: #be0707;
    opacity: 1;
}




@media only screen and (max-width: 1540px) {
    .about-cont {
        padding: 200px 0 100px;
    }




    .news-tit {
        font-size: 100px;
    }

    /* 新闻列表 */
    .news-list {
        padding: 50px 0 40px;
    }

    .news-item {
        padding: 30px 0;
    }

    .news-item:hover {
        border-radius: 10px;
        padding: 30px;
    }

    /* 新闻日期 */
    .news-date {
        font-size: 16px;
        padding: 3px 0;
    }

    /* 新闻标题 */
    .news-title {
        padding: 0 15px;
    }

    .news-title h5 {
        font-size: 22px;
        line-height: 1.3;
    }

    .news-title p {
        width: 100%;
        font-size: 16px;
        margin-top: 15px;
    }

    /* 图片 */
  
    .news-arrow img {
        max-height: 160px;
        border-radius: 12px;
    }



    /* 分页 */
    .layui-laypage a,
    .layui-laypage span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin: 0 8px;
        font-size: 16px;
    }



}

@media only screen and (max-width: 1440px) {

    .about-cont {
        padding: 160px 0 80px;
    }



    .news-tit {
        font-size:80px;
    }

    /* 新闻列表 */
    .news-list {
        padding: 40px 0 30px;
    }

    .news-item {
        padding: 25px 0;
    }

    .news-item:hover {
        border-radius: 10px;
        padding: 25px;
    }

    /* 新闻日期 */
    .news-date {
        font-size: 14px;
        padding: 3px 0;
    }

    /* 新闻标题 */
    .news-title {
        padding: 0 15px;
    }

    .news-title h5 {
        font-size: 20px;
        line-height: 1.3;
    }

    .news-title p {
        font-size: 14px;
        margin-top: 12px;
    }

    /* 图片 */
  
    .news-arrow img {
        max-height: 140px;
        border-radius: 10px;
    }



    /* 分页 */
    .layui-laypage a,
    .layui-laypage span {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin: 0 8px;
        font-size: 14px;
    }



}

@media only screen and (max-width: 769px) {

    .about-cont {
        padding: 1.4rem .1rem .8rem;
    }

    .news-tit {
        font-size: 60px;
    }

    .news-list {
        padding: .4rem 0 .3rem;
    }
    .news-item:hover {
        padding: .25rem;
    }
    .news-item {
        padding: .25rem 0;
        flex-direction: column;
    }
    .news-date{
        width: 100%;
        font-size: 16px;
    }
    .news-title {
        padding: .1rem 0;
    }

    .news-arrow {
        width: 100%;
        margin-top: .2rem;
    }
    .news-arrow img{
        max-height: none;
    }

}