.news-list {
    margin: 0 -6px;
}
.news-list .item {
    width: 25%;
    padding: 0 6px;
    margin-bottom: 30px;
    border-right:1px solid #E1E4EA;
}
.news-list .item:nth-child(4n) {
	border:none;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 320px;
    margin: 0 auto 0px;
    transition:all .3s ease;
}
.news-list .box:hover {
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .item .pic:before,
.news-list .item .pic:after {
    content: "";
    position: absolute;
    opacity: 0;
    z-index: 10;
}

.news-list .item .pic:before {
    top: 5%;
    left: 4%;
    right: 4%;
    bottom: 5%;
    background: url('../../images/common/readmore.png')center center no-repeat rgba(0, 0, 0, 0.70);
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-list .item .pic:after {
    content: "";
    width: 0px;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 60%;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.news-list .item:hover .pic:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.news-list .item:hover .pic:after {
    opacity: 1;
    width: 72px;
}
/*.news-list .box:hover .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../../images/common/news/hover.png') 100% 100% / 24% auto no-repeat;
}*/

.news-list .txt {
    position: relative;
    padding: 0px 20px;
    background:#fff;
}
.news-list .name {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 50px 0 10px;
    /* height: 38px; */
}
.news-list .box:hover .name,
.news-list .box:hover .description {
    color: #000;
}
.news-list .description {
    color: #404040;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    margin: 0px 0 15px;
}
/*.news-list .date {
    display: block;
    border: 1px solid #ccc;
    border-width: 1px 0;
    color: #ccc;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
}
.news-list .box:hover .date {
    color: #1b2143;
    border-color: #9c9c9c;
}*/

.news-list .date {
    position: absolute;
    display: block;
    text-align: center;
    top: -75px;
    left: 20px;
    background:#77A4F7;
    height:64px;
    width:64px;
    box-sizing:border-box;
	z-index:999;
}
.news-list .date b {
	color:#fff;
    display: block;
    font-size: 30px;
    text-align:center;
	font-weight:normal;
	font-family: 'Roboto', sans-serif;
}
.news-list .date p {
    display: block;
    background:#77A4F7;
    text-align:center;
    font-size: 13px;
    line-height: 1;
    color: #ffffff; 
    padding: 0px 0px 0;
    margin:-5px 0 0 0 ;
}

.news-detail .date {
    display: block;
    border-width: 1px 0;
    color: #8490e0;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    width: 100%;
    background:#77A4F7;
    height:64px;
    width:64px;
    box-sizing:border-box;
	margin-bottom:10px
}
.news-detail b {
	color:#fff;
	text-align:center;
    display: block;
    font-size: 30px;
    padding-top:10px;
    position:relative;
    top:3px;
	font-weight:normal;
}
.news-detail p {
    display: block;
    text-align:center;
    background:#77A4F7;
    font-size: 13px;
    line-height: 1;
    color: #ffffff;
    padding: 0px 0px 0;
    margin: 10px 0 0 0;
}
.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #dadada;
}
.news-detail .editor{
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0.06em;
}
@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;
    }
}