.news{
    margin-top: 100px;
}
.news .content{
    max-height: 600px;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}
.news .content::-webkit-scrollbar{
   display: none;
}
.news .content ul{
    display: flex;
    flex-direction: column;
    padding: 0;
}
.news .content ul li{
    display: flex;
    flex-direction: row;
    padding: 30px ;
    border-bottom: 1px solid #ccc ;
}
.news .content ul li:nth-child(even){
    background-color: rgba(228, 242, 253, 0.301);
}
.news .content ul li:hover{
    background-color: #cccccc13;
    cursor: pointer;
}
.news .content ul li .img-news{
    max-width: 250px;
    max-height: 150px;
    flex: 200%;
}
.news .content ul li .img-news img{
    width: 100%;
    height: 100%;
}
.news .content ul li .description-news{
    padding: 0 20px ;
    position: relative;
}
.news .content ul li .description-news .text{
    font-size: 14px;
}
.news .content img{
    width: 100% ;
}
.news .content ul li .description-news .detail {
    position: absolute;
    bottom: 15px;
    right: 30px;
}
.news .categories{
    width: 80%;
    margin: 0 auto;
}
.news .categories ul{
    border: 2px solid #ccc;
    padding: 0;
    padding-bottom: 20px;
    border-radius: 5px 30px;
}
.news .categories ul h5{
    padding: 20px;
    padding-bottom: 10px;
    font-weight: 700;
}
.news .categories ul hr{
    margin: 0;
}
.news .categories ul li{
    list-style-type: none;
    padding: 10px;
    border-bottom: 2px solid #ccc;
    padding-left: 30px ;
    border-bottom-left-radius:10px ;
}
.news .categories ul li:hover{
    background-color: rgba(228, 242, 253, 0.301);
    cursor: pointer;
}
.news .categories ul li:nth-last-child(1){
    border-bottom: none;
}
.news .categories ul li a{
    width: 100%;
}
.news .page{
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}
.news .page ul li{
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    padding: 5px 10px !important;
}
.cate-active{
    background-color: #cccccc6e;
}
@media only screen and (max-width: 768px) {
    .news .content ul li{
        flex-direction: column;
        gap:5px;
    }
    .news .content ul li .img-news{
        width: 100% !important;
        max-width: 100% !important;
        max-height: 300px;
        overflow: hidden;
    }
    .news .content ul li .description-news{
        padding: 0;
    }
    .news .content ul li .description-news .text{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .news .content ul li .description-news .detail {
        display: none;
    }
}