.content_title_ {
    padding-left: 10px;
    font-size: 24px;
    color: var(--bgbox);
    font-weight:700;
    position: relative;
    align-items: center;

}
.content_title_::before{
    content: "";
    height: 100%;
    border-right: 3px solid var(--bgbox);
    position: absolute;
    left: 0;
    top: 0;
}
.message_box {
    align-items: center;
    margin-bottom: 20px;
}

.report_lt_box {
    position: relative;
}
.report_lt_box li a{
    position: relative;
}
.report_lt_box:first-child{
    margin-bottom: 20px;
}

.report_lt_img {
    width: 100%;
}

.report_p {
    width: 100%;
    height: 40px;
    background: rgba(51, 51, 51, 0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 10px;
    box-sizing: border-box;
}

.report_p span {
    display: block;
    width: 80%;
    color: #fff;
    line-height: 40px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



.content_box {
    margin-bottom: 22px;
}

.content_box div {}

.content_box div a {
    display: block;
    width: 95%;
    height: 29px;
    font-size: 18px;
    color: var(--contColor);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* margin-bottom: 5px; */
    transition: .2s;
}

.content_box div a:hover {
    color: var(--bgbox);
}

.content_box div:nth-child(1) a {
    height: 52px;
    font-weight: bold;
    white-space: wrap;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.content_box div:nth-child(2) a {
    margin-bottom: 5px;
    height: 52px;
    font-weight: bold;
    white-space: wrap;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content_box div:nth-last-child(2) {
    margin-bottom: 0;

}

.content_box div:nth-last-child(2) {
    margin-bottom: 0;
}

@media screen and (max-width:768px) {
    .message_box {
        padding: 0 20px;
        align-items: center;
        margin-bottom: 10px;
    }
    .content_title_ {
        line-height: 35px;
        border-bottom: 1px solid var(--bgbox);
        font-size: 18px;
        color: var(--fontColor);
        position: relative;
        align-items: center;
    }
    .content_title_::before{
        content: "";
        height: 60%;
        border-right: 3px solid var(--bgbox);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}