﻿.news-card{
    background-color: white;
    width: 49%;
    text-align: left;
    /* display: flex; */
    flex-direction: column;
    margin-bottom: 0.2rem;
    border: 1px solid rgba(240, 240, 240, 1);
    border-radius: 0.1rem;
    overflow: hidden;
    height: 8.2rem;
}

.news-card:hover .card-title{
    color: #987De6;
}

.news-card a{
    text-decoration: none;
}

.news-card:hover{
    box-shadow: 0px 0px 0.3rem 0 rgba(11,16,51,0.2)
}

.news-card-content{
    padding: 0.5rem 0.55rem 0.2rem 0.45rem;
    position: relative;
}

.news-card-container{
   overflow:hidden;
   width:100%;
   height:5.3rem;
}

.news-card-image-container{
    width: 100%;
    height: 5.3rem;
    position: relative;
    background-size: cover; background-position: center;
}

.news-card-image{
    width: 100%;
    height: 5.3rem;
    position: relative;
    background-size: cover; background-position: center;
    transition: all 0.2s;
}


.news-card-image:hover{
    transform: scale(1.1);
    transition: all 0.3s;
}

.index-news-tag:hover{
    transform: scale(1);
}

.news-card-tag{
    position: absolute;
    top: 0;
    font-size: 0.22rem;
    color: white;
    font-family: 'PuHuiFontLight';
    line-height: 0.5rem;
    width: 1.5rem;
    text-align: center;
    border-bottom-right-radius: 0.12rem;
}