#company{
    width: 100%;
    display: flex;
    justify-content: space-between; 
}


#company p{ 
    font-family: "思源黑体cn-normal";
}

#company h3{ 
    font-family: "思源黑体cn-normal";
}

#company li{
    width: 25%;
    overflow: hidden;
    background: #000;
    position: relative;
    min-height: 65vh;
    transition: all ease .5s;
  border: 5px solid #fff;
}


#company li::before {
 content: '';
 position: absolute;
 left: 0%;
 transform: translateX(0%);
 top: 0px; 
 opacity: 1;
 transition: all .5s ease;
  background-image: linear-gradient(90deg, rgba(8, 77, 178, 0.5) 0.0, rgba(235, 92, 32, 0) 100.0%);
   width: 85%;
  height:100%;
  z-index:1;
}

#company li > img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
  height: 100%;
}
#company li > a{
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    transition: all ease .5s;
    z-index:2;
}
#company li > a img{
    width: 92px;
}
#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;
   font-family: "思源黑体cn-normal";
}
#company li > a p{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #fff;
    font-family: arial;
    opacity: 1;
    margin: 0;
    line-height: 2;
    margin-bottom: 10px;
    font-size: 14px;
   text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
   font-family: "思源黑体cn-normal";
}
#company li > a span{
    color: #fff;
    background: rgb(64 158 255);
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: all ease .5s;
}
#company li:hover > a{
    padding-bottom: 30px;
}
#company li:hover > a span{
    opacity: 1;
}

#company li:hover > img{
    
    opacity: 1; 
}

#company li.active1{
    width: 100%;
}