.zoology{
    padding: 110px 0 190px 0;
    background: url(../images/ccpage/zoologyBg.png) center no-repeat;
    background-size: cover;
}
.zoologyInfo{
    text-align: center;
}
.zoologyTitle{
    font-size: 30px;
    font-weight: bold;
}
.zoologyDesc{
    font-size: 18px;
    color: #666;
    margin-top: 30px;
}
.companyMain{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
    margin-top: 55px;
    padding-top: 20px;
}
.companyList{
    width: 20%;
    margin-top: 50px;
    transition: all 0.5s;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.companyCont{
    display: flex;
    justify-content: center;
    font-size: 16px;
    margin-top: 10px;
    color: #333;
}
.companyLogo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.companyName{
    text-align: justify;
}
.companyLogo img{
    max-width: 90%;
    max-height: 80%;
}
.companyIcon{
    margin-left: 0;
    width: 0;
    height: 21px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 2px;
    flex-shrink: 0;
}
.companyIcon img{
    width: 20px;
}
.companyList:hover .companyIcon{
    width: 20px;
    margin-left: 12px;
}
.companyList:hover{
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}