@media only screen and (min-width: 1199px) and (max-width: 4000px) {
    .row-i1 {
        padding: 3vw 0 5.520vw;
    }
}

.blog_container {
    margin: 0 auto;
    box-sizing: border-box;
}

.blog_section {
    margin-bottom: 60px;
}

.blog_section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.blog_section-title {
    font-size: 27px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.blog_view-all {
    color: #666;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.blog_view-all:hover {
    color: #666;
}

.blog_card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog_card {
    background: #FFFFFF;

    box-shadow: 0 0 8px 0 rgba(60, 63, 65, 0.102);

    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-sizing: border-box;
}

.blog_card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.blog_card-content {
    padding: 24px;
}

.blog_card-title {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 12px 0;
    min-height: 52px;
    font-weight: 500;
}

.blog_card-description {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1% 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 47px;
}

.blog_card-footer {
    width: 75%;
}

.blog_card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 12px;
}

.blog_card-image {
    width: 60px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    height: 100%;
    object-position: center;
}

@media (max-width: 968px) {
    .blog_card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog_container {
        padding: 20px 15px;
    }

    .blog_card-grid {
        grid-template-columns: 1fr;
    }

    .blog_section-title {
        font-size: 20px;
    }
}

.zhongj {
    display: flex;
    justify-content: space-between;
}