.news-list {
    margin: 0 -10px;
}
.news-list .item {
    padding: 0 10px;
}
.news-list .box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 36px 14px 0;
    transition: all 0.3s ease;
}
.news-list .item:nth-child(odd) .box{
    background: #f6f8fb;
}
.news-list .item:nth-child(n) .box:hover{
    background: #dee3f5;
}
.news-list .more {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    padding: 15px 0;
    color: #fff;
    font-family: 'Lato', serif;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.6;
    background: #444;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 36px;
    transition: all 0.3s ease;
    position:relative;
    z-index:1;
    
}
.news-list .box:hover .more {
    
}
.news-list .more:before{
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    border-radius: 810px;
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.58, 1);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background: #0088D2;
    will-change: transform;
    z-index:-1;
}
.news-list .box:hover .more:before{
    
    -webkit-transition: opacity 0.45s cubic-bezier(0.23, 1, 0.58, 1), -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.58, 1);
    transition: opacity 0.45s cubic-bezier(0.23, 1, 0.58, 1), -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.58, 1);
    transition: opacity 0.45s cubic-bezier(0.23, 1, 0.58, 1), transform 0.6s cubic-bezier(0.23, 1, 0.58, 1);
    transition: opacity 0.45s cubic-bezier(0.23, 1, 0.58, 1), transform 0.6s cubic-bezier(0.23, 1, 0.58, 1), -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.58, 1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.news-list .item 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 {
    overflow: hidden;
}
.news-list .txt {
    width: calc(100% - 314px);
}
.news-list .name {
    color: #111;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
}
.news-list .date {
    color: #000000;
    font-size: 18px;
    line-height: 1;
    min-width: 178px;
    margin-right: 30px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Lato', serif;

}
.news-list .date b {
    display: block;
    font-size: 62px;
    font-weight: bold;
}
.news-list .box:hover .date{
    color: #174D89;
}
 .news-list .description{
    color: #8B8B8B;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 52px;
}
.news-header,
.news-detail {
    max-width: 1280px;
    margin: 0 auto;
}
.news-header .title {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75;
    padding: 0 0 15px;
    margin: 0;
}
.news-header .date {
    display: block;
    color: #8B8B8B;
    max-width: 320px;
    margin: 0 auto 30px;
    text-align: center;
    border-top: 5px solid #174D89;
    padding-top: 15px;
}
.news-header .date:before {
    content: 'DATE';
    display: inline-block;
    margin-right: 20px;
    color: #0088D2;
    font-family: 'Lato', serif;

    font-size: 13px;
}
.news-detail {
    padding: 0 60px 45px;
    border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1440px) {
    .news-detail {
        padding: 0 15px 30px;
        margin: 0 -15px;
    }
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        padding: 0 6px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list {
        max-width: 760px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .news-header .title {
        font-size: 20px;
        /* padding: 0; */
    }
}
@media screen and (max-width: 600px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .box {
        margin-bottom: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }
    .news-list .description {
        height: auto;
        max-height: 52px;
    }
    .news-list .date{
        margin:0 auto 0px;
    }
    .news-list .txt {
        width: 100%;
    }
    .news-list .more{
        margin:20px auto 0px;   
    }
}