.news_list {
    width: 100%;
    background-color: var(--main_body_color);
    margin-top: 1.24rem;
}

.news_list_container {
    padding: 0 0.1rem 0.1rem 0.1rem;
    margin-bottom: 0.8rem;
}
.news-list-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #DFDFDF;
    /* margin: 0.1rem 0; */
    position: relative;
}
.news-list-top-title{
    font-size: 0.18rem;
    font-family: 等线;
    text-align: left;
    color: var(--news_hover_color);
    font-weight: bold;
    padding: 0.3rem 0 0.1rem 0;
    margin: 0.4rem 0 0 0;
}
.breadcrumb{
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.1rem 0;
}
.photo-container_ul {
    overflow: hidden;
    margin: 0.2rem 0;
}
.photo-container_ul_li {
    display: block;
    text-decoration: none;
    color: black;
    margin-bottom: 0.3rem;
}
.photo-container_ul_li-l {
    overflow: hidden;
}
.photo-container_ul_li-l > img {
    width: 100%;
}
.photo-container_ul_li-t {
    background-color: #E9E9E9;
    padding: 0.2rem 0.1rem;
    font-size: 0.16rem;
    /* padding: 0 20px; */
}
.photo-container_ul_li-t > h4 {
    font-size: 0.18rem;
    font-family: 等线;
    color: var(--news_hover_color);
    font-weight: bold;
    margin-bottom: 0.2rem;
}
.photo-container_ul_li-t_title {
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 0.1rem;
    font-size: 0.16rem;
}
.photo-container_ul_li-t_title_t {
    margin-left: 0.05rem;
    display: -webkit-box;
    overflow: hidden;
    word-wrap: break-word; /* 允许长单词折行 */
    word-break: break-all; /* 强制在任何位置折行 */
    white-space: normal; /* 保留空白符，并允许换行 */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 这将限制为3行 */
}