.news-list{
    margin: 0;
}
.news-list .box {
    margin: 0 auto;
    line-height: 1.65;
    overflow: hidden;
    position: relative;
    padding: 30px 30px;
    transition: all 0.5s ease;
    border-bottom: 1px solid #ccc;
    transition: all 0.5s ease;
    z-index: 1;
    border-radius: 20px;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.news-list .pic {
    float: right;
    width: auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.news-list .pic img {
    border-radius: 20px;
}
.news-list .txt {
    padding: 0 50px 50px;
    position: relative;
    float: left;
    box-sizing: border-box;
    width: calc(100% - 608px);
}
.news-list .title{
    float: left;
    width: 300px;
}
.news-list .name {
    font-size: 22px;
    letter-spacing: 0.2px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 100px;
    transition: all 0.5s ease;
}
.news-list .date {
    position: relative;
    display: block;
    font-weight: bold;
    font-size: 15px;
    color: #F57F1A;
    font-family: 'Raleway',serif;
    padding: 0 0 10px;
    transition: all 0.5s ease;
}
.news-list .description {
    color: #8B8B8B;
    letter-spacing: 1px;
    line-height: 2em;
    max-height: 145px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    text-align: justify;
    transition: all 0.5s ease;
    font-size: 14px;
}
.news-list .box:hover .name{
    color:#00A650;
}
.news-list .box:hover .description{
    color: #666;
}
.news-list .box:hover .date{
    color:#00A650;
}
.news-list .box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #F0F0F0;
    transition: all 0.5s ease;
    border-radius: 20px;
    z-index: -1;
}
.news-list .box:hover:before{
    opacity: 1;
}
.news-list .more {
    clear: both;
    color: #212121;
    font-size: 15px;
    margin: 0;
    display: block;
    max-width: 100px;
    width: 100%;
    font-family: 'Raleway', serif;
    position: absolute;
    left: 30px;
    bottom: 40px;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 30px;
    display: block;
    text-align: center;
}
.news-list .box:hover .more {
    color: #F57F1A;
}
.news-list .more::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #F57F1A;
    right: 0;
    transition: all 0.5s ease;
}
.news-list .box:hover  .more:before {
    animation-name: line-ani;
    animation-duration: 1s;
    background-color: #00A650;
}
@keyframes line-ani{
    0%{
        width: 100%;
    }
    35%{
        right: 0;
        width: 0;
    }
    65%{
        right: 0;
        width: 0;
        right: unset;
    }
    100%{
        left: 0;
        width: 100%;
    }
}
/* content */
.news-header {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto 50px;
    width: 100%;
}
.news-header .date {
    color: #F57F1A;
    font-size: 15px;
    font-family: 'Raleway', serif;
    line-height: 1;
    font-weight: bold;
}
.news-header .title {
    color: #1F1F1F;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
    margin: 5px 0 0;
    letter-spacing: 1px;
}
.news-detail {
    position: relative;
    box-sizing: border-box;
    padding-bottom: 30px;
    margin: 0 auto;
}
.news-detail+.btn-box {
    padding: 0;
    border: 0;
}
/* ----------- rwd ----------- */
@media screen and (max-width: 1200px) {
    .news-list .pic {
        float: none;
        margin: 0 auto 20px;
    }
    .news-list .title {
        float: none;
        width: auto;
    }
    .news-list .name{
        font-size: 18px;
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
    }
    .news-list .txt {
        padding: 0 0 20px;
        position: relative;
        float: none;
        box-sizing: border-box;
        width: 100%;
    }
    .news-list .description{
        max-height: 55px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-list .more{
        position: relative;
        margin: 0 auto ;
        bottom: unset;
        left: unset;
    }
    .news-header .title {
        font-size: 18px;
    }
    .news-header {
        margin: 0 auto 30px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list .name{
        font-size: 16px;
    }
}