.news-list{
    margin-top: 40px;
}
.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;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.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 .name {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #202020;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 112px;
}
.news-list .date  {
    display: block;
    color: #69666B;
    font-size: 16px;
    font-family: 'Roboto Condensed';
}
.news-list .description {
    color: #3d3d3d;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 2em;
    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:#37C1F0;
}
.news-list .box:hover{
    transition: all 0.2s ease;
    background:#193D87;
}
.news-list .more {
    clear: both;
    color: #333;
    font-size: 14px;
    /* border: solid #ccc; */
    border-width: 1px 0;
    text-align: left;
    padding: 5px 15px;
    margin: 0;
    display: block;
    max-width: 120px;
    width:100%;
    background: #fff;
    font-family: 'Roboto Condensed';
    position: absolute;
    left: 20px;
    bottom: 40px;
    box-shadow: 5px 10px 28px 0 rgba(91,91,98,.4);
    transition: all 0.2s ease;
}
.news-list .box:hover .more {
    color:#fff;
    background:#1c57cf;
    box-shadow: 15px 15px 38px 0 rgba(43, 53, 98, 0.65);
}
.news-list .box:hover .more:after {
    background-position:right;
}
.news-header {
    margin:0px auto 50px;
    width: 100%;
}
.news-header .date {
    color: #69666B;
    font-size: 16px;
    font-family: 'Roboto Condensed';
    line-height: 1;
}
.news-header .title {
    color: #333333;
    font-size: 28px;
    font-weight: bold;
    line-height:1.5em;
}
.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:0px;
        margin:0px;
        width:100%;
        padding:0px 2px;;
        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:0px auto 20px;
    }
}