#company li > img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: .6;
}
#company li > a{
    position: absolute;
    top: 40%;
    left: 40px;
    right: 40px;
    transition: all ease .5s;
    text-align: center;
    background:transparent;
    bottom:30px;
}
#company li > a img{
    width: 40px;
}
#company li > a h3{
    color: #fff;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 1;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
#company li > a p{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #fff;
    font-family: arial;
    opacity: 0;
    margin: 0;
    line-height: 2;
    margin-bottom: 19px;
    font-size: 13px;
}
#company li > a span{
    color: #fff;
    background: transparent;
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: all ease .5s;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    margin-bottom:40px;
}
#company li:hover > a{
    padding-bottom: 30px;
    background:#0e68b0;
    padding:20px 40px;
    top:20%;
}
#company li:hover > a span{
    opacity: 1;
}
#company li:hover > a p{
    opacity: 1;
}