/* 图文二（左文右图、一行一个）模块样式开始 */
.text_left_pic_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    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;
}
.news-item {
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dcdcdc6e;
    border-bottom-width: 90%;
}
.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    font-size: 17px;
    color: #484848;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.news-meta {
    font-size: 14px;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.news-source {
    color: #666666;
}

.news-date {
    color: #999999;
}

.news-thumbnail {
    width: 107px;
    height: 74px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    backdrop-filter: blur(4px);
}

.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);
    font-size: 12px;
}
/* 图文二（左文右图、一行一个）模块样式结束 */

