.partners-wrap{
    background: #FAF7FA;
}
.partners{
    width: 1200px;
    margin:auto;
    padding: 50px 0;
    box-sizing: border-box;

}
.partners .title{
    font-size:40px;
    font-weight:bold;
    text-align: center;
}
.colorblue{
    color:rgba(8,128,206,1);
}
.colorgreen{
    color:#66B562;
}
.colorpink{
    color:#E9328E;
}
.colororg{
    color:#F7B054;
}
.list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 20px;
}
.item{
    width: 590px;
    box-sizing: border-box;
    height: 140px;
    padding: 15px 20px;
    background:rgba(255,255,255,1);
    border-radius:5px;
    display: flex;
    cursor: pointer;
    margin-bottom: 20px;
}
.item:hover{
    box-shadow:0px 3px 16px 0px rgba(223,223,223,0.75);
}
.item .logo{
    width: 110px;
    height: 110px;
    margin-right: 29px;
}
.item .logo img{
    width: 100%;
    height: 100%;
}
.item .text{
    flex: 1;
    width: 0;
    word-break: break-word;
}
.item .text .name{
    font-size:16px;
    font-weight:bold;
}
.item .text .tip{
    font-size:14px;
    font-weight:400;
    color:rgba(146,146,146,1);
    line-height:21px;
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
























