#company{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#company li{
    width: 25%;
    overflow: hidden;
    background: #000;
    position: relative;
    min-height: 690px;
    transition: all ease .5s;
    margin: 10px;
      border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#company li > img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
#company li > a{
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    transition: all ease .5s;
}
#company li > a img{
    width: 40px;
}
#company li > a h3{
    color: #fff;
    font-size: 36px;
    margin-top: 25px;
    margin-bottom: 20px;
    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: 1;
    overflow: hidden;
    color: #fff;
    font-family: arial;
    opacity: 1;
    margin: 0;
    line-height: 1;
    margin-bottom: 40px;
    font-size: 18px;
}
#company li > a span{
    color: #fff;
    background: rgb(64 158 255 0);
    padding: 10px 12px;
    border-radius: 2px;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: all ease .5s;
  width: 140px;
    text-align: center;
  border-style: solid;
    border-width: 1px;
    border-color: rgba(255,255,255,0.55);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
#company li:hover > a{
    padding-bottom: 30px;
}
#company li:hover > a span{
    opacity: 1;
}
#company li.active1{
    width: 80%;
}