css 实现 element ui image fit="cover"效果
.img-box {
position: relative;
display: inline-block;
overflow: hidden;
width: 100%;
height: 276px;
border-radius: 10px;
.img{
width: 100%;
height: 100%;
object-fit: cover;
vertical-align: top;
}
}