
/*.header {*/
/*    background-color: #fff;*/
/*}*/
a {
    color: inherit;
    text-decoration: none;
}
.top-news {
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
}
.top-news .left-swiper{
    width: 600px;
    height: 394px;
    margin-right: 20px;
}
.top-news .left-swiper img {
    width: 100%;
    height: 100%;
}
.top-news .right-four{
    width: 580px;
    height: 420px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.top-news .right-four img {
    width: 280px;
    height: 184px;
}

.news-list {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.news-list .news-detail {
    width: 900px;
    margin-right: 50px;
}
.news-list .news-detail .title{
    font-size: 26px;
    color: #222;
    font-weight: bold;
    margin-bottom: 20px;
}
.news-list .news-detail .date{
    font-size: 14px;
    color: #999;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.news-list .left-list{
    width: 900px;
    margin-right: 50px;
}
.news-list .left-list .page-nums {
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.news-list .left-list .page-nums > div {
    background-color: #eee;
    color: #686868;
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
}

.news-list .left-list .page-nums > div.active {
    background-color: #3d6fff;
    color: #fff;
}
.news-list .left-list .tabs{
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.news-list .left-list .tabs .item {
    border-bottom: 4px solid transparent;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    margin-right: 60px;
    height: 30px;
}
.news-list .left-list .tabs .item.active{
    color: #3d6fff;
    border-bottom: 4px solid #3d6fff ;
}

.news-list .left-list .list{

}
.news-list .left-list .list .news {
    display: flex;
    justify-content: flex-start;
}
.news-list .left-list .list .news img{
    width: 256px;
    height: 168px;
    margin-right: 20px;
}
.news-list .left-list .list .news .right-cont{
    height: 160px;
    padding-top: 10px;
    position: relative;
    margin-bottom: 30px;
}
.news-list .left-list .list .news .right-cont .title{
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}
.news-list .left-list .list .news .right-cont:hover .title {
    color: #3d6fff;
    cursor: pointer;
}
.news-list .left-list .list .news .right-cont:hover .cont {
    color: #3d6fff;
    cursor: pointer;
}
.news-list .left-list .list .news .right-cont .cont{
    color: #999;
    font-size: 15px;
}
.news-list .left-list .list .news .right-cont .date{
    font-size: 14px;
    color: #999;
    position: absolute;
    bottom: 0;
    left: 0;
}
.news-list .right-list{
    width: 260px;
    cursor: pointer;
}

.news-list .right-list .title{
    color: #333;
    font-size: 16px;
    font-weight: bold;
    height: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 4px;
}
.news-list .right-list .list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-list .right-list .list img {
    width: 80px;
    height: 52px;
    margin-right: 10px;
}
.news-list .right-list .list .cont {
    /* 弹性伸缩盒子模型显示 */
    display: -webkit-box;
    /* 限制在一个块元素显示的文本的行数 */
    -webkit-line-clamp: 3;
    /* 设置或检索伸缩盒对象的子元素的排列方式 */
    -webkit-box-orient: vertical;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 22px;
}

