.main{
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 110px;
}
.breadcrumb{
    display: flex;
    align-items: center;
    margin: 24px 0;
}
.breadcrumb_item{
    font-weight: 400;
    font-size: 14px;
    color: #777777;
    line-height: 20px;
}

.breadcrumb_item a{
    font-weight: 400;
    font-size: 14px;
    color: #1D4ED8;
    line-height: 20px;
}

.news_img{
    width: 100%;
    height: 300px;
    background: url('../img/law-bg.png') no-repeat;
    background-size: cover;
}
.fixed_ai_box{
    bottom: 300px !important;
}
.new_img_text_box{
    max-width: 1200px;
    margin: 0 auto;
}
.new_img_text{
    font-weight: bold;
    font-size: 44px;
    color: #fff;
    line-height: 62px;
    margin-bottom: 13px;
    padding-top: 90px;
}
.new_img_desc{
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
}
.follow_header{
    font-weight: 800;
    font-size: 16px;
    color: #202A38;
    line-height: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 23px;
}
.follow_header_line{
    width: 3px;
    height: 17px;
    background: #2563EB;
    border-radius: 2px;
    margin-right: 9px;
}
.news_box{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid #E4E8F0;
}
.news_content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}
.news_content_item{
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.news_content_img_bg{
    width: 158px;
    height: 197px;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/law-img-bg.png') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
}
.news_content_item_img{
    width: 138px;
    height: 177px;
    border-radius: 8px;
    background: #777777;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.news_content_item_text{
    display: flex;
    flex-direction: column;
    width: calc(100% - 138px - 20px);
}
.news_content_text_title{
    font-weight: bold;
    font-size: 18px;
    color: #2563EB;
    line-height: 25px;
}
.news_content_text_line{
    margin: 9px 0 16px 0;
    border: 1px solid;
    border-image: linear-gradient(90deg, rgba(37, 99, 235, 1), rgba(76, 156, 247, 0)) 1 1;
}
.news_content_text_desc{
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}
.news_content_text_label{
    font-weight: 400;
    font-size: 14px;
    color: #212121;
    line-height: 20px;
}
.news_content_text_img{
    width: 6px;
    height: 6px;
    margin-top: 6px;
}
.news_content_item_introduction{
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.5);
    background: #2563EB;
    border-radius: 9px;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    z-index: 9;
}
.news_content_introduction_title{
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
}
.news_content_introduction_line{
    margin: 9px 0 16px 0;
    border: 1px solid;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
}
.news_content_introduction_text{
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}

.desc_modal{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(2px);
    z-index: 996;
    display: none;
}
.desc_modal_content{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desc_modal_desc{
    width: 300px;
    height: 282px;
    background: #2563EB;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
}

.desc_modal_desc_title{
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    text-align: left;
}

.desc_modal_desc_line{
    width: 100%;
    border: 1px solid;
    margin: 10px 0 14px 0;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
}
.desc_modal_desc_text{
    width: 100%;
    height: calc(100% - 24px - 22px);
    overflow-y: auto;
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 23px;
}

@media (min-width: 769px) and (max-width: 1239px) {
    .main{
        padding: 0 30px;
    }
    .new_img_text_box{
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .new_img_desc{
        display: none;
    }
    .news_img {
        width: calc(100% - 30px);
        height: 90px;
        background: url(../img/news_pic.png) no-repeat;
        background-size: 100% 100%;
        margin: 15px;
        border-radius: 12px;
    }
    .new_img_text{
        margin: 0;
        font-weight: bold;
        font-size: 18px;
        color: #FFFFFF;
        line-height: 25px;
        padding-top: 33px;
        padding-left: 26px;
    }
    .breadcrumb{
        display: none;
    }
    .news_box{
        border: none;
    }
    .follow_header{
        display: none;
    }
    .news_content{
        grid-template-columns: repeat(1, 1fr);
        gap: 6px;
    }
    .news_content_item{
        padding: 12px;
    }
    .news_content_item_img{
        width: 90px;
        height: 115px;
        flex-shrink: 0;
    }
    .news_content_item_text{
        width: calc(100% - 90px - 24px);
    }
    .news_content_text_title{
        font-weight: bold;
        font-size: 18px;
        color: #2563EB;
        line-height: 22px;
    }
    .news_content_text_line{
        margin-bottom: 10px;
    }
    .news_content_text_label{
        font-weight: 400;
        font-size: 14px;
        color: #212121;
        line-height: 17px;
        margin-bottom: 6px;
    }
}