.article-main {
    padding: 60px 0;
    background: #fff;
}

.article-main_head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.article-main_head h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
    margin: 6px;
    color: #161b20;
}

.article-main_head a {
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    transition: all 0.2s;
    white-space: nowrap;
    margin: 6px;
    
}
.article-main_head a:hover {
    background: #FBEDFF;
}

.article-main_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.article-main_item {
    width: 275px;   
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    outline: none;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.article-main_item:hover {
    box-shadow: 0 22px 22px 0 rgb(0 0 0 / 11%);
    transform: translateY(-10px);
    transition: transform .3s ease,box-shadow .3s ease;
}

.article-main_item img {
    border-radius: 10px 10px 0 0;
}

.article-main_content {
    padding: 20px;
}

.article-main_content a {
    font-size: 22px;
    line-height: 26px;
    color: #333;
    font-weight: 500;
}

.article-main_content p {
    color: #999999;
    font-size: 14px;
    line-height: 17px;
    margin: 6px 0;
}

.article-main_item a:last-child {
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px 16px;
    transition: all 0.2s;
    white-space: nowrap;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.article-main_item a:last-child:hover {
    background: #FBEDFF;
}


@media (max-width: 1180px) {
    
    .article-main_item {
        width: 400px;
        margin: 12px;
    }

    .article-main_wrap {
        justify-content: center;
    }
}

@media (max-width: 450px) {
    .article-main_item {
        margin: 12px 0 !important;
    }

    .article-main_head h2 {
        margin: 6px 0 !important;
    }

    .article-main_head a {
        margin: 6px 0 !important;
    }
    .article-main {
        padding: 10px 0;
    }
}