/* 图文三（上图下文、一行二个）模块样式开始 */
.text_bottom_pic_container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
    background: #ffffff;
    width: calc(100% - 32px);
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    gap: 16px;
    margin: 16px auto 16px auto;
    transition: transform 0.2s, box-shadow 0.2s;
}

.text_bottom_pic_news-item {
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.text_bottom_pic_news-thumbnail {
    width: 100%;
    min-height: 147px;
    max-height: 147px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.text_bottom_pic_news-thumbnail .text_bottom_pic_placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 12px;
    object-fit: cover;
}

.text_bottom_pic_news-content {
    padding: 10px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.text_bottom_pic_news-content .text_bottom_pic_news-title {
    line-height: 1.5;
    font-weight: 500;
    font-size: 16px;
    color: #484848;
    text-align: left;
    font-style: normal;
    text-transform: none;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 超出两行显示省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 图文三（上图下文、一行二个）模块样式结束 */

