.news_list {
    /*margin-top: 10px;*/
    width: 1400px;
    margin: 0 auto;
}
.news_list li {
}
.news_list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}
.news_list li a .img {
    border: solid 2px #5db532;
    width: 250px;
    overflow: hidden;
}
.news_list li a .img img {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
	width: 100%;
}
.news_list li a .text {
    width: calc(100% - 250px);
	box-sizing: border-box;
	padding-left: 50px;
    position: relative;
	padding-right: 100px;
}
.news_list li a .text h4 {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.line_clamp {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news_list li a .text h4::after {
    content: '';
    background: #f0f0f0;
    height: 1px;
    width: 100%;
    margin: 16px 0;
    display: block;
}
.news_list li a .text p {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.line_clamp2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
    line-height: 24px;
}
.news_list li a .text .common_btn {
    margin-top: 20px;
}
.common_btn span, .common_btn a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.common_btn span img, .common_btn a img {
    margin-left: 5px;
}
.news_list li a .text .time {
    width: 80px;
    height: 80px;
    border: solid 1px #f0f0f0;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
}
.news_list li a .text .time .date {
    font-family: Akr;
    font-size: 46px;
    line-height: 54px;
    color: #5db532;
}
.news_list li a .text .time h5 {
    font-family: Akr;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
}
.container::after, .clearfix::after {
    content: '';
    height: 0;
    display: block;
    clear: both;
}





.news_detail_con {
    width: 100%;
    margin: auto;
    max-width: 800px;
}
.news_detail_t {
    padding: 40px 0 16px;
}
.news_detail_t h1 {
    font-size: 20px;
    color: #333333;
    padding-right: 100px;
    font-weight: bold;
    position: relative;
}
.news_detail_t h1 span {
    font-family: Akr;
    font-size: 18px;
    color: #5db532;
    position: absolute;
    top: 0;
    right: 0;
}
.news_detail_t h6 {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
    color: #666666;
}
.news_detail_box {
    padding: 28px 0;margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    border-top: 1px solid #f0f0f0;
}
.news_detail_box p {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    margin: 10px 0;
    letter-spacing: 1px;
}
.news_list li:hover a .img img{
	transform: scale(1.1);
}
.news_list li:hover a .text h4{
	color: #5db532;
}

.news_detail_box h4{
    color: #5db532;
    font-size: 16px;
    margin-top: 30px;
}
