.news-list{
    position: relative;
}
.news-list .box {
    margin: 0 auto 20px;
    line-height: 1.5;
    overflow: hidden;
    position: relative;
    padding: 20px 30px;
    transition: all .3s ease;
    border: 6px solid #F8F5F5;
    background: #fff;
}
.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 .name {
    color: #2B2B33;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 112px;
    letter-spacing: 0.2px;
    text-align: justify;
}
.news-list .date  {
    display: inline-block;
    background: #2F3439;
    padding: 3px 10px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0;
    font-family: 'Roboto',serif;
}
.news-list .description {
    color: #7E8387;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    max-height: 168px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.news-list .box:hover{
    transition: all 0.3s ease;
    border-color: #E3D9D2;
}
.news-list .more {
    position: relative;
    color: #728390;
    font-size: 15px;
    letter-spacing: 0.6px;
    font-family: 'Raleway',serif;
    transition: all 0.3s ease;
}
.news-list .more::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 1px;
    background: #728390;
    top: 13px;
    right: -40px;
    transition: all 0.3s ease;
}
.news-list .more:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 1px;
    background: #728390;
    top: 10px;
    right: -40px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.news-list .box:hover .more {
    color: #E28446;
}
.news-list .box:hover .more::before {
    right: -70px;
    width: 58px;
    background: #E28446;
}
.news-list .box:hover .more:after {
    right: -70px;
    background: #E28446;
}
.news-header {
    margin:0px auto 50px;
    width: 100%;
}
.news-header .date {
    display: inline-block;
    background: #2F3439;
    padding: 3px 10px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0;
    font-family: 'Roboto',serif;
}
.news-header .title {
    color: #2B2B33;
    font-size: 22px;
    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;
    }
}