#news{
    padding: 75px 0px; padding-top: 0;
}

.news-title{
    font-size: 46px; line-height: 54px; font-weight: bold; color: #333333; margin-bottom: 28px;
}

.news-list{
    display: flex; flex-wrap: wrap; justify-content: space-between;
}

.news-list a{
    display: flex; flex-direction: column;  margin-bottom: 46px; width:32%;
}

.news-list a .img{
    display: block; margin-bottom: 15px; overflow: hidden;
}

.news-list a .img img{
    max-width: 100%; transition: all 0.65s; border-radius: 6px;
}

.news-list a:hover .img img{
    transform: scale(1.05);
}

.news-list a .date{
    line-height: 27px; font-size: 18px; color: #4B83F4; margin-bottom: 6px;
}

.news-list a .txt{
    line-height: 28px; font-size: 22px; font-weight: bold; color: #333333; margin-bottom: 10px; padding-right: 28px;
}

.news-list a .txt{
    background: url("../other/detail.svg") no-repeat right center;
}


.news-list a .desc{
    line-height: 25px; font-size: 14px; color: #667085; height: 75px; overflow: hidden;
}


@media screen and (max-width: 767px){
    #news{
        padding: 55px 0px; padding-top: 10px;
    }

    .news-title{
        font-size: 32px; line-height:45px; margin-bottom: 20px;
    }

    .news-list{
        display: flex; flex-wrap: nowrap; justify-content:flex-start;
    }

    .news-list a .date{
        line-height: 24px; font-size: 13px; margin-bottom: 6px;
    }

    .news-list a .txt{
        line-height: 27px; font-size: 20px; margin-bottom: 8px;
    }



    .news-list a .desc{
        line-height: 22px; font-size: 13px; height: 66px;
    }

    .news-list{
        flex-direction: column;
    }

    .news-list a {
        margin-bottom: 30px;
        width: 100%;
    }
	
}