.news-list {
    margin: 0 -6px;
}
.news-list .item {
    width: 25%;
    padding: 0 6px;
	 margin-bottom:40px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background:  #fff;
}
.news-list .box:hover {
    background: #fff;
}
.news-list .box:hover {
    -webkit-transform: translate(0,-10px);
    transform: translate(0,-10px);
}

.news-list .pic {
    position: relative;
    overflow: hidden;
}

.news-list .txt {
    position: relative;
    padding: 20px 20px 40px;
    background:#F7F7F7;
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 75%, 50% 100%, 0% 75%, 0 0);
    clip-path: polygon(50% 0%, 100% 0, 100% 75%, 50% 100%, 0% 75%, 0 0);
      -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.news-list .box:hover .txt{

    background: #510eec; /* Old browsers */
background: -moz-linear-gradient(top, #510eec 1%, #bf00ff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #510eec 1%,#bf00ff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #510eec 1%,#bf00ff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


.news-list .name {
    color: #373737;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 21px;
}
.news-list .box:hover .name,
.news-list .box:hover .description {
    color: #fff;
}
.news-list .description {
     color: #6D6D6D;
    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 .date {
     display: block;
    color: #000;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
}
.news-list .box:hover .date {
    color: #1b2143;
    border-color: #9c9c9c;
}
.news-list .date:before{
    content:'';
    width:26px;
    height:5px;
    background:url(../../images/common/index/new-dot.png)no-repeat;
    display:block;
    margin:auto;
    margin-bottom:3px;
}
.news-list .box:hover .date:before{
    background-position:0 100%;
}
.news-list .box:hover .date {
    color: #fff;
}

.news-detail .date {
    display: block;
    border-width: 1px 0;
    color: #8490e0;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    width: 100%;
}
.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #434253;
}

@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;
    }
}
@media screen and (max-width: 580px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}