.section {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 20px auto 100px;
}

.home_list.section {
    margin-top: 14px;
}

.section .flex_cont {
    box-sizing: border-box;
    width: 100%;

    display: flex;
    justify-content: space-between;
}

.section .flex_cont .left {
    min-width: 1px;
    flex: 1;
    flex-shrink: 0;
}

.section .flex_cont .left.lef_list .lef_list_row {
    box-sizing: border-box;
    padding-top: 10px;
    background-color: #fff;
}

.section .header {
    box-sizing: border-box;

    width: 100%;
    height: 48px;
    padding: 0 20px 0;
    /* margin-bottom: 10px; */

    display: flex;
    align-items: center;
    background-color: #fff;
}

.section .header .label {
    color: #455058;
    font-size: 14px;
    line-height: 20px;
}





._icon {
    margin: 0 5px !important;
}


.section .flex_cont .left .banner {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 14px;

    display: flex;
}

.section .flex_cont .left .banner .left_banner {
    height: 368px;
    position: relative;
    min-width: 1px;
    flex: 1;
    flex-shrink: 0;
}

.section .flex_cont .left .banner .left_banner .scroll_box {
    width: 100%;
    height: 100%;

    display: flex;
    float: left;
    overflow: hidden;
}

.section .flex_cont .left .banner .left_banner .scroll_box .banner_img {
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}



.section .flex_cont .left .banner .left_banner .scroll_box .banner_img img {
    transition: 0.7s;
    flex-shrink: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.section .flex_cont .left .banner .left_banner .scroll_box .banner_img .title {
    box-sizing: border-box;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    bottom: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    left: 0;
    padding: 20px;
    position: absolute;
    width: 100%;
    height: 160px;
    line-height: 200px;
}



.section .flex_cont .left .banner .left_banner .scroll_box .banner_img:hover img {
    transform: scale(1.12);
}

.section .flex_cont .left .banner .left_banner .switch_left {
    z-index: 9;
    cursor: pointer;
    display: none;

    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);

    width: 28px;
    height: 40px;
    background: #000;
}

.section .flex_cont .left .banner .left_banner .switch_right {
    z-index: 9;
    cursor: pointer;
    display: none;

    opacity: 0.5;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);

    width: 28px;
    height: 40px;
    background: #000;
}

.section .flex_cont .left .banner .left_banner .switch_left img,
.section .flex_cont .left .banner .left_banner .switch_right img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.section .flex_cont .left .banner .left_banner:hover .switch_left,
.section .flex_cont .left .banner .left_banner:hover .switch_right {
    display: block;
}

.section .flex_cont .left .banner .left_banner .bar {
    z-index: 9;
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 20px;
    line-height: 18px;
    text-align: center;
}

.section .flex_cont .left .banner .left_banner .bar .line {
    background: #ffffff66;
    cursor: pointer;
    display: inline-block;
    height: 2px;
    width: 31px;
}

.section .flex_cont .left .banner .left_banner .bar .line.active {
    background-color: #fff;
}


.section .flex_cont .left .banner .right_banner {
    margin-left: 10px;
    width: 295px;
    height: 368px;
    flex-shrink: 0;
    display: block;
}

.section .flex_cont .left .banner .right_banner .inner_box {
    flex-shrink: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;


    overflow-y: auto;
    overflow-x: hidden;
}

.section .flex_cont .left .banner .right_banner .inner_box .banner_img {
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 166px;
    margin-bottom: 10px;
    overflow: hidden;
}

.section .flex_cont .left .banner .right_banner .inner_box .banner_img:hover img {
    transform: scale(1.12);
}

.section .flex_cont .left .banner .right_banner .inner_box .banner_img:last-of-type {
    margin-bottom: 0;
}

.section .flex_cont .left .banner .right_banner .inner_box .banner_img img {
    transition: 0.7s;
    flex-shrink: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.section .flex_cont .left .banner .right_banner .inner_box .banner_img .title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    padding-bottom: 4px;

    color: #fff;
    font-family: PingFangSC-Medium, PingFang SC;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}

