.news-list {
    margin: 0 -40px;
}
.news-list li+li {
    border-left: solid #DDDDDD 1px;
}
.news-list li:nth-child(5) {
    border-left: none;
}
.news-list .item {
    width: 25%;
    padding: 0 20px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 300px;
    margin: 0 auto 50px;
    position: relative;
    border: 1px solid #DDDDDD;
    background:#FFF;
    padding-top: 30px;
    padding-bottom: 25px;
    top: 0;
    transition:all .5s ease;
}
.news-list .box:hover {
    position: relative;
    top: -10px;
    box-shadow:0 0 20px rgba(0,0,0,0.2);
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.news-list .txt {
    position: relative;
    padding: 0 15px;
}
.news-list .txt .date{
    font-size: 25px;
    color: #FB8B24;
    font-weight: 900;
    line-height: 1.2;
    padding-right: 10px;
    margin-right: 10px;
}
.news-list .txt .date small{
    font-size: 25px;
    display: inline;
    font-weight: 900;
    margin-left: 20px;
    position: relative;
}
.news-list .txt .date small:before{
    content: "";
    width: 1px;
    height: 20px;
    background: #FB8B24;
    transform: rotate(26deg);
    position: absolute;
    left: -10px;
    top: 8px;
}
.news-list .name {
    height: 55px;
    margin-bottom: 2px;
    font-size: 18px;
    color: #111;
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list .description {
    color: #777777;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 57px;
    margin: 10px 0;
    margin-top: 5px;
}
.news-list .more {
    width: 90px;
    height: 26px;
    text-indent: unset;
    margin-top: 10px;
    margin-left: 15px;
    color:#444444;
    font-weight: bold;
    font-size:13px;
    border: 1px solid #444;
    font-family: 'Poppins', sans-serif;   
    text-align: center;
    line-height: 26px;
    transition: all .5s ease;
}
.news-list .box:hover .more {
    color:#FFF;
    background:#444;
}
.news-header {
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: solid 2px #DFDDD3;
    position: relative;
}
.news-header:before{
    content: '';
    width: 100px;
    position: absolute;
    border-bottom: solid #003399 2px;
    bottom: -2px;
    left: 0;
}
.news-header .title {
    margin-top: 10px;
    font-weight: bold;
    color: #111;
    font-size: 22px;
    margin: 0 0;
}
.news-header .date{
    font-size: 16px;
    color: #FB8B24;
    font-weight: 900;
    line-height: 1.2;
    padding-right: 10px;
    margin-right: 10px;
    margin-left: 15px;
}
.news-header .date small{
    font-size: 16px;
    display: inline;
    font-weight: 900;
    margin-left: 20px;
    position: relative;
}
.news-header .date small:before{
    content: "";
    width: 1px;
    height: 17px;
    background: #FB8B24;
    transform: rotate(26deg);
    position: absolute;
    left: -11px;
    top: 4px;
}

.news-header .date2 {
    font-size: 16px;
    color: #FB8B24;
    font-weight: 900;
    position: relative;
}
.news-header .date2:before {
    content: "";
    width: 1px;
    height: 17px;
    background: #FB8B24;
    transform: rotate(26deg);
    position: absolute;
    right: -11px;
    top: 4px;
}


.news-detail {
    padding: 28px 0;
}
.news-detail .title {
    background: #33D3EB;
    width: 136px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    margin: 0 auto 30px;
}





.news-detail .editor {
    max-width: 1280px;
    margin: 0 auto;
}
@media screen and (max-width: 1300px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list .item {
        width: 50%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
    .news-list .item:nth-child(odd){
        border-left:none;
    }
}
@media screen and (max-width: 767px) {
    .news-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 580px) {
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
    .news-list li+li {
        border-left: none;
    }
    /* .news-header .date{
        float: none;
        width: 48px;
        display: block;
    } */
    .news-header .title{
        float: none;
        width: 100%;
        padding-right: 0;
    }
}