.banner {
    width: 100%;
    min-width: 1200px;
    height: 476px;
    background: url('../img/banner5.jpg') center center / cover no-repeat;;
    overflow: hidden;
    text-align: center;
}
.banner > .title,
.banner > .title-en {
    font-size: 36px;
    color: #FFFFFF;
    margin-top: 12px;
}
.banner > .title {
    margin-top: 220px;
}
.company {
    width: 1200px;
    margin: 0 auto 80px;
}
.company .list {
    padding-top: 80px;
    padding-bottom: 48px;
    overflow: hidden;
}
.company .list::after {
    clear: both;
    content: '';
}
.company .list .item {
    float: left;
    width: 366px;
    height: 410px;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px 0px rgba(204, 204, 204, 0.4);
    border-radius: 6px;
    margin-top: 40px;
    margin-right: 51px;
    display: block;
    cursor: pointer;
    transition: all .3s;
}
.company .list .item:hover {
    transform: translateY(-10px);
}
.company .list .item:nth-child(3n+3) {
    margin-right: 0;
}
.company .list .item:nth-child(-n+3) {
    margin-top: 0;
}
.company .list .item .top {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.company .list .item .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.company .list .item .top img:hover {
    transform: scale(1.1);
}
.company .list .item .bottom {
    padding: 0 38px;
}
.company .list .item .bottom .title {
    font-size: 18px;
    font-weight: bold;
    color: #121212;
    margin-top: 36px;
}
.company .list .item .bottom .desc {
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    margin-top: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}