.newsTop{
    position: relative;
    margin: .9rem 0 .46rem;
    background-color: #FFFFFF;
}
.newsTopItem{
    transition: all .3s;
}
.newsTopImg{
    flex-shrink: 0;
    width: 40%;
    overflow: hidden;
}
.newsTopImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.newsTopRight{
    flex: auto;
    padding: .7rem 1rem;
    overflow: hidden;
}
.newsTopTit{
    height: 64px;
    line-height: 32px;
    -webkit-line-clamp: 2;
    margin-bottom: .25rem;
    transition: all .3s;
}
.newsTopCon{
    height: 96px;
    line-height: 24px;
    -webkit-line-clamp: 4;
    margin: .25rem 0;
}
.newsTopTime i{
    display: inline-block;
    vertical-align: middle;
    color: var(--baseColor);
    margin-right: 5px;
    margin-top: -2px;
}
.newsTopItem:hover .newsTopImg img{
    transform: scale(1.05);
}
.newsTopItem:hover .newsTopTit{
    color: var(--baseColor);
}
.newsBtn{
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 1;
}
.newsBtn span{
    display: block;
    width: 48px;
    line-height: 48px;
    cursor: pointer;
}
.newsBtn span + span{
    margin-left: 5px;
}
.newsBtn span:hover{
    color: var(--baseColor);
}

.newsList{
    margin: .46rem 0 .6rem;
}
.newsList li{
    margin: .2rem 0;
}
.newsLink{
    display: flex;
    align-items: center;
    padding: 2px;
    background-color: #FFFFFF;
    transition: all .3s linear;
}
.newsTime{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 108px;
    padding: .2rem;
    background-color: #F2F2F2;
}
.newsRight{
    flex: auto;
    padding: .1rem .25rem;
    overflow: hidden;
}
.newsTit{
    line-height: 1.5;
    margin: 5px 0;
    transition: all .3s linear;
}
.newsCon{
    -webkit-line-clamp: 1;
    margin: 5px 0;
}
.newsLink:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.newsLink:hover .newsTit{
    color: var(--baseColor);
}

.detailBg{
    padding: .9rem 0;
}
.newsName{
    line-height: 1.4;
    margin-bottom: .1rem;
}
.newsDate{
    margin: .2rem 0;
}
.newsLine{
    height: 1px;
    background: #D8D8D8;
    margin: .2rem 0 .3rem;
}
.newsdetail{
    margin: .3rem 0;
}
.newsPage{
    display: flex;
    line-height: 1.9;
    background: #F7F7F7;
    border: 1px solid #DDDDDD;
    margin: .3rem 0;
}
.newsPage > div{
    width: 50%;
    padding: .25rem .3rem;
}
.newsPage h4{
    font-weight: normal;
}
.newsPage img{
    vertical-align: middle;
    margin-top: -2px;
}
.newsPage a{
    transition: all .3s;
}
.newsPage a:hover{
    color: var(--baseColor);
}
.newsPrev{
    border-right: 1px solid #DDDDDD;
}
.newsPrev h4 img{
    margin-right: 5px;
}
.newsNext{
    text-align: right;
}
.newsNext h4 img{
    margin-left: 5px;
}


@media (max-width:1200px){
    .newsTop{
        margin: .6rem 0 .3rem;
    }
    .newsTopRight{
        padding: .3rem .3rem 60px;
    }
    .newsTopTit{
        font-size: 16px;
        line-height: 28px;
        height: 56px;
        margin-bottom: .1rem;
    }
    .newsTopCon{
        margin: .1rem 0;
    }
    .newsTime{
        line-height: 1.4;
        min-width: 1rem;
    }
    .newsTit{
        margin: 0;
    }
    .newsCon{
        margin: 0;
    }
    .detailBg{
        padding: .6rem 0;
    }
    .newsPage{
        display: block;
        padding: .1rem 0;
    }
    .newsPage > div{
        width: 100%;
        padding: .1rem .2rem;
    }
    .newsPrev{
        border: none;
        border-bottom: 1px solid #DDDDDD;
    }
    .newsNext{
        text-align: left;
    }
    .newsNext h4{
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
    }
    .newsNext h4 img{
        transform: scaleX(-1);
        margin-left: 0;
        margin-right: 5px;
    }
}
@media (max-width:767px){
    .newsTopCon{
        height: 72px;
        -webkit-line-clamp: 3;
    }
}
@media (max-width:640px){
    .newsTopRight{
        padding: .3rem .3rem .5rem;
    }
    .newsTopItem{
        display: block;
    }
    .newsTopImg{
        width: 100%;
        height: 4.3rem;
    }
    .newsBtn{
        justify-content: center;
        left: 0;
        margin: 0 auto;
    }
}