.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: 254px;
    margin: 0 auto 40px;
    background: #f3f3f3;
    border: 1px solid #bfbfbf;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
}
.news-list .box:hover {
    background: #fff;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .pic img{
	transition: all 0.5s;
}
.news-list .box:hover .pic img {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.news-list .txt {
    position: relative;
    padding: 15px 20px;
}
.news-list .name {
    color: #525252;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}
.news-list .box:hover .name,
.news-list .box:hover .description {
    color: #111;
}
.news-list .description {
    color: #909090;
    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;
    border-width: 1px 0;
    color: #efefef;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
	background: -moz-linear-gradient(top, rgba(44,83,163,1) 0%, rgba(17,47,90,0.9) 100%);
	background: -webkit-linear-gradient(top, rgba(44,83,163,1) 0%,rgba(17,47,90,0.9) 100%);
	background: linear-gradient(to bottom, rgba(44,83,163,1) 0%,rgba(17,47,90,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c53a3', endColorstr='#e6112f5a',GradientType=0 );
}
.news-list .box:hover .date {
    background: #000;
}

.news-detail .date {
    display: block;
    border-width: 1px 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 26px;
	background: #32bcff;
    width: 10%;
    height: 25px;
    margin-bottom: 20px;
}
.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
}

@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;
    }
}