

/* News list */
.news_list {
    padding: 20px;
}

.news_list ul li {
    padding: 5px 0;
    /* border-bottom: 1px solid #e6e6e6; */
}
.news_list ul li a {
    display: block;
    transition: all 0.3s;
} 
 
.news_list ul li .time {
    float: left;
    width: 130px;
    font-size: 20px;
    color: #d4c5b1
     
}

.news_list .news-list li { width: 100%; position: relative; }
.news_list .news-list li::before { content: ""; position: absolute; top: 0; left: 15%; width: 80%; height: 90%; z-index: 2; background-color: transparent; -webkit-transition: all ease-in-out .5s; -moz-transition: all ease-in-out .5s; -o-transition: all ease-in-out .5s; transition: all ease-in-out .5s; }
.news_list .news-list li:hover::before { background-color: #C0AF9F; width: 102%; left: -1%; }
.news_list .news-list li:hover a { color: #fff !important ;}
.news_list .news-list li:hover a .time .txt { color: #fff !important;  }
.news_list .news-list li a { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: -moz-box; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; -moz-box-pack: justify; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; -moz-box-align: start; align-items: flex-start; padding: 25px 0; border-bottom: 1px dashed #d7d9da; position: relative; z-index: 3;  -webkit-transition: all ease-in-out .5s; -moz-transition: all ease-in-out .5s; -o-transition: all ease-in-out .5s; transition: all ease-in-out .5s;justify-content: flex-start;     align-items: center;
    justify-content: flex-start;}
 
.news_list .news-list li:hover div { color: #fff !important ;}

/* .news_list ul li a .time:hover  {color: var(--primary-color); text-decoration: underline;} */

.news_list ul li .txt {
    margin-left: 10px;  
	width:100%
}

.news_list ul li .txt h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: normal;
	width:100%
}

.news_list ul li .txt p {
    font-size: 14px;
    line-height: 1.6;
	width: 90%;
}

.news_list .moreBtn {
    display: block;
    width: 200px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 5px;
    margin: 30px auto 0;
    color: #666;
    transition: all 0.3s;
}

.news_list .moreBtn:hover {
    background-color: #fb9f0a;
    color: #fff;
}
 

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .w1200 {
        width: 100%;
        padding: 0 15px;
    }

    .c_w_l {
        width: 30%;
    }

    .c_w_r {
        width: 65%;
    }
}

@media screen and (max-width: 768px) {
    .c_w_l {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }

    .c_w_r {
        float: none;
        width: 100%;
    }

    .news_list ul li .time {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .news_list ul li .txt {
        margin-left: 0;
    }
}