.cell_1 {
    width: 100%;
    height: 1px;
    margin-top: -1px;
    margin-bottom: 5px;
}

/* 导航 */
.top-tabs {
    box-sizing: border-box;
    width: 100%;
    overflow-x: auto;

    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    row-gap: 25px;
    /* margin: 20px 20px 0; */
    padding: 0 20px;
    margin-bottom: 14px;
}

.home_list .top-tabs {
    box-sizing: border-box;
    width: 100%;
    overflow-x: auto;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    row-gap: 25px;
    margin-bottom: 14px;
    /* margin-top: 20px; */
    padding: 0;
    padding-left: 18px;

}

.home_list .top-tabs .tab {
    margin-bottom: 0;
}

.top-tabs .tab {
    white-space: nowrap;
    color: #0b1721;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    margin-right: 25px;
    margin-bottom: 0;
}

.top-tabs .tab:hover {
    color: #f33d0b;
}

.top-tabs .tab:last-of-type {
    margin-right: 0;
}

.top-tabs .tab.active {
    color: #f33d0b;
}

.page_tip {
    padding-left: 18px;
}

.section .flex_cont .left .news_cont {
    box-sizing: border-box;
    padding-bottom: 20px;
    width: 100%;
    min-height: 230px;
    background-color: #fff;
}

.section .news_list {
    cursor: pointer;
    padding: 20px;
    display: flex;
    background-color: #fff;
    border-bottom: 1px solid #edf1f6;
}

.section .news_list:hover {
    box-shadow: 0 5px 24px 0 rgba(159, 169, 176, 0.15), 0 5px 24px 0 rgba(159, 169, 176, 0.15);
}

.section .news_list .list_left {
    display: flex;
    margin-right: 16px;
    overflow: hidden;
    height: 112px;
    width: 150px;
}

.section .news_list .list_left img {
    transition: 0.7s;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f6fa;


    object-fit: cover;
}

.section .news_list .list_left img:hover {
    transform: scale(1.12);
}

