.news_container {
    /* min-width: 1440px; */
    max-width: 1560px;
    width: 100vw;
    margin: auto;
    padding: 30px 40px 30px;
    box-sizing: border-box;

}

.news_banner_first{
    display: flex;
}

.news_banner_left {
    width: 900px;
    height: 506px;
    object-fit: cover;

}

.news_banner_right {
    width: 460px;
    height: 506px;
    padding: 70px 50px 0;
    flex: 1;
    box-sizing: border-box;
    background-color: #1f322d;

}

.news_banner_right .right_title .title {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0;
    line-height: 20px;
}

.news_banner_right .right_title .time {
    opacity: .7;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0;
    line-height: 20px;
}

.news_banner_right .description {
    margin: 9px 0 11px;
    font-size: 21px;
    color: #fff;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_banner_right .detail {
    margin-top: 126px;
    font-family: Helvetica-Bold;
    line-height: 26px;
    cursor: pointer;
    color: #fff;
}

.devide_line {
    text-align: center;
    font-family: DINAlternate-Bold;
    font-size: 14px;
    color: #666;
    background: #fff;
    padding: 30px 16px;
    position: relative;
    z-index: 2;
}

.devide_line::before {
    content: "";
    display: inline-block;
    width: 100%;
    position: absolute;
    border-top: 1px dashed #979797;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
}

.devide_line_title {
    background-color: #fff;
}

.news_mobile {
    display: none;
}

.news_item {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px dashed #eee;
}

.news_date {
    width: 100px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.date_month {
    font-size: 20px;
    letter-spacing: .7px;
    padding-bottom: 6px;
    position: relative;
}

.date_day {
    font-size: 48px;
    line-height: 48px;

    padding-top: 6px;

}

.date_month::after {
    content: "";
    display: inline-block;
    width: 30%;
    height: 2px;
    background-color: #d32f2f;
    position: absolute;
    bottom: 0;
    left: 0;
}

.date_year {
    opacity: .05;
    font-size: 49px;
    letter-spacing: -1.6px;
    line-height: 51px;
    margin-top: 113px;
}

.item_img {
    width: 440px;
    height: 248px;

}

.item_img img {
    object-fit: cover;
    height: 100%;
}

.item_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

}

.item_author {
    opacity: .5;
    font-family: Helvetica-Bold;
    font-size: 16px;
    color: #666;
    line-height: 20px;
}

.item_title {
    font-family: Helvetica-Bold;
    font-size: 24px;
    color: #333;
    line-height: 32px;
    /* margin: 16px 0 4px; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.item_description {
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #666;
    letter-spacing: 0;
    text-align: justify;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.item_detail {
    font-size: 16px;
    font-family: Helvetica;
    color: rgb(102, 102, 102);
    line-height: 20px;
}

.read_more {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more_button {
    width: 404px;
    height: 50px;
    font-size: 14px;
    color: #666;
    background: #f2f2f2;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}



@media (max-width: 750px) {
    .news_container {
        max-width: 750px;
        min-width: auto;
        width: 100%;
        padding: 0;
    }

    .news_banner_first{
        flex-direction: column;
    }

    .news_banner_left {
        width: 100vw;
        height: 56vw;
        overflow: hidden;
    }

    .news_banner_right {
        width: 100%;
        height: 206px;
        padding: 20px 20px 20px;
    }

    .news_banner_right .detail {
        display: none;
    }

    .news_list {
        padding: 0 20px 20px;
    }

    .news_pc {
        display: none;
    }

    .news_mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .item_content_des {
        display: flex;
        padding-bottom: 10px;
        gap: 10px;
    }
   
    .news_item .item_content .item_img {
        width: 130px;
        height: 74px;
    }

    .news_item .item_content .item_description {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        font-family: PingFangSC-Regular;
        font-size: 14px;
        color: #666;
        line-height: 21px;
        font-weight: 400;
    }


    .news_list .news_item {
        flex-direction: column;
        padding: 0;
        gap: 12px;
    }

    .devide_line {
        padding: 20px 16px;
    }

    .devide_line::before {
        display: none;
    }

    .news_date {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }

    .date_month_day {
        display: flex;
        font-size: 12px;
        gap: 8px;
    }

    .date_month {
        font-size: 12px;
        line-height: 12px;
        padding-top: 0;
    }

    .date_day {
        font-size: 12px;
        line-height: 12px;
        padding-top: 0;
    }

    .date_month::after {
        width: 80%;
    }

    .date_year {
        margin-top: 0;
        font-size: 12px;
        line-height: 12px;
        opacity: 1;
        letter-spacing: 0;
    }

    .news_item .item_img {
        width: 100%;
        height: auto;
    }

   

    .item_description {
        font-size: 14px;
    }

    .item_detail {
        font-size: 14px;
        padding-bottom: 8px;
    }



}
@media (min-width: 750px) and (max-width: 1080px) {
    .news_container{
        min-width: 0;
    }
    .news_banner_first{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .news_banner_left{
        width: 100%;
        
    }
    .news_banner_right{
        width: 100%;
        height: 258px;
        padding: 0;
        padding-left: 20px;
        box-sizing: border-box;
    }
}
[v-cloak] {
    display: none;
}