.news-list {
    margin: 0 -1.5%;
}
.news-list .item {
    width: 50%;
    padding: 0;
    border-bottom: #DCDFDF solid 1px;
    position: relative;
}
.news-list .item::before{
    content: '';
    position: absolute;
    width: 110px;
    height: 1px;
    background: #85B9DB;
    bottom: -1px;
    left: 0;
    transition: all 0.5s ease;
}
.news-list .item:hover:before{
    width: 100%;
}
.news-list .box {
    margin: 0 auto 0px;
    padding: 20px 15px;
    position: relative;
}
.news-list .box:hover {
    border-color: #0074C1;
}
.news-list a.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 .txt {
    position: relative;
    padding-left: 100px;
    padding-right: 70px;
}
.news-list .txt::before{
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 24px;
    background: #fff;
    border: 1px solid #979797;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: block;
    transition: all 0.3s ease;
}
.news-list .box:hover .txt::before{
    border-color: #0074C1;
    background: #0074C1;
}
.news-list .txt::after{
    content: '+';
    position: absolute;
    top: 50%;
    transform: translateY(-54.5%);
    right: 30.5px;
    color: #979797;
    font-size: 25px;
    line-height: 1;
    font-weight: 100;
}
.news-list .box:hover .txt::after{
    color: #fff;
}
.news-list .date {
    display: block;
    color:#0074C1;
    width: 78px;
    height: 78px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    font-family: 'Open Sans',serif;
    align-items: center;
    justify-content: center;
    border: 1px solid #0074C1;
    background: #fff;
    transition: all 0.3s ease;
}
.news-list .date b{
    display: block;
    font-size: 50px;
    font-weight: 700;
    margin-top: -5px;
}
.news-list .date small{
    font-size: 14px;
    font-weight: bold;
}
.news-list .box:hover .date{
    background: #0074C1;
    color: #fff;
}
.news-list .name {
    position: relative;
    color: #272651;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    letter-spacing: 1.5px;
}
.news-list .box:hover .name {
    color: #0074C1;
}
.news-list .description {
    clear: both;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.35px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}
.news-detail .title {
    color: #535353;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin: 0 auto 10px;
}
.news-detail .title:after {
    content: '';
    display: block;
    border-top: 1px solid #E0E0E0;
    max-width: 252px;
    margin: 15px auto 0;
}
.news-detail .date {
    display: block;
    color: #0074C1;
    font-size: 15px;
    text-align: center;
    font-family: 'Open Sans',serif;
}
.news-detail .editor {
    margin-top: 40px;
}

@media screen and (max-width: 1200px) {
    .news-list {
        margin: 0 -1%;
    }
    .news-list .item {
        padding: 0 1%;
    }
}
@media screen and (max-width: 1000px) {
    .news-list {
        margin: 0 auto;
    }
    .news-list .item {
        width: 100%;
    }

}
@media screen and (max-width: 767px) {
    .news-detail .title {
        font-size: 28px;
    }
    .news-detail .editor {
        margin-top: 30px;
    }
}
@media screen and (max-width: 580px) {
 
}