.newsblock{
   width: 100%;
}

.newsinfo{
    padding: 12px;
    border:1px solid #d4d4d4;
}

.newsimg{
    display: flex;
    align-items: center; 
}

.newstext{
    position: relative;
}

.newstext p{
    color:#747474 ;
}

.newstext h5{
    color: #009cdd
}

.newstext a{
    position: absolute;
    width: 100px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    background-color: #009cdd;
    color: #fff;
    border-radius: 15px;
    bottom: 10px;
    right: 10px;
    opacity: 1;
}

.newstext a:hover{
    text-decoration: none;
    color: #fff;
    opacity: 0.85;
}

.newslist{
    text-align: center;
}

.newslist  h5{
    width: 100%;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    color: #000;
    border-bottom:1px solid #d4d4d4;
}


.newslist ul{
    list-style: none;
}

.newslist ul li{
    height: 40px;
}

.newslist ul li a{
    display: block;
    font-size: 18px;
    width: 100%;
    height: 40px;
    color:#000;
    line-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    text-decoration: none;
    background-color: #fff;
    transition: all 0.25s ease;

}

.newslist ul .active a{
    color: #fff;
    background-color: #ffc623;
}

.newslist ul li a:hover{
    color: #000;
    background-color: #ffe18e;
}

.newslist ul .active a:hover{
    color: #fff;
    background-color: #ffc623;
}



@media screen and (max-width: 992px){


    .newslist  h5{
        color:#009cdd ;
        border-bottom:1px solid transparent;
        background: #009cdd;
        color: #fff;
    }
    


}