.news {
    min-width: 1196px;
    width: 62.29166vw;
    margin: 0 auto;
}

.news .news-header {
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news .news-header .news-title {
    font-size: 48px;
    color: #FF8E01;
}

.news .news-header .news-title > span {
    font-size: 24px;
    color: #BBB;
    margin-left: 20px;
}



.news .news-header .news-tab {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    height: 100%;
}

.news .news-header .news-tab a {
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    height: 50px;
    text-decoration: none;
}

.banner a.active {
    background: #FF8E01;
    font-weight: bold;
}

.news .news-desc {
    display: flex;
}

.news .news-desc img {
    min-width: 328px;
    width: 17.0833vw;
}

.news .news-desc .news-info {
    flex: 1;
    background: #FF8E01;
    color: #fff;
    padding: 20px 15px 13px 17px;
}

.news .news-desc .news-info .news-article {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding-bottom: 14px;
    font-size: 16px;
}

.news .news-desc .news-info .news-text {
    text-indent: 2em;
    padding-top: 25px;
    line-height: 30px;
    text-indent: 2em;
    padding-top: 25px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 显示3行,可以根据需要修改数字 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.news .news-list {
    margin-top: 30px;
    margin-bottom: 136px;
}

.news .news-list .news-item {
    margin-bottom: 20px;
    display: flex;
    background: #F6F6F6;
    padding: 20px;
}

.news .news-list .news-item .left {
    border-right: 1px solid #FF8E01;
    padding: 10px;
    display: flex;
    align-items: center;
    height: 196px;
    margin-right: 20px;
    max-width: 300px;
}

.news .news-list .news-item .left img {
    vertical-align: middle;
    width: 280px;
    height: 235px;
}

.news .news-list .news-item .right {
    flex: 1;
    display: flex;
    align-items: center;
}

.news .news-list .news-item .right-cont {
    flex: 1;
}

.news .news-list .news-item .right-cont div:nth-child(1) {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
}

.news .news-list .news-item .right-cont div:nth-child(2) {
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}

.news .news-list .news-item .right-cont div:nth-child(3) {
    font-size: 14px;
    margin-bottom: 20px;
    color: #00000070;
}

.news .news-list .news-item .right-cont div:nth-child(4) {
    color: #FF8E01;
    width: 80px;
    text-align: center;
    background: #FF8E0120;
    line-height: 30px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 30px;
}

.news .news-list .news-item .right-more span {
    padding: 6.5px 9px;
    color: #FF8E01;
}

.news .news-list .news-item .right-more img {
    width: 24px;
    height: 24px;
}

.news .news-list .news-item .right-more a {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 980px) {
    .news {
        width: 100%;
        min-width: unset;
    }

    .news .news-header .news-title {
        font-size: 24px;

    }

    .news .news-header .news-title > span {
        font-size: 12px;
        margin-left: 0;
    }

    .news .news-desc {
        display: block;
    }

    .news .news-desc img {
        width: 100%;
    }

    .news .news-list .news-item {
        display: block;
    }

    .news .news-list .news-item .right-more a {
        display: block;
    }

    .news .news-list .news-item .right {
        flex: unset;
        display: block;
    }

    .news .news-list .news-item .right-more {
        margin-top: 30px;
    }

    #body .news-header {
        padding-top: 0;
    }

    .news .news-list {
        margin-bottom: 36px;
    }
}