.blog_content {
    padding: 20px 10px;
}

.blog_content p {
    margin: 20px 0;
    font-size: 16px !important;
}

.homePageA:hover,
.listA:hover {
    color: #232051;
}

.article_page_banner {
    position: relative;
    padding: 300px 0 100px;
    background: #232051;
}

.article_page_banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(transparent, #232051 100%);
    pointer-events: none;
}


.article_page_banner {
    background-image: url(/assets/2025/img/blog/ar01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;

}

.article_page_banner .centred {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* blog列表  */
.blogs {
    padding-top: 30px;
}

.blog-list-title {
    text-align: center;
}


.blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width:1200px) {
    .blog-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:779px) {
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:500px) {
    .blog-list {
        grid-template-columns: repeat(1, 1fr);
    }
}


.blog-item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.blog-content .title {
    color: #333;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 0.18rem;
    font-weight: bold;
    font-size: 16px;
}

.blog-content .desc {
    color: #666;
    margin-bottom: 0.35rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
}