.banner {
    position: relative;
    margin-top: 100px;
    width: 100%;
    /* height: 800px; */
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .desc {
    position: absolute;
    top: 26%;
    left: 8%;
}

.banner .desc .titleE {
    font-size: 72px;
    font-family: 'objectivitybold';
    width: 480px;
}

.banner .desc .title {
    font-size: 44px;
    margin-top: 150px;
    position: relative;
}

/* .banner .desc .title::after {
    content: '';
    position: absolute;
    width: 56px;
    height: 6px;
    background: #fff;
    bottom: -30px;
    left: 0;
} */

.banner .desc .text {
    width: 80vw;
    margin-top: 60px;
    font-size: 30px;
}

.nav {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 160px;
    display: flex;
    justify-content: space-between;
}

.nav .location {
    color: #999;
    display: flex;
    align-items: center;
}

.nav .location a {
    color: #999;
    margin: 0 10px;
    cursor: pointer;
}

.nav .location span:nth-child(1) {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #0c9e0d;
    border-radius: 50%;
    margin-right: 10px;
}

.nav .location .active {
    color: #000;
}

.nav .type {
    display: flex;
}

.nav .type .type_item {
    color: #999;
    margin-left: 60px;
    cursor: pointer;
}

.nav .type .active {
    color: #000;
}

.news_detail {
    padding: 40px 160px;
    background: #f3f9f3;
    display: flex;
    justify-content: space-between;
}

.news_detail .left {
    width: 64.5%;
    background: #fff;
    padding: 40px;
}

.news_detail .left .title {
    font-size: 28px;
    color: #222;
}

.news_detail .left .date {
    font-size: 14px;
    color: #0c9e0d;
    font-family: 'objectivity';
    margin-top: 30px;
}

.news_detail .left .line {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin-top: 30px;
}

.news_detail .left .content {
    margin-top: 30px;
}

.news_detail .left .content p {
    margin-top: 30px;
    font-size: 18px;
    color: #555;
    line-height: 36px;
    text-indent: 2em;
}

.news_detail .right {
    width: 34%;

}

.news_detail .right .hot_box {
    background: #fff;
    padding: 40px;
}

.news_detail .right .top {
    display: flex;
    align-items: center;
}

.news_detail .right .top span {
    width: 6px;
    height: 26px;
    background: #0c9e0d;
}

.news_detail .right .top div {
    font-size: 28px;
    color: #222;
    margin-left: 10px;
}

.news_detail .right .hot_list {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.news_detail .right .hot_list .list_item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.news_detail .right .hot_list .list_item img {
    display: none;
}

.news_detail .right .hot_list .list_item:nth-child(1) img {
    display: block;
    width: 100%;
    height: 13.5vw;
    object-fit: cover;
}

.news_detail .right .hot_list .list_item .title {
    font-size: 18px;
    color: #333;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    display: box;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 20px;
    transition: all 0.3s;

}

.news_detail .right .hot_list .list_item:hover .title {
    transform: translateX(10px);
}

.news_detail .right .hot_list .list_item .date {
    font-size: 14px;
    color: #0c9e0d;
    font-family: 'objectivity';
    margin-top: 20px;
}

.news_detail .right .btn_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 50px 25%;
    margin-top: 22px;

}

.news_detail .right .btn_box>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.news_detail .right .btn_box>a div {
    color: #0c9e0d;
    margin-top: 20px;
}

.news_detail .right .btn_box>a:nth-child(1) div {
    color: #999;

}

@media screen and (max-width:800px) {
    .banner {
        height: 180px;
        margin-top: 80px;
    }

    .banner .desc .title {
        font-size: 20px;
        margin-top: 10px;
    }

    .banner .desc .text {
        margin-top: 20px;
        font-size: 14px;
        width: 100%;
    }

    /* .banner .desc .title::after {
        width: 26px;
        height: 3px;
        background: #fff;
        bottom: -10px;
    } */

    .banner .desc .titleE {
        width: 300px;
    }

    .nav {
        padding: 0 20px;
    }

    .nav .location {
        display: none;
    }

    .nav .type .type_item {
        margin-left: 0px;
        margin-right: 20px;
    }

    .news_detail {
        padding: 40px 20px;
        flex-direction: column;
    }

    .news_detail .left {
        width: 100%;
        padding: 20px 10px;
    }

    .news_detail .right {
        width: 100%;
    }

    .news_detail .left .title {
        font-size: 20px;
        line-height: 28px;
    }

    .news_detail .left .date {
        margin-top: 10px;
    }

    .news_detail .left .line {
        margin-top: 18px;
    }

    .news_detail .right .hot_box {
        padding: 40px 20px;
    }

    .news_detail .right .hot_list .list_item:nth-child(1) img {
        display: none;
    }

    .news_detail .right .btn_box {
        padding: 20px 20px;
    }

    /* .news_detail .left .content table {
        width: 100% !important;
        min-width: 100% !important;
        table-layout: fixed !important;
        border-collapse: collapse !important;
    } */

    .news_detail .left .content table tr {
        word-wrap: break-word !important;
        white-space: normal !important;
        overflow: hidden !important;
    }
        .news_detail .left .content table th {
        word-wrap: break-word !important;
        white-space: normal !important;
        overflow: hidden !important;
    }
     .news_detail .left .content table td {
        word-wrap: break-word !important;
        white-space: normal !important;
        overflow: hidden !important;
    }
}