.cooperation li {
    display: flex;
    padding: 30px;
    border: 1px solid #d2d2d2;
    margin-bottom: 30px;
    transition: 0.5s;
}

.cooperation li:hover{
    transform: scale(1.03);
    box-shadow: 0 10px 20px #ebebeb;
}

.cooperation li .img {
    width: 15%;
    text-align: center;
}

.cooperation li .img img {
    max-width: 100%;
    max-height: 100%;
}

.cooperation li .text {
    margin-left: 30px;
    margin-top: 10px;
    width: 85%;
}

.cooperation li .text .name {
    margin-bottom: 7px;
}

.cooperation li .text .name .chinese {
    font-size: 22px;
    font-weight: bold;
}

.cooperation li .text .name .english {
    font-size: 12px;
    margin-top: 5px;
}

.cooperation li .text .introduce {
    font-size: 12px;
    line-height: 22px;
}

.cooperation li:nth-child(even) .text{
    text-align: right;
}