

.new1 .new-list  li {
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid #c8c9c9;
    display: flex;
    justify-content: space-between;
}
.new1 .new-list .img-box {
    width: 3.9rem;
    flex: 0 0 3.9rem;
    height: 2.9rem;
    overflow: hidden;
}

.new1 .new-list .img-box img {
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
}
.new1 .new-list .img-box:hover img{
    transform: scale(1.1);
}
.new1 .new-list .list-cont {
    width: 7.2rem;
    flex: 0 0 7.2rem;
    position: relative;
}


.new1 .new-list .list-cont .more {
    padding-right: .3rem;
    
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: .18rem;
    font-weight: bold;
    color: #002ac4;
}

.new1 .new-list .list-cont .time {
    margin-bottom: .2rem;
    font-size: .24rem;
    font-weight: bold;
    color: #9d9e9e;
}

.new1 .new-list .list-cont .tit {
    margin-bottom: .2rem;
    padding-bottom: .15rem;
    font-size: .24rem;
    font-weight: bold;
    color: #595757;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.new1 .new-list .list-cont .tit:hover,
.new1 .new-list .list-cont .more:hover,
.new1 .new-list .list-cont .desc:hover{
    color: #002ac4;
}
.new1 .new-list .list-cont .desc {
    font-size: .16rem;
    line-height: .24rem;
    color: #595757;
    text-align: justify;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
}

.new2 .new2-cont {
    margin-bottom: .8rem;
}
.new2 .new2-cont .item{
    width: 3.9rem;
    height: 4rem;
    float: left;
    margin-right: .15rem;
    text-align: center;
    border:1px solid #cfd0d0;
    box-sizing: border-box;
}
.new2 .new2-cont .item .video-box{
    position: relative;
    width: 3.9rem;
    height: 2.9rem;
}
.new2 .new2-cont .item .video-box .video-cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.new2 .new2-cont .item .video-box .video-cover img{
    width: 1rem;
    height: 1rem;
}
.new2 .new2-cont .item video{
    width: 3.9rem;
    height: 2.9rem;
    object-fit: cover;
}
.new2 .new2-cont .item .desc{
    padding: .2rem 0;
}
.new2 .new2-cont .item .desc .big{
    font-size: .24rem;
    color: #595757;
}
.new2 .new2-cont .item .desc  .small{
    font-size: .18rem;
    color: #9d9e9e;
}
.new2 .new2-cont .item:nth-of-type(3n){
    margin-right: 0;
}

.turn-page .prev img,
.turn-page .next img{
   vertical-align: middle;
   width: .4rem;
   height: .4rem;
}
.turn-page{
    margin-bottom: .9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.turn-page .num {
    padding: 0 .05rem;
}
.turn-page .num a{
    display: inline-block;
    margin: 0 .05rem;
    width: .4rem;
    height: .4rem;
    line-height: .4rem;
    text-align: center;
    font-size: .24rem;
    background: #dcdddd;
}
.turn-page .num a.now{
    background: #002ac4;
    color: #fff;
}
