﻿.image-card{
    background-color: white;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: row;
    margin-bottom: 0.2rem;
    border: 1px solid #f0f0f0;
    border-radius: 0.1rem;
    overflow:hidden;
}

.image-card:hover{
    box-shadow: 0px 0px 0.2rem 0 rgba(11,16,51,0.2);
}

.image-card-content{
    padding: 0.6rem 0.45rem 0.5rem 0.45rem;
    position: relative;
    width: 35%;
}

.image-card-image{
    width: 60%;
    height: auto;
   overflow:hidden;
}

.image-card-image img{
    height: 100%;
    width: 100%;
    transition: all 0.2s;
}

.image-card-image img:hover{
    height: 100%;
    width: 100%;
    transform: scale(1.1);
    transition: all 0.3s;
}

.image-card-tag{
    color:rgb(255, 76, 0);
    font-size: 0.22rem;
    font-family: 'PuHuiFontRegular';
    font-weight: bolder;
    margin-left: 0.1rem;
    margin-top: 0.2rem;
}

.image-card-tag-grey{
    margin-top: 0.05rem;
    color:rgb(106, 122, 141);
    font-size: 0.22rem;
    font-family: 'PuHuiFontRegular';
    font-weight: bolder;
    margin-left: 0.1rem;
    line-height: 1.4;
}

.image-right img{
    border-bottom-right-radius: 0.05rem;
    border-top-right-radius: 0.05rem;
   overflow: hidden;
   height: 100%;
    width: 100%;
}
.image-left img{
    border-bottom-left-radius: 0.05rem;
    border-top-left-radius: 0.05rem;
    overflow: hidden;
   height: 100%;
    width: 100%;
}

#image-index1,#image-index2,#image-index3:hover{
transform: scale(1);
}