.article-item {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid #dddddd;
    transition: background-color 0.3s;
}

.article-content {
    flex: 1;
}
.article-date {
    font-size: 16px;
    font-style: italic;
    font-weight: bold;
    color: #dc2330;
    margin-bottom: 10px;
}
.article-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #412915;
}
.article-title a {
    color: #412915;
    text-decoration: none;
    transition: color 0.3s;
}

.article-divider {
    position: relative;
    height: 2px;
    margin: 30px 0;
}
.article-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #c30d23;
    transition: width 0.4s ease;
}
.article-item:hover .article-divider::before {
    width: 100%;
}
.article-desc {
    font-size: 16px;
    color: #412915;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 显示行数 */
    overflow: hidden;
}
.article-desc a {
    color: #412915;
    text-decoration: none;
}

.article-image {
    width: 280px;
    height: 160px;
    margin-left: 20px;
    flex-shrink: 0;
    border-radius: 50px 0 0 0;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 0;
}
.article-image-placeholder {
    width: 150px;
    height: 100px;
    margin-left: 20px;
    flex-shrink: 0;
    background-color: #f0f0f0;
    border-radius: 50px 0 0 0;
}
@media (max-width: 767px) {
    .article-item {
        flex-direction: column-reverse;
        padding: 15px 0;
    }
    .article-image,
    .article-image-placeholder {
        width: 100%;
        height: 150px;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .article-title {
        font-size: 16px;
    }
    .article-divider {
        margin: 15px 0;
    }

}
