.news-list{}
.news-list .box {
    margin: 0 auto 20px;
    line-height: 1.65;
    overflow: hidden;
    position: relative;
    padding: 20px;
    transition: all .2s ease;
    border-bottom:1px solid #ddd;
}
.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;
}
.news-list .pic:before {
    content: '';
    display: block;
    background: rgba(255,255,255,0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.news-list .box:hover .pic:before {
    opacity: 1;
}
.news-list .txt {
    padding: 0px 36px 48px 51px;
    position: relative;
    float: left;
    box-sizing: border-box;
    width: calc(100% - 588px);
}
.news-list .title{
    float: left;
    width: 280px;
}
.news-list .date {
    float: left;
    letter-spacing: 0;
    color: #257FB8;
    font-size: 13px;
    font-family: 'Poppins',serif;
    line-height: 2;
}
.news-list .name {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 115px;
}
.news-list .description {
    font-size: 15px;
    color: #666666;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-height: 168px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.news-list .box:hover .name,
.news-list .box:hover .description{
    color:#fff;
}
.news-list .box:hover .date{
    color:#ED954B;
}
.news-list .box:hover{
    transition: all 0.3s ease;
    background: #205289;
}
.news-list .more {
    clear: both;
    color: #fff;
    font-size: 15px;
    text-align: center;
    width: 134px;
    height: 46px;
    line-height: 46px;
    margin: 0;
    display: block;
    background: #205289;
    font-family: 'Poppins',serif;
    position: absolute;
    left: 20px;
    bottom: 40px;
    box-shadow: 5px 10px 28px 0 rgba(91,91,98,.4);
    transition: all 0.5s ease;
    z-index: 1;
}
.news-list .box:hover .more {
    color:#fff;
    box-shadow: 15px 15px 38px 0 rgba(43, 53, 98, 0.65);
}
.news-list .box .more:after {
    content: '';
    position: absolute;
    background: #257FB8;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    z-index: -1;
}
.news-list .box:hover .more:after {
    width: 100%;
}
.news-header {
    margin:0px auto 50px;
    width: 100%;
}
.news-header .date {
    letter-spacing: 0;
    color: #257FB8;
    font-size: 16px;
    font-family: 'Poppins',serif;
    line-height: 2;
    text-align: center;
    display: flex;
    justify-content: center;
}
.news-header .title {
    color: #333333;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}
.news-detail {
    padding-bottom: 20px;
    margin: auto;
}
@media screen and (max-width: 1200px) {
    .news-list .pic {
        float: none;
        margin: 0 auto 10px;
    }
    .news-list .title {
        float: none;
        width: auto;
        margin-bottom: 10px;
    }
    .news-list .txt  {
        left: 0;
        margin: 0;
        width: 100%;
        padding: 0;
        position: relative;
    }
    .news-list .box {
        margin: 0 0 20px;
    }
    .news-list .name{
        font-size: 18px;
        line-height: 1.6em;
    }
    .news-list .more{
        position: relative;
        margin: 20px 0;
        bottom: 0;
        left: 0;
    }
    .news-list .description{
        height: 50px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-header .title {
        font-size: 18px;
        line-height: 1.6em;
    }
    .news-header {
        margin: 0 auto 20px;
    }
    .news-list .more {
        margin: 20px 0 40px;
        bottom: -20px;
        left: 0;
    }
}
@media screen and (max-width: 1000px) {
    .news-list .name{
        font-size: 16px;
        line-height: 1.6em;
    }
}