.topLink{
    display: flex;
    align-items: center;
    background-color: #F8F8F8;
}
.topImg{
    width: 46.15%;
    height: 330px;
    flex-shrink: 0;
    margin-right: .1rem;
}
.topImg .imgBg{
    height: 100%;
}
.topText{
    flex: auto;
    padding: 30px;
    overflow: hidden;
}
.topTime{
    font-size: 32px;
    color: var(--baseColor);
    line-height: 1.4;
    font-family: 'DINCondensed';
    font-weight: bold;
}
.topTit{
    font-size: 24px;
    color: #222222;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    margin: .1rem 0;
    transition: all .3s;
}
.topDes{
    color: #999999;
    line-height: 1.4;
    margin: .1rem 0;
}
.topMore{
    display: block;
    width: 100%;
    max-width: 120px;
    line-height: 40px;
    font-size: 14px;
    color: #999999;
    background: #EEEEEE;
    text-align: center;
    margin-top: .15rem;
    transition: all .3s;
}
.topMore i{
    display: inline-block;
    vertical-align: middle;
    margin-left: .1rem;
    width: 16px;
    height: 16px;
    background: url(../images/icon_more.png) center center no-repeat;
    background-size: contain;
}
.topLink:hover .topTit{
    color: var(--baseColor);
}
.topLink:hover .topMore{
    color: #FFFFFF;
    background-color: var(--baseColor);
}
.topLink:hover .topMore i{
    background-image: url(../images/icon_more_white.png);
}


.newsList{
    list-style:  none;
}
.newsList li{
    border-bottom: 1px solid #EEEEEE;
}
.newsLink{
    display: flex;
    align-items: center;
    padding: .2rem 0;
}
.newsTime{
    font-size: 24px;
    color: var(--baseColor);
    opacity: .5;
    font-family: 'DINCondensed';
    flex-shrink: 0;
    line-height: 1.2;
    text-align: right;
    font-weight: bold;
    margin-left: 1%;
    margin-right: 2.8%;
}
.newsTime span{
    font-size: 150%;
    line-height: 1;
}
.newsText{
    flex: auto;
    overflow: hidden;
}
.newsTit{
    font-size: 20px;
    color: #222222;
    line-height: 1.6;
    font-weight: bold;
    transition: all .3s;
}
.newsDes{
    color: #999999;
    line-height: 1.4;
    margin-top: 5px;
    -webkit-line-clamp: 2;
}
.newsLink:hover .newsTit{
    color: var(--baseColor);
}
.newsName{
    font-size: 28px;
    line-height: 1.6;
}
.newsName + .newsTime{
    text-align: left;
    margin: .1rem 0;
}
.newsCon{
    margin-top: .1rem;
}
.newsCon img{
    max-width: 100% !important;
    height: auto !important;
}
.newsCon table{
    margin: .15rem 0;
}
.newsCon table td{
    padding: .1rem;
}

@media (max-width:1600px) {
    .topImg{
        height: 300px;
    }
    .topText{
        padding: .2rem;
    }
    .topTime{
        font-size: 28px;
    }
    .topTit{
        font-size: 20px;
    }
    .newsTime{
        font-size: 20px;
    }
    .newsTit{
        font-size: 18px;
    }
    .newsName{
        font-size: 24px;
    }

}
@media (max-width:1400px) {
    .topImg{
        height: 270px;
    }

}
@media (max-width:1200px) {

}
@media (max-width:991px) {

}
@media (max-width:767px) {
    .topLink{
        align-items: initial;
    }
    .topImg{
        height: auto;
        margin-right: 0;
    }
    .topImg .imgBg{
        height: 100%;
    }
    .topText{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .topTime{
        font-size: 16px;
    }
    .topTit{
        font-size: 16px;
    }
    .topMore{
        line-height: 34px;
    }
    .topDes{
        margin: 0;
        -webkit-line-clamp: 2;
    }
    .newsName{
        font-size: 20px;
    }

}
@media (max-width:640px) {
    .newsTime{
        font-size: 14px;
    }
    .newsTit{
        font-size: 16px;
    }
    .newsName{
        font-size: 18px;
    }

}
@media (max-width:460px) {
    .topTit{
        font-size: 14px;
    }
    .topDes{
        display: none;
    }
    .topMore{
        max-width: 90px;
        font-size: 12px;
        line-height: 32px;
    }
    .newsLink{
        align-items: flex-start;
    }
    .newsTime{
        margin-top: .12rem;
    }
    .newsTit{
        font-size: 15px;
    }

}