.newsBox ul{
    padding-top: 50px;
    margin-top: 30px;
    border-top: 1px solid #868686;
}
.newsBox ul li{
    width: 100%;
    height: 160px;
    margin-bottom: 35px;
    position: relative;
}
.newsBox ul li .imgbox {
    width: 20%;
    margin-right: 3%;
    height: 160px;
    overflow: hidden;
    float: left;
}
.newsBox ul li .imgbox img{
    width: 100%;
    height: 160px;
}
.newsBox ul li .textbox {
    padding: 10px 0;
    width: 77%;
    height: 160px;
    float: right;
    font-weight: bold;
}
.newsBox ul li .textbox p{
    margin-bottom: 10px;
    font-size: 16px;
    color: #b9b9b9;
}
.newsBox ul li .textbox h3{
    margin-bottom: 10px;
    font-size: 14px;
    color: black;
    font-weight: bold;
}
.newsBox ul li .textbox span{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space:nowrap;
    width: 95%;
    height: 22px;
    font-size: 16px;
    color: #6c6c6c;
    margin-bottom: 40px;
}
.newsBox ul li img{
    transition: 0.8s;
}
.newsBox ul li:hover img{
    transform:scale(1.1);
    -ms-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -o-transform:scale(1.1);
}
@media screen and (max-width: 720px) {
    .newsBox ul li .imgbox {
        width: 100%;
        height: 160px;
        margin-right: 3%;
        overflow: hidden;
        text-align: center;
    }
    .newsBox ul li .imgbox img{
        width: unset;
    }
    .newsBox ul li .textbox {
        padding: 10px 0;
        width: 100%;
        height: 160px;
        float: right;
        font-weight: bold;
    }
    .newsBox ul li .textbox span{
        margin-bottom: 25px;
    }
    .newsBox ul li{
        height: 320px;
    }
}