.article_listArea {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(0.6452rem, 1.0417vw, 1.25rem);
}

.article_list {
    box-sizing: border-box;
    overflow: hidden;
    transition: 0.3s;
}

.article_list > a {
    display: block;
    width: 100%;
    min-height: 180px;
    color: rgb(51, 51, 51);
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: clamp( .9375rem, 2.6667vw, 1.25rem );
}

.article_img {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.4;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s;
    background-position: center top;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.article_img img {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    float: none;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
    transition: 0.3s ease-out;
}

.article_tit {
    color: var(--third_color);
    font-size: clamp(1.1250rem, 1.0417vw, 1.2500rem);
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.4;
}

.article_listIn{
    border-left: 5px solid var(--primary_color);
    padding-left: 2.5rem;
}

.right_title_feature{
    display: flex;
    gap: .625rem;
    flex-wrap: wrap;
    padding-top: .625rem;
}

/*¤U¸ü¹Ï¼Ð*/
.DownlFile {
    float: left;
    padding-left: 10px;
}

    .DownlFile a {
        display: block;
    }

        .DownlFile a:hover {
            opacity: 0.5;
        }

    .DownlFile img {
        width: 28px;
        height: auto;
    }

@media (max-width: 640px) {

    .article_listArea {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }

}