.news-list {
    margin: 0 -6px;
}
.news-list .item {
    width: 25%;
    padding: 0 6px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 320px;
    margin: 0 auto 40px;
    position: relative;
    background: #f6f6f6;;
}
.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 {
    position: relative;
    overflow: hidden;
}
.news-list .pic img {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
    width: 100%;
}
.news-list .box:hover .pic img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.news-list .txt {
    position: relative;
    padding: 15px 20px;
    text-align: center;
}
.news-list .name {
    color: #111;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 21px;
}
.news-list .box:hover .name{
    color: #4488DE;
}
.news-list .pic:before {
    content: "READ MORE";
    position: absolute;
    opacity: 0;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background:rgba(255, 255, 255, 0.95);
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 5;
    line-height: 150px;
    color: #4488DE;
}
.news-list .box:hover .cover,
.news-list .box:hover .pic:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.news-list .pic:after {
    content: "";
    width: 0px;
    height: 1px;
    background: #4488DE;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 55%;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    z-index: 6;
}
.news-list .box:hover .pic:after {
    opacity: 1;
    width: 50%;
}
.news-list .description {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    margin: 8px 0 14px;
}
.news-list .box:hover .description  {
    color: #000;
}
.news-list .date {
    box-sizing: border-box;
    font-size: 12px;
    display: block;
    text-align: center;
    color: #000;
    font-family: Arial;
    position: relative;
    z-index: 2;
    transition: all .3s ease-in-out;
}
.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
}
.news-detail .date {
    color: #111;
}
@media screen and (max-width: 1300px) {
    .news-list .pic:after{
        top: 60%;
    }
}
@media screen and (max-width: 1100px) {
    .news-list .pic:before{
        line-height: 110px;
        font-size: 13px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list .pic:after{
        top: 65%;
    }
    .news-list .pic:before{
        line-height: 150px;
    }
}
@media screen and (max-width: 850px) {
    .news-list {
        max-width: 720px;
        margin: 0 auto;
    }
    .news-list .item {
        width: 50%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .news-list .box {
        margin-bottom: 30px;
    }
    .news-list .pic:after{
        top: 60%;
    }
    .news-list .pic:before{
        line-height: 200px;
    }
}
@media screen and (max-width: 580px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}