  /* 精選文章 */
.article_card {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    cursor: pointer;
}
.article_card img {
    width: 100%;      
    position: relative;
    border-radius: var(--roundCornerBig);
    height: 200px;
   

}
.article_card a{
    /*display: block;*/
    display: flex;
    position: relative;
    margin: 4px 0 12px 0;
    border-radius: var(--roundCornerBig);
    overflow: hidden;
    box-shadow: var(--boxshadow);
}
.article_card a:hover:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    border: 3px solid #DE5398;
    z-index: 99;
    border-radius: var(--roundCornerBig);
}
.article_card:hover a:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 3px solid #DE5398;
    z-index: 99;
    border-radius: var(--roundCornerBig);
}

.article_card > h2 {
    font-weight: 700;
    /*font-size: 24px;
    line-height: 35px;*/
    font-size: 20px;
    line-height: 1.4;
    /* letter-spacing: 0.12em;*/
    color: #17171A;
    overflow: hidden;
    text-overflow: ellipsis;
    /*height: 60px;*
    /*height: 100px;*/

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.article_card > p {
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.07em;
    color: #686868;
    overflow:hidden;
    text-overflow:clip;
    display:-webkit-box;
    -webkit-box-orient:vertical;  
    -webkit-line-clamp:3;  
}
.article_card > p .moretag{
    display: none;
}
  
@media (max-width: 1440px) {
    .article_card > h2{
        font-size: 20px;
        line-height: 1.4;
        height: 60px;
    }
    .article_card > p{
        font-size: 15px;
        line-height: 1.4;
    }
    .article_card img{
        height: 185px;
    }
}
@media (max-width: 1280px) {
    .article_card img{
        /*height: 134px;*/
        height: 19vw;
    }

}
@media (max-width: 1024px) {
    .article_card img{
        /*height: 160px;*/
    }
}
@media (max-width: 992px) {
    .article_card img{
        /*height: 154px;*/
    }
}
@media (max-width: 768px) {
    .article_card img{
        height: 148px;
    }
}

@media (max-width: 640px) {

    .article_card {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .article_card > img {
        width: 100%;
        margin-bottom: 12px;
        border-radius: 10px;
        box-shadow: var(--boxshadow);
    }
    .article_card > h2 {
        font-size: 20px;
        line-height: 29px;

    }
    .article_card > p {
        font-size: 14px;
        line-height: 18px;
    }
    .article_card img{
        /*height: 340px;*/
    }
}

@media (max-width: 480px) {

    .article_card > h2 {
        font-size: 16px;
        line-height: 24px;
        /*height: 48px;*/
        height: 50px;
    }
    .article_card img{
       height:40vw;
    }
}