.news-list {
    margin: 0 auto;
    max-width: 1100px;
}
.news-list .item {
    width: 50%;
    padding: 0 2%;
}
.news-list .item:nth-child(2n+1) {
    clear: left;
}

.news-list .box {
    margin: 0 auto 50px;
    overflow: hidden;
}

.news-list .pic {
    float: left;
    width: 150px;
    border: solid 1px #000000;
}
.news-list .pic:before{
    content: '';
    display: block;
    background: rgba(4,9,65,0.85);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0 ;
    opacity: 0;
    transition: all .3s ease;
}
.news-list .box:hover .pic:before {
    opacity: 1;
}

.news-list .txt {
    margin-left: 180px;
    padding-top: 8px;
}

.news-list .date,.news-detail .date {
    display: block;
    color: #C6A869;
    font-family:Arvo;
    font-weight: bold;
    font-size: 13px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.news-detail .date{
    margin-bottom: 0;
    padding-bottom: 0px;
}
.news-list .pic{
    position: relative;
    overflow:hidden; 
}

.news-list .barVign2 {
    position: absolute;
    background: #C6A869;
    transition: all .8s ease;
}
.barVign2.T {
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
}
.news-list .box:hover  .barVign2.T{
    width: 100%;

}
.barVign2.R {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 0;
    
}
.news-list .box:hover  .barVign2.R{
    height: 100%;

}
.barVign2.B {
    bottom: 0;
    left: 0;
     width: 0;

    height: 1px;
}
.news-list .box:hover .barVign2.B{
    width: 100%;

}
.barVign2.L {
    top: 0;
    left: 0;
    width: 1px;
    height: 0;

}
.news-list .box:hover  .barVign2.L{
    height: 100%;

}

.news-list .date:after{
    content: '';
    display: block;
    height: 2px;
    width: 0;
    height: 2px;
    bottom: 0;
    background: #C3975C;
    position: absolute;
    left: 100%;
    transition: left .6s cubic-bezier(.25, .1, .25, 1), width .3s cubic-bezier(.25, .1, .25, 1) .3s;
}
.news-detail .date:after{
    width: 10px;
}
.news-list .box:hover .date:after {
    width: 10px;
    left: 0;
    transition: width .6s cubic-bezier(.25, .1, .25, 1)
}
.news-list .name {
    display: block;
    color: #C6A869;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 4px;
    height: 29px;
}

.news-list .description {
    display: block;
    color: rgba(223,223,223,0.65);
    line-height: 1.35;
    letter-spacing: 0.04em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    height: 53px;
}

.news-detail {
    max-width: 1100px;
    margin: 0 auto 30px;
}

.news-detail .title {
    text-align: left;
    color: #C6A869;
    font-size: 21px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.06em;
    margin-top: 5px;
    margin-bottom: 34px;
    padding-bottom: 15px;
    /*border-bottom: solid 1px #989aa9;*/
}

@media screen and (max-width: 1100px) {
    .news-list {
        margin: 0 -2%;
    }
}
@media screen and (max-width: 900px) {
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}
@media screen and (max-width: 767px) {
    .news-list .box {
        margin-bottom: 30px;
    }
    .news-detail .title {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 480px) {
    .news-list .box {
        max-width: 360px;
    }
    .news-list .pic {
        float: none;
        margin: 0 auto;
    }
    .news-list .txt {
        float: none;
        margin: 0;
        text-align: center;
    }
    .news-list .date:after {
        margin: 10px auto;
    }
    .news-list .description {
        height: auto;
        max-height: 53px;
    }
}