.section .news_list .list_right {
    min-width: 1px;
    flex: 1;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section .news_list .list_right .title {
    color: #0b1721;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.section .news_list .list_right .title:hover {
    color: #f33d0b;
}

.section .news_list .list_right .desc {
    color: #455058;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    overflow: hidden;
    width: 100%;
}

.section .news_list .list_right .desc:hover {
    color: #f33d0b;
}

.section .flex_cont .list_right .time {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section .flex_cont .list_right .time span {
    font-size: 14px;
    line-height: 20px;
    color: #858a90;
    margin-right: 16px;


}

.section .news_list .list_right .number_flex {
    display: flex;
    align-items: center;
}

.section .news_list .list_right .number_flex img {
    margin-top: -3px;
    box-sizing: border-box;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.section .news_list .list_right .number_flex .text {}

.section .news_list .list_right .author:hover {
    cursor: auto;
    color: #f33d0b;
}


.section .flex_cont .list_right .time span:last-of-type {
    margin-right: 0;
}

.section .news_cont .load_more {
    background: #fff;
    margin: 0 !important;

    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .news_cont .load_more_btn {
    cursor: pointer;
    margin: 0 !important;

    color: #858a90;
    border-radius: 2px;
    border: 1px solid #edf1f6;

    min-width: 150px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.section .news_cont .load_more_btn:hover {
    color: #f33d0b !important;
    border-color: #f33d0b !important;
}

.icon-arrow-right {
    margin-left: 5px;
}

.section .news_cont .load_more_btn:hover .icon-arrow-right {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAALVJREFUKFNjZCARMMLU/zcUkWJg/jWD4S9bBuP5N89wmQPXAFLw30SggeH/v1SG///TGc993oJNE4oGsCYjQV8Gxv8zGf7/m8l47lMjuiYMDWBNIOcx/ZnJwPjvP8P/P+mMZ789h2nEqgHuL7AT/+cx/GeKZzz3fjNIHL8GI756BkbGfIIa4CH2n4mR4R9LOnKoYfE0rw8DI+NMBkam2YxnPjTg9TQiWJkzYG7GqYGsiCMmlQAAjxlMDa5cotMAAAAASUVORK5CYII=) no-repeat;
    background-size: cover;
    display: inline-block;

    width: 10px;
    height: 10px;
}

.load_more_btn:hover {}


/* 尾部导航 */
.footer_nav {
    box-sizing: border-box;
    width: 100%;
    padding: 40px 20px;

    display: flex;
    align-items: center;
    justify-content: center;


    background-color: #fff;
}

.footer_nav .prev,
.footer_nav .next {
    cursor: pointer;
    flex-shrink: 0;
    width: 50px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_nav .prev .icon-arrow-right {
    transform: rotate(180deg);
}

.footer_nav .main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_nav .main .item {
    cursor: pointer;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin: 0 3px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #858a90;
}

.footer_nav .main .item.active {
    border-radius: 2px;
    background-color: #f5f5f5;
}

.footer_nav .main .item:hover {
    border-radius: 2px;
    background-color: #f5f5f5;
}

.footer_nav .next .icon-arrow-right {}



/*  */
.section .flex_cont .right {
    box-sizing: border-box;
    flex-shrink: 0;

    margin-left: 10px;
    width: 312px;
}


.green {
    color: #008555;
}

.green.cell {
    background-color: #008555;
}

.red {
    color: #d60f2a;
}

.red.cell {
    background-color: #008555;
}

.grey {
    color: #858a90;
}

.grey.cell {
    background-color: #008555;
}




a {
    color: #ff330f;
    display: inline-block;
}

.fontOverEight {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    white-space: normal !important;
}



/* js 有关 */
img {
    cursor: pointer;
    transition: all 0.7s;
    box-sizing: border-box;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border: none;
    /* 确保图片没有边框 */
    outline: none;
    /* 移除可能的外边框 */
}

.carousel-item:hover img {
    transform: scale(1.12);
}

#carouselExampleCaptions {
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}

.carousel-control-next,
.carousel-control-prev {
    width: 60px;
    width: 6.6%;
}

.carousel-caption {
    display: block !important;
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: 35px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}

.carousel-caption h5 {
    box-sizing: border-box;
    max-width: 100%;
    padding: 0 20px;
    line-height: 26px;
}

@media screen and (max-width: 768px) {

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 16px;
        height: 16px;
    }

    .carousel-indicators {
        margin-bottom: 6px;
    }

    .carousel-indicators li {
        width: 18px;
        margin-bottom: 0;
    }
}



















@media screen and (max-width: 1280px) {
    .section {
        max-width: 100vw;
    }
}

@media screen and (max-width: 1079px) {
    .section .flex_cont .left .banner .right_banner {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .section {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .home_list.section {
        margin-top: 14px;
    }

    .section .flex_cont {
        flex-direction: column;
    }

    .section .news_cont .load_more {
        padding: 20px;
    }

    .section .flex_cont .right {
        box-sizing: border-box;
        width: 100%;
        /* margin-top: 20px; */
        padding: 20px 0;

        margin-left: 0;

        display: flex;
        justify-content: space-between;
    }
}


@media screen and (max-width: 767px) {
    .section .flex_cont .left .banner .left_banner {
        height: 220px;
    }

    .carousel-caption {
        padding-bottom: 30px;
    }


    .carousel-caption h5 {
        font-size: 14px;
        line-height: 18px;

        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .section .header {
        margin-bottom: 0;
    }

    .footer_nav {
        padding: 20px;
    }

    .section .flex_cont .right {
        display: block;
        padding: 0;
        margin-top: 10px
    }
}

@media screen and (max-width: 666px) {}