.news-list {
    margin: 0 -10px;
    margin-top: 20px;
}
.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: #FDFCFA
}
.news-list .item:nth-child(n) .box:hover{
   
}
.news-list .more {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    padding: 15px 0;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.4;
    background: #FF882C;
    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;
}
.news-list .box:hover .more {
    background: linear-gradient(to right, rgba(249, 187, 0, 1) 0%, rgba(255, 137, 45, 1) 100%);
}
.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 .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: "Jost", sans-serif;
}
.news-list .date b {
    display: block;
    font-size: 50px;
    font-weight: 600;
}
.news-list .box:hover .date{
    color: #FF882C;
}

.news-list .name {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
    font-weight: 500;
    transition: all .3s ease;
    letter-spacing: 1px;
}

.news-list .box:hover  .name{
    color: #FF882C;
}


 .news-list .description{
    color: #8B8B8B;
    font-size: 15px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}
.news-header,
.news-detail {
    max-width: 1280px;
    margin: 0 auto;
}
.news-header .title {
    color: #333333;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75;
    padding:25px 0 15px;
    margin: 0;
}
.news-header .date {
    display: block;
    color: #8B8B8B;
    max-width: 320px;
    margin: 0 auto 45px;
    text-align: center;
    border-top: 5px solid #FF882C;
    padding-top: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
}
.news-header .date:before {
    content: 'DATE';
    display: inline-block;
    margin-right: 10px;
    color: #FF882C;
}
.news-detail {
    padding: 0 60px 45px;
    
}
@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;
    }

    .news-list .box {
        
        padding: 15px 20px 15px;
        transition: all 0.3s ease;
    }


    .news-list .more{
        display: none;
    }

    .news-list .txt {
        width: calc(100% - 80px);
    }

    .news-list .date {
        margin-right: 15px;
        min-width: 80px;
    }

    
    
}
@media screen and (max-width: 767px) {
    .news-header .title {
        font-size: 22px;
        padding: 0 0 10px;
    }
}
@media screen and (max-width: 600px) {
    .news-list {
        margin: 0 -6px;
    }
     
